Sha256: 8c63dbd30773837149525836da392cc1162c9d65685845c73a0264a88d5f44f5
Contents?: true
Size: 1.36 KB
Versions: 8
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module Decidim module Results # This class handles search and filtering of results. Needs a # `current_feature` param with a `Decidim::Feature` in order to # find the results. class ResultSearch < ResourceSearch # Public: Initializes the service. # feature - A Decidim::Feature to get the results from. # page - The page number to paginate the results. # per_page - The number of proposals to return per page. def initialize(options = {}) super(Result.all, options) end # Handle the search_text filter def search_search_text query .where(localized_search_text_in(:title), text: "%#{search_text}%") .or(query.where(localized_search_text_in(:description), text: "%#{search_text}%")) end private # Internal: builds the needed query to search for a text in the organization's # available locales. Note that it is intended to be used as follows: # # Example: # Resource.where(localized_search_text_for(:title, text: "my_query")) # # The Hash with the `:text` key is required or it won't work. def localized_search_text_in(field) options[:organization].available_locales.map do |l| "#{field} ->> '#{l}' ILIKE :text" end.join(" OR ") end end end end
Version data entries
8 entries across 8 versions & 2 rubygems