9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/jsonb_accessor/attribute_query_methods.rb', line 9
def define(store_key_mapping_method_name, jsonb_attribute)
return if klass.superclass.respond_to? store_key_mapping_method_name
klass.define_singleton_method "#{jsonb_attribute}_where" do |attributes|
store_key_attributes = JsonbAccessor::Helpers.convert_keys_to_store_keys(attributes, all.model.public_send(store_key_mapping_method_name))
jsonb_where(jsonb_attribute, store_key_attributes)
end
klass.define_singleton_method "#{jsonb_attribute}_where_not" do |attributes|
store_key_attributes = JsonbAccessor::Helpers.convert_keys_to_store_keys(attributes, all.model.public_send(store_key_mapping_method_name))
jsonb_where_not(jsonb_attribute, store_key_attributes)
end
klass.define_singleton_method "#{jsonb_attribute}_order" do |*args|
ordering_options = args.
order_by_defaults = args.to_h { |attribute| [attribute, :asc] }
store_key_mapping = all.model.public_send(store_key_mapping_method_name)
order_by_defaults.merge(ordering_options).reduce(all) do |query, (name, direction)|
key = store_key_mapping[name.to_s]
order_query = jsonb_order(jsonb_attribute, key, direction)
query.merge(order_query)
end
end
end
|