Sha256: 9b77c7635397d6a334f2aadcf2657828558410791982003e8a6b848fd2a962c3
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
module Mobility module Backends module ActiveRecord =begin Defines query method overrides to handle translated attributes for ActiveRecord models. For details see backend-specific subclasses. =end class QueryMethods < Module # @param [Array<String>] attributes Translated attributes def initialize(attributes, _) @attributes = attributes attributes.each do |attribute| define_method :"find_by_#{attribute}" do |value| find_by(attribute.to_sym => value) end end end # @param [ActiveRecord::Relation] relation Relation being extended # @note Only want to define this once, even if multiple QueryMethods # modules are included, so define it here in extended method def extended(relation) unless relation.methods(false).include?(:mobility_where_chain) relation.define_singleton_method(:mobility_where_chain) do @mobility_where_chain ||= Class.new(::ActiveRecord::QueryMethods::WhereChain) end relation.define_singleton_method :where do |opts = :chain, *rest| opts == :chain ? mobility_where_chain.new(spawn) : super(opts, *rest) end end end def extract_attributes(opts) opts.is_a?(Hash) && (opts.keys.map(&:to_s) & @attributes).presence end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems