Module: Elasticsearch::DSL::Search::BaseComponent::InstanceMethods

Defined in:
lib/elasticsearch/dsl/search/base_component.rb

Instance Method Summary collapse

Instance Method Details

#callself

Evaluates any block passed to the query

Returns:

  • (self)


121
122
123
124
# File 'lib/elasticsearch/dsl/search/base_component.rb', line 121

def call
  @block.arity < 1 ? self.instance_eval(&@block) : @block.call(self) if @block
  self
end

#empty?Boolean

Return true when the component definition is empty

Returns:

  • (Boolean)


128
129
130
# File 'lib/elasticsearch/dsl/search/base_component.rb', line 128

def empty?
  to_hash[name].respond_to?(:empty?) && to_hash[name].empty?
end

#nameString

Return the name for instance of the DSL class

Returns:

  • (String)


113
114
115
# File 'lib/elasticsearch/dsl/search/base_component.rb', line 113

def name
  self.class.name
end

#to_hash(options = {}) ⇒ Hash

Convert the query definition to a Hash

A default implementation, DSL classes can overload it.

Returns:

  • (Hash)


138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/elasticsearch/dsl/search/base_component.rb', line 138

def to_hash(options={})
  case
    # 1. Create hash from the block
    when @block
      @hash = (@args && ! @args.empty?) ? { name => { @args => {} } } : { name => {} }
      call
      @hash[self.name.to_sym].update @options unless @options.empty?
      @hash
    # 2. Hash created with option methods
    when @hash[self.name.to_sym] && ! @args.is_a?(Hash) && @hash[self.name.to_sym][@args]
      @hash[self.name.to_sym].update @options unless @options.empty?
      @hash
    # 3. Hash passsed as @args
    when @hash[self.name.to_sym] && @args.respond_to?(:to_hash) && ! @args.empty?
      { name => @args.to_hash }
    # 4. Hash already built
    else
      @hash
  end
end