Sha256: 59a5f8d729a846402c149fbf6bc18ea8a405d6d94dab0dd2fe5b9750a791378e
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
require "active_support/core_ext/module/delegation" require "active_support/core_ext/object/blank" module Administrate class Search def initialize(scoped_resource, dashboard_class, term) @dashboard_class = dashboard_class @scoped_resource = scoped_resource @term = term end def run if @term.blank? @scoped_resource.all else @scoped_resource.where(query, *search_terms) end end private def query search_attributes.map do |attr| table_name = ActiveRecord::Base.connection. quote_table_name(@scoped_resource.table_name) attr_name = ActiveRecord::Base.connection.quote_column_name(attr) "LOWER(TEXT(#{table_name}.#{attr_name})) LIKE ?" end.join(" OR ") end def search_terms ["%#{term.mb_chars.downcase}%"] * search_attributes.count end def search_attributes attribute_types.keys.select do |attribute| attribute_types[attribute].searchable? end end def attribute_types @dashboard_class::ATTRIBUTE_TYPES end attr_reader :resolver, :term end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
semantic-administrate-0.1.1 | lib/administrate/search.rb |
administrate-0.9.0 | lib/administrate/search.rb |