Sha256: 640f9f2a3b94f67f6ecfecbeea1a8158666ec68931e10f9bb8872d7127f8d72c

Contents?: true

Size: 1.75 KB

Versions: 12

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

module Alchemy
  class Api::ElementsController < Api::BaseController
    # Returns all elements as json object
    #
    # You can either load all or only these for :page_id param
    #
    # If you want to only load a specific type of element pass ?named=an_element_name
    #
    def index
      # Fix for cancancan not able to merge multiple AR scopes for logged in users
      if cannot? :manage, Alchemy::Element
        @elements = Alchemy::Element.accessible_by(current_ability, :index)
      else
        @elements = Alchemy::Element.all
      end

      @elements = @elements.not_nested.joins(:page_version).merge(PageVersion.published)

      if params[:page_id].present?
        @elements = @elements.includes(:page).where(alchemy_pages: { id: params[:page_id] })
      else
        @elements = @elements.includes(*element_includes)
      end

      if params[:named].present?
        @elements = @elements.named(params[:named])
      end
      @elements = @elements.order(:position)

      render json: @elements, adapter: :json, root: "elements"
    end

    # Returns a json object for element
    #
    def show
      @element = Element.where(id: params[:id]).includes(*element_includes).first
      authorize! :show, @element
      respond_with @element
    end

    private

    def element_includes
      [
        {
          nested_elements: [
            {
              contents: {
                essence: :ingredient_association,
              },
              ingredients: :related_object,
            },
            :tags,
          ],
        },
        {
          contents: {
            essence: :ingredient_association,
          },
          ingredients: :related_object,
        },
        :tags,
      ]
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy_cms-6.0.0.pre.rc7 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc6 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc5 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc4 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc3 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc2 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.rc1 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.b6 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.b5 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.pre.b4 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.b3 app/controllers/alchemy/api/elements_controller.rb
alchemy_cms-6.0.0.b2 app/controllers/alchemy/api/elements_controller.rb