Class: Queries::Note::Filter
Constant Summary
collapse
- PARAMS =
[
*::Note.related_foreign_keys.map(&:to_sym),
:note_id,
:text,
:note_object_type,
:note_object_id,
note_id: [],
note_object_id: [],
note_object_type: [],
].freeze
Query::Filter::FILTER_QUERIES, Query::Filter::SUBQUERIES
Instance Attribute Summary collapse
#api, #asserted_distribution_query, #biological_association_query, #biological_associations_graph_query, #collecting_event_query, #collection_object_query, #content_query, #controlled_vocabulary_term_query, #data_attribute_query, #descriptor_query, #document_query, #dwc_occurrence_query, #extract_query, #field_occurrence_query, #image_query, #loan_query, #object_global_id, #observation_query, #order_by, #otu_query, #page, #paginate, #params, #per, #person_query, #project_id, #recent, #recent_target, #taxon_name_query, #venn, #venn_mode
Attributes inherited from Query
#query_string, #terms
Instance Method Summary
collapse
#all, #all_and_clauses, #all_merge_clauses, #annotator_and_clauses, #annotator_merge_clauses, annotator_params, api_except_params, api_excluded_params, #apply_venn, #attribute_exact_facet, base_filter, base_query_name, base_query_to_h, #deep_permit, included_annotator_facets, instantiated_base_filter, inverted_subqueries, #merge_clauses, #model_id_facet, #object_global_id_facet, #only_project?, params, #permitted_params, #process_url_into_params, #project_id_facet, query_name, #query_name, #set_nested_queries, #shared_and_clauses, #subquery_vector, #target_and_clauses, #venn_query
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(query_params) ⇒ Filter
Returns a new instance of Filter.
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/queries/note/filter.rb', line 34
def initialize(query_params)
super
@note_id = params[:note_id]
@text = params[:text]
@note_object_type = params[:note_object_type]
@note_object_id = params[:note_object_id]
set_polymorphic_params(params)
end
|
Instance Attribute Details
#note_id ⇒ Object
20
21
22
|
# File 'lib/queries/note/filter.rb', line 20
def note_id
@note_id
end
|
#note_object_id ⇒ Array
32
33
34
|
# File 'lib/queries/note/filter.rb', line 32
def note_object_id
@note_object_id
end
|
#note_object_type ⇒ Array
28
29
30
|
# File 'lib/queries/note/filter.rb', line 28
def note_object_type
@note_object_type
end
|
#text ⇒ Object
24
25
26
|
# File 'lib/queries/note/filter.rb', line 24
def text
@text
end
|
Instance Method Details
#and_clauses ⇒ Object
72
73
74
75
76
77
78
|
# File 'lib/queries/note/filter.rb', line 72
def and_clauses
[
text_facet,
note_object_id_facet,
note_object_type_facet,
]
end
|
#note_object_id_facet ⇒ Object
67
68
69
70
|
# File 'lib/queries/note/filter.rb', line 67
def note_object_id_facet
return nil if note_object_id.empty?
table[:note_object_id].in(note_object_id)
end
|
#note_object_type_facet ⇒ Object
62
63
64
65
|
# File 'lib/queries/note/filter.rb', line 62
def note_object_type_facet
return nil if note_object_type.empty?
table[:note_object_type].in(note_object_type)
end
|
#text_facet ⇒ Object
57
58
59
60
|
# File 'lib/queries/note/filter.rb', line 57
def text_facet
return nil if text.blank?
table[:text].matches('%' + text + '%')
end
|