Sha256: 1d247baa55d37c15efd3ab6ce12911086bb16c91b8a52827922068034eedc012

Contents?: true

Size: 1.51 KB

Versions: 18

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

module Spotlight
  ##
  # CRUD actions for feature pages
  class FeaturePagesController < PagesController
    load_and_authorize_resource through: :exhibit, instance_name: 'page'
    before_action :attach_breadcrumbs

    # We're oddly getting an unknown action
    # error w/o explicitly defining this here
    def clone
      super
    end

    protected

    def attach_breadcrumbs
      super

      if @page
        attach_page_breadcrumbs
      elsif action_name == 'index'
        attach_index_breadcrumbs
      end
    end

    def attach_page_breadcrumbs
      if action_name == 'edit'
        add_breadcrumb t(:'spotlight.curation.sidebar.feature_pages'), exhibit_feature_pages_path(@exhibit)
      end

      add_breadcrumb @page.parent_page.title, [spotlight, @page.exhibit, @page.parent_page] unless @page.top_level_page?
      add_breadcrumb @page.title, action_name == 'edit' ? [:edit, @page.exhibit, @page] : [spotlight, @page.exhibit, @page]
    end

    def attach_index_breadcrumbs
      add_breadcrumb t(:'spotlight.curation.sidebar.header'), exhibit_dashboard_path(@exhibit)
      add_breadcrumb t(:'spotlight.curation.sidebar.feature_pages'), exhibit_feature_pages_path(@exhibit)
    end

    def update_all_page_params
      params.require(:exhibit).permit(
        'feature_pages_attributes' => page_attributes,
        'home_page_attributes' => [:id, :title, :display_title]
      )
    end

    def allowed_page_params
      super.concat [:display_sidebar, :published]
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
blacklight-spotlight-3.0.0.alpha.2 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-3.0.0.alpha.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.13.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.12.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.12.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.11.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.10.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.9.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.8.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.7.2 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.7.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.7.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.6.1.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.6.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.6.0 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.5.2 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.5.1 app/controllers/spotlight/feature_pages_controller.rb
blacklight-spotlight-2.5.0 app/controllers/spotlight/feature_pages_controller.rb