2018-07-30 11:45:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module OptionallySearch
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2018-08-27 08:35:31 -04:00
|
|
|
class_methods do
|
2018-07-30 11:45:49 -04:00
|
|
|
def search(*)
|
|
|
|
raise(
|
|
|
|
NotImplementedError,
|
|
|
|
'Your model must implement the "search" class method'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Optionally limits a result set to those matching the given search query.
|
|
|
|
def optionally_search(query = nil)
|
|
|
|
query.present? ? search(query) : all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|