Sha256: e0475c6be397edc1a5e5303bda52129f98142184c9e1b6b46f77b38d9bd0a219

Contents?: true

Size: 1.52 KB

Versions: 36

Compression:

Stored size: 1.52 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)
      # Admin Sets do not have a visibility property.
      return if document.respond_to?(:admin_set?) && document.admin_set?

      # 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

36 entries across 36 versions & 1 rubygems

Version Path
hyrax-2.9.6 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.5 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.4 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.3 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.2 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.1 app/helpers/hyrax/ability_helper.rb
hyrax-2.9.0 app/helpers/hyrax/ability_helper.rb
hyrax-2.8.0 app/helpers/hyrax/ability_helper.rb
hyrax-2.7.2 app/helpers/hyrax/ability_helper.rb
hyrax-2.7.1 app/helpers/hyrax/ability_helper.rb
hyrax-2.7.0 app/helpers/hyrax/ability_helper.rb
hyrax-2.6.0 app/helpers/hyrax/ability_helper.rb
hyrax-3.0.0.pre.rc1 app/helpers/hyrax/ability_helper.rb
hyrax-3.0.0.pre.beta3 app/helpers/hyrax/ability_helper.rb
hyrax-2.5.1 app/helpers/hyrax/ability_helper.rb
hyrax-2.5.0 app/helpers/hyrax/ability_helper.rb
hyrax-3.0.0.pre.beta2 app/helpers/hyrax/ability_helper.rb
hyrax-2.4.1 app/helpers/hyrax/ability_helper.rb
hyrax-3.0.0.pre.beta1 app/helpers/hyrax/ability_helper.rb
hyrax-2.4.0 app/helpers/hyrax/ability_helper.rb