mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
25 lines
747 B
Ruby
25 lines
747 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SearchableByNameModel
|
|
extend ActiveSupport::Concern
|
|
# rubocop:disable Metrics/BlockLength
|
|
included do
|
|
def self.search_by_name(user, teams = [], query = nil, options = {})
|
|
return if user.blank? || teams.blank?
|
|
|
|
sql_q = viewable_by_user(user, teams)
|
|
|
|
if options[:intersect]
|
|
query_array = query.gsub(/[[:space:]]+/, ' ').split(' ')
|
|
query_array.each do |string|
|
|
sql_q = sql_q.where("trim_html_tags(#{table_name}.name) ILIKE ?", "%#{string}%")
|
|
end
|
|
else
|
|
sql_q = sql_q.where_attributes_like("#{table_name}.name", query, options)
|
|
end
|
|
|
|
sql_q.limit(Constants::SEARCH_LIMIT)
|
|
end
|
|
end
|
|
# rubocop:enable Metrics/BlockLength
|
|
end
|