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

39 lines
806 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 submit_draft_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 submit_en_construction_button_options
{
class: 'fr-btn fr-btn--sm',
method: :post,
data: { 'disable-with': t('.submitting'), controller: 'autosave-submit' },
form: { id: "form-submit-en-construction" }
}
end
def render?
!@dossier.for_procedure_preview?
end
end