Class: Queries::Image::Autocomplete
Instance Attribute Summary
#dynamic_limit, #project_id, #query_string
Attributes inherited from Query
#query_string, #terms
Instance Method Summary
collapse
#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, #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
#initialize(string, project_id: nil) ⇒ Autocomplete
Returns a new instance of Autocomplete.
7
8
9
|
# File 'lib/queries/image/autocomplete.rb', line 7
def initialize(string, project_id: nil)
super
end
|
Instance Method Details
#and_clauses ⇒ Arel:Nodes?
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/queries/image/autocomplete.rb', line 31
def and_clauses
clauses = [
].compact
return nil if clauses.nil?
a = clauses.shift
clauses.each do |b|
a = a.and(b)
end
a
end
|
#autocomplete ⇒ Array
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# File 'lib/queries/image/autocomplete.rb', line 66
def autocomplete
queries = [
autocomplete_exact_id,
autocomplete_identifier_identifier_exact,
autocomplete_identifier_cached_like,
autocomplete_depicting_otu_by_otu_name,
autocomplete_depicting_otu_by_taxon_name
]
queries.compact!
updated_queries = []
queries.each_with_index do |q,i|
a = q
a = q.where(project_id: project_id) if project_id.present?
a = a.where(and_clauses.to_sql) if and_clauses
updated_queries[i] = a
end
result = []
updated_queries.each do |q|
result += q.to_a
result.uniq!
break if result.count > 19
end
result[0..40]
end
|
#autocomplete_depicting_otu_by_otu_name ⇒ Object
94
95
96
97
98
99
100
101
102
103
|
# File 'lib/queries/image/autocomplete.rb', line 94
def autocomplete_depicting_otu_by_otu_name
o = ::Otu.arel_table[:name].matches_any(terms)
::Image.
includes(:otus).
joins(:otus).
where(o.to_sql).
references(:depictions, :otus).
order('otus.name ASC').limit(20)
end
|
#autocomplete_depicting_otu_by_taxon_name ⇒ Object
105
106
107
108
109
110
111
112
113
114
|
# File 'lib/queries/image/autocomplete.rb', line 105
def autocomplete_depicting_otu_by_taxon_name
o = ::TaxonName.arel_table[:cached].matches_any(terms)
::Image.
includes(:taxon_names).
joins(:taxon_names).
where(o.to_sql).
references(:depictions, :taxon_names).
order('taxon_names.cached ASC').limit(20)
end
|
#or_and ⇒ Arel:Nodes
49
50
51
52
53
54
55
56
57
58
|
# File 'lib/queries/image/autocomplete.rb', line 49
def or_and
a = or_clauses
b = and_clauses
if a && b
a.and(b)
else
a
end
end
|
#or_clauses ⇒ Arel:Nodes
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/queries/image/autocomplete.rb', line 12
def or_clauses
clauses = []
clauses += [
] unless exact
clauses.compact!
a = clauses.shift
clauses.each do |b|
a = a.or(b)
end
a
end
|
#where_sql ⇒ String
61
62
63
|
# File 'lib/queries/image/autocomplete.rb', line 61
def where_sql
with_project_id.and(or_and).to_sql
end
|