has_scope
Map incoming controller parameters to named scopes in your resources (by heartcombo)
ransack
Object-based searching. (by activerecord-hackery)
has_scope | ransack | |
---|---|---|
3 | 7 | |
1,662 | 5,690 | |
0.2% | 0.3% | |
5.1 | 5.7 | |
8 months ago | 26 days ago | |
Ruby | Ruby | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
has_scope
Posts with mentions or reviews of has_scope.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-03-17.
-
For GET requests - When do you create a new endpoint and when would you use a query param for the backend to decide what data to give back?
I use has_scope and it's typically handled in the index with querystring filters e.g. ?user=1 (or ?users[]=1 if multiple users). I do also add convenience routes for common filters, though, e.g. /users/1/likes.
-
Best way to filter an index page.
The has_scope gem (https://github.com/heartcombo/has_scope) is a nice middleground between ransack and multiple if-statements.
-
Dealing with basic requests / params
I recommend the `has_scope` gem approach https://github.com/heartcombo/has_scope
ransack
Posts with mentions or reviews of ransack.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-03-24.
-
API - convention for filter that can have an occurrence of the value passed?
You might be looking for something like Ransack - https://github.com/activerecord-hackery/ransack
-
Airtable-like table filtering
I use ransack for this and find it very powerful and flexible without the need to rely on complex JS.
-
An Unofficial Active Admin Guide
For especially complicated cases, you can consider learning how to create custom predicates and Ransackers - extensions that convert parameters directly into Arel (internal library ActiveRecord, used to build SQL queries).
-
Building an Advanced Search Form in Rails 6
You can use gems like Ransack to build search forms much faster, but for the purpose of learning and performance we will be building this feature ourselves. Throughout the process, you will also learn how to customize Rails default pluralization. By the end, we will be able to search for Pokemon by name, type, and region.
What are some alternatives?
When comparing has_scope and ransack you can also consider the following projects:
scoped_search - Easily search you ActiveRecord models with a simple query language that converts to SQL.
pg_search - pg_search builds ActiveRecord named scopes that take advantage of PostgreSQL’s full text search
Searchkick - Intelligent search made easy
Elasticsearch Rails - Elasticsearch integrations for ActiveModel/Record and Ruby on Rails
Rroonga - The Ruby bindings of Groonga.
Sunspot - Solr-powered search for Ruby objects
elasticsearch-ruby - Ruby integrations for Elasticsearch
Searchlogic - Searchlogic provides object based searching, common named scopes, and other useful tools.
SearchCop - Search engine like fulltext query support for ActiveRecord