Class: Queries::BiologicalRelationship::Autocomplete

Inherits:
Query::Autocomplete show all
Defined in:
lib/queries/biological_relationship/autocomplete.rb

Instance Attribute Summary

Attributes inherited from Query::Autocomplete

#dynamic_limit, #project_id, #query_string

Attributes inherited from Query

#query_string, #terms

Instance Method Summary collapse

Methods inherited from Query::Autocomplete

#autocomplete, #autocomplete_cached, #autocomplete_cached_wildcard_anywhere, #autocomplete_common_name_exact, #autocomplete_common_name_like, #autocomplete_exact_id, #autocomplete_exactly_named, #autocomplete_named, #autocomplete_ordered_wildcard_pieces_in_cached, #combine_or_clauses, #common_name_name, #common_name_table, #common_name_wild_pieces, #exactly_named, #fragments, #initialize, #integers, #least_levenshtein, #match_wildcard_end_in_cached, #match_wildcard_in_cached, #named, #only_ids, #only_integers?, #parent, #parent_child_join, #parent_child_where, #pieces, #scope, #string_fragments, #wildcard_wrapped_integers, #wildcard_wrapped_years, #with_cached, #with_cached_like, #with_id, #with_project_id, #year_letter, #years

Methods inherited from Query

#alphabetic_strings, #alphanumeric_strings, base_name, #base_name, #base_query, #build_terms, #cached_facet, #end_wildcard, #levenshtein_distance, #match_ordered_wildcard_pieces_in_cached, #no_terms?, referenced_klass, #referenced_klass, #referenced_klass_except, #referenced_klass_intersection, #referenced_klass_union, #start_and_end_wildcard, #start_wildcard, #table, #wildcard_pieces

Constructor Details

This class inherits a constructor from Queries::Query::Autocomplete

Instance Method Details

#allScope

Returns:

  • (Scope)


27
28
29
30
# File 'lib/queries/biological_relationship/autocomplete.rb', line 27

def all
  # For references, this is equivalent: BiologicalRelationship.eager_load(:taxon_name).where(where_sql)
  ::BiologicalRelationship.where(where_sql).order(name: :asc).limit(50)
end

#or_clausesScope

Returns:

  • (Scope)


12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/queries/biological_relationship/autocomplete.rb', line 12

def or_clauses
  clauses = [
    named,
    with_inverted_name,
    with_id
  ].compact

  a = clauses.shift
  clauses.each do |b|
    a = a.or(b)
  end
  a
end

#where_sqlScope

Returns:

  • (Scope)


7
8
9
# File 'lib/queries/biological_relationship/autocomplete.rb', line 7

def where_sql
  with_project_id.and(or_clauses).to_sql
end

#with_inverted_nameObject



32
33
34
# File 'lib/queries/biological_relationship/autocomplete.rb', line 32

def with_inverted_name
  table[:inverted_name].matches_any(terms)
end