Sha256: d1d991f05aad05e13bd37e46ed8c496d4b7b0640638345bef3840174d9367b3b

Contents?: true

Size: 1.47 KB

Versions: 5

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module Hyrax
  module Forms
    ##
    # Represents an embargo for edit through a work. That is, this form can
    # be used to wrap a Work in order to capture state changes related only to
    # its embargo, ignoring the work's other fields.
    #
    # @note this supports the edit functionality of
    #   +EmbargoesControllerBehavior+.
    class WorkEmbargoForm < Hyrax::ChangeSet
      property :embargo, form: Hyrax::Forms::Embargo, populator: :embargo_populator, prepopulator: :embargo_populator
      property :embargo_history, virtual: true, prepopulator: proc { |_opts| self.embargo_history = model.embargo&.embargo_history }
      property :embargo_release_date, virtual: true, prepopulator: proc { |_opts| self.embargo_release_date = model.embargo&.embargo_release_date }
      property :visibility_after_embargo, virtual: true, prepopulator: proc { |_opts| self.visibility_after_embargo = model.embargo&.visibility_after_embargo }
      property :visibility_during_embargo, virtual: true, prepopulator: proc { |_opts| self.visibility_during_embargo = model.embargo&.visibility_during_embargo }

      def embargo_populator(**)
        self.embargo = Hyrax::EmbargoManager.embargo_for(resource: model)
      end

      ##
      # @return [String]
      def human_readable_type
        model.to_model.human_readable_type
      end

      ##
      # @return [ActiveModel::Name]
      def model_name
        model.to_model.model_name
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/forms/hyrax/forms/work_embargo_form.rb
hyrax-5.0.0 app/forms/hyrax/forms/work_embargo_form.rb
hyrax-5.0.0.rc3 app/forms/hyrax/forms/work_embargo_form.rb
hyrax-5.0.0.rc2 app/forms/hyrax/forms/work_embargo_form.rb
hyrax-5.0.0.rc1 app/forms/hyrax/forms/work_embargo_form.rb