Class: Queries::TypeMaterialAutocompleteQuery
- Inherits:
-
Query
- Object
- Query
- Queries::TypeMaterialAutocompleteQuery
show all
- Defined in:
- lib/queries/type_material_autocomplete_query.rb
Instance Attribute Summary
Attributes inherited from Query
#dynamic_limit, #options, #project_id, #query_string, #terms
Instance Method Summary
collapse
Methods inherited from Query
#alphabetic_strings, #attribute_exact_facet, #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, #build_terms, #cached, #combine_or_clauses, #common_name_name, #common_name_table, #common_name_wild_pieces, #end_wildcard, #exactly_named, #fragments, #initialize, #integers, #levenshtein_distance, #match_ordered_wildcard_pieces_in_cached, #match_wildcard_end_in_cached, #match_wildcard_in_cached, #named, #no_terms?, #only_ids, #only_integers?, #parent, #parent_child_join, #parent_child_where, #pieces, #result, #scope, #start_and_end_wildcard, #start_wildcard, #wildcard_pieces, #wildcard_wrapped_integers, #wildcard_wrapped_years, #with_cached, #with_cached_like, #with_id, #with_project_id, #year_letter, #years
Constructor Details
This class inherits a constructor from Queries::Query
Instance Method Details
#all ⇒ Scope
11
12
13
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 11
def all
::TypeMaterial.includes(:protonym, collection_object: [:identifiers] ).where(where_sql).references(:taxon_names).limit(dynamic_limit).all
end
|
#identifier_table ⇒ Arel::Table
26
27
28
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 26
def identifier_table
::Identifier.arel_table
end
|
#table ⇒ Arel::Table
16
17
18
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 16
def table
::TypeMaterial.arel_table
end
|
#taxon_name_table ⇒ Arel::Table
21
22
23
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 21
def taxon_name_table
::TaxonName.arel_table
end
|
#where_sql ⇒ String
6
7
8
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 6
def where_sql
with_project_id.and(with_cached_taxon_name.or(with_cached_identifier)).to_sql
end
|
#with_cached_identifier ⇒ Arel::Nodes::Matches
37
38
39
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 37
def with_cached_identifier
identifier_table[:cached].matches_any(terms)
end
|
#with_cached_taxon_name ⇒ Arel::Nodes::Matches
source, material, prototonym
32
33
34
|
# File 'lib/queries/type_material_autocomplete_query.rb', line 32
def with_cached_taxon_name
taxon_name_table[:cached].matches_any(terms)
end
|