Sha256: 987a3d3290385b274f6b66591d91b271d7116e3f9760dcc045451f52de13a843

Contents?: true

Size: 855 Bytes

Versions: 6

Compression:

Stored size: 855 Bytes

Contents

module Hyrax
  class CollectionsController < ApplicationController
    include CollectionsControllerBehavior
    include BreadcrumbsForCollections
    layout :decide_layout
    load_and_authorize_resource except: [:index, :show, :create], instance_name: :collection

    self.theme = 'hyrax/1_column'

    # Renders a JSON response with a list of files in this collection
    # This is used by the edit form to populate the thumbnail_id dropdown
    def files
      result = form.select_files.map do |label, id|
        { id: id, text: label }
      end
      render json: result
    end

    private

      def form
        @form ||= form_class.new(@collection, current_ability, repository)
      end

      def decide_layout
        case action_name
        when 'show'
          theme
        else
          'dashboard'
        end
      end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hyrax-2.0.3 app/controllers/hyrax/collections_controller.rb
hyrax-2.0.2 app/controllers/hyrax/collections_controller.rb
hyrax-2.0.1 app/controllers/hyrax/collections_controller.rb
hyrax-2.0.0 app/controllers/hyrax/collections_controller.rb
hyrax-2.0.0.rc3 app/controllers/hyrax/collections_controller.rb
hyrax-2.0.0.rc2 app/controllers/hyrax/collections_controller.rb