Class: Document::Autocomplete
Instance Attribute Summary
#dynamic_limit, #options, #project_id, #query_string, #terms
Instance Method Summary
collapse
#alphabetic_strings, #alphanumeric_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, #string_fragments, #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
30
31
32
|
# File 'lib/queries/document/autocomplete.rb', line 30
def all
::Document.where(where_sql).limit(200).order(:id)
end
|
#file_name_like ⇒ Arel::Nodes::Matches
25
26
27
|
# File 'lib/queries/document/autocomplete.rb', line 25
def file_name_like
table[:document_file_file_name].matches(end_wildcard)
end
|
#or_clauses ⇒ Arel::Nodes::Grouping
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/queries/document/autocomplete.rb', line 11
def or_clauses
clauses = [
file_name_like,
with_id
].compact
a = clauses.shift
clauses.each do |b|
a = a.or(b)
end
a
end
|
#table ⇒ Arel::Table
35
36
37
|
# File 'lib/queries/document/autocomplete.rb', line 35
def table
::Document.arel_table
end
|
#where_sql ⇒ String
6
7
8
|
# File 'lib/queries/document/autocomplete.rb', line 6
def where_sql
or_clauses.to_sql
end
|