Sha256: 435d4f061917b65def446fc2bef194fa17166e3b57294cedf1056ab5866af677

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

module Snaptable
  module Constructor
    module Collection

      def collection
        @collection.includes(belongs_to_associations)
      end

      def records
        @records ||= filter(collection).paginate(page: params[paginate_key], per_page: 30).order(sort_column + " " + sort_direction)
      end

      def filter(collection)
        if options[:search] == true && !params[:query].blank?
          collection.joins(search_associations).where(query, query: "%#{params[:query].downcase}%", id: params[:query].to_i)
        else
          collection
        end
      end

      private

      def query
        query_fields.map do |key, values|
          values.map do |value|
            "LOWER(#{key}.#{value}) LIKE :query OR"
          end.join(" ")
        end.join(" ") + " #{column_name('id')} = :id"
      end

      def query_fields
        if self.class.const_defined?(:Search)
          self.class::Search.fields
        else
          { model.table_name => model.columns.select{ |c| c.type == :string }.map{ |c| c.name } }
        end
      end

      def search_associations
        self.class::Search.associations if self.class.const_defined?(:Search)
      end

      def belongs_to_associations
        model.reflect_on_all_associations(:belongs_to).reject {|a| a.options[:polymorphic]}.map {|a| a.name}
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
snaptable-4.0.2 lib/snaptable/constructor/collection.rb
snaptable-4.0.1 lib/snaptable/constructor/collection.rb