demarches-normaliennes/app/components/dossiers/edit_footer_component.rb

30 lines
544 B
Ruby
Raw Normal View History

class Dossiers::EditFooterComponent < ApplicationComponent
2023-03-01 18:30:10 +01:00
def initialize(dossier:, annotation:)
@dossier = dossier
2023-03-01 18:30:10 +01:00
@annotation = annotation
end
private
def owner?
controller.current_user.owns?(@dossier)
end
2023-03-01 18:30:10 +01:00
def annotation?
@annotation.present?
2023-03-01 18:30:10 +01:00
end
def button_options
{
class: 'fr-btn fr-btn--sm',
disabled: !owner?,
method: :post,
2022-10-17 11:04:23 +02:00
data: { 'disable-with': t('.submitting'), controller: 'autosave-submit' }
}
end
def render?
!@dossier.for_procedure_preview?
end
end