No commit activity in last 3 years
No release in over 3 years
FilterableModel provides an organized and seamless way to filter your ActiveRecord objects using model attributes or custom attributes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 2.0
~> 10.0
~> 3.0

Runtime

 Project Readme

FilterableModel

FilterableModel provides an organized and seamless way to filter your ActiveRecord objects using real and custom attributes.

Installation

Add this line to your application's Gemfile:

gem 'filterable_model', '~> 0.1.0'

And then execute:

$ bundle

Or install it yourself as:

$ gem install filterable_model

Usage

Include FilterableModel inside ApplicationRecord or directly inside your ActiveRecord model:

class User < ApplicationRecord
  include FilterableModel
end

Filtering by real attributes

To filter using the exact values of your ActiveRecord model attributes, override the filterable_attributes class method to return an array of whitelisted attributes:

class User < ApplicationRecord
  include FilterableModel

  concerning :Filtering do
    class_methods do

      def filterable_attributes
        %w[id gender is_subscribed]
      end

    end
  end

end

Filtering by custom attributes

Filtering using custom attributes works by calling the add_filter method and passing a block that accepts the filter-by value, and returns an ActiveRecord::Relation:

class User < ApplicationRecord
  include FilterableModel

  concerning :Filtering do
    included do

      add_filter :name do |name| # search by first name or username
        where("LOWER(users.first_name) LIKE :query OR LOWER(users.username) LIKE :query", query: "%#{name.downcase}%")
      end


      add_filter :just_active do |value| # filter by users with active sessions
        if value.to_s == 'true'
          includes(:session).where(session: { active: true })
        else
          current_scope # do not change the current relation
        end
      end

    end
  end
end

Filter your relation by calling filter on your model and passing the filtering hash:

@users = User.all

filtering_hash = {
  gender: 'male',
  is_subscribed: 'false',
  name: 'John',
  just_active: 'true'
}

@users = @users.filter(filtering_hash)

Passing an unknown filter will raise a FilterNotSupported error.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/umar221b/filterable_model.

License

The gem is available as open source under the terms of the MIT License.