Sha256: 763826b0586b828f42a6e3dba291350883efe9f10753bd13947c7e7b54e86629

Contents?: true

Size: 1.4 KB

Versions: 12

Compression:

Stored size: 1.4 KB

Contents

module Hyrax
  module AbilityHelper
    def visibility_options(variant)
      options = [
        Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC,
        Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED,
        Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PRIVATE
      ]
      case variant
      when :restrict
        options.delete_at(0)
        options.reverse!
      when :loosen
        options.delete_at(2)
      end
      options.map { |value| [visibility_text(value), value] }
    end

    def visibility_badge(value)
      PermissionBadge.new(value).render
    end

    def render_visibility_link(document)
      # Anchor must match with a tab in
      # https://github.com/samvera/hyrax/blob/master/app/views/hyrax/base/_guts4form.html.erb#L2
      path = if document.collection?
               hyrax.edit_dashboard_collection_path(document, anchor: 'share')
             else
               edit_polymorphic_path([main_app, document], anchor: 'share')
             end
      link_to(
        visibility_badge(document.visibility),
        path,
        id: "permission_#{document.id}",
        class: 'visibility-link'
      )
    end

    private

      def visibility_text(value)
        return institution_name if value == Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED
        t("hyrax.visibility.#{value}.text")
      end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
hyrax-2.0.3 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.2 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.1 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.rc3 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.rc2 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.rc1 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.beta5 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.beta4 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.beta3 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.beta2 app/helpers/hyrax/ability_helper.rb
hyrax-2.0.0.beta1 app/helpers/hyrax/ability_helper.rb