Sha256: b669072c6fa06451340bba9a5428a6be676044ab1cdcb7dd7fc66c8d33ee6379

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

module Decidim
  # Exposes the scopes text search so users can choose a scope writing its name.
  class ScopesController < Decidim::ApplicationController
    def search
      authorize! :search, Scope
      root = Scope.where(id: params[:root], organization: current_organization).first
      scopes = if params[:term].present?
                 FreetextScopes.for(current_organization, I18n.locale, params[:term], root)
               elsif root
                 root.children
               else
                 current_organization.top_scopes
               end
      root_option = if params[:include_root] == "true" && !params[:term].present?
                      if root
                        [{ id: root.id.to_s, text: root.name[I18n.locale.to_s] }]
                      else
                        [{ id: "global", text: I18n.t("decidim.scopes.global") }]
                      end
                    else
                      []
                    end

      render json: { results: root_option + scopes.map { |scope| { id: scope.id.to_s, text: scope.name[I18n.locale.to_s] } } }
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
decidim-core-0.5.1 app/controllers/decidim/scopes_controller.rb
decidim-0.5.1 decidim-core/app/controllers/decidim/scopes_controller.rb
decidim-core-0.5.0 app/controllers/decidim/scopes_controller.rb
decidim-0.5.0 decidim-core/app/controllers/decidim/scopes_controller.rb