demarches-normaliennes/app/components/procedure/sva_svr_form_component.rb

44 lines
1,009 B
Ruby
Raw Normal View History

2023-05-25 19:09:59 +02:00
# frozen_string_literal: true
class Procedure::SVASVRFormComponent < ApplicationComponent
attr_reader :procedure, :configuration
def initialize(procedure:, configuration:)
@procedure = procedure
@configuration = configuration
end
def form_disabled?
return false if procedure.brouillon?
procedure.sva_svr_enabled?
end
2023-05-25 19:09:59 +02:00
def decision_buttons
scope = ".decision_buttons"
[
{ label: t("disabled", scope:), value: "disabled", disabled: form_disabled? },
2023-05-25 19:09:59 +02:00
{ label: t("sva", scope:), value: "sva", hint: t("sva_hint", scope:) },
{ label: t("svr", scope:), value: "svr", hint: t("svr_hint", scope:) }
2023-05-25 19:09:59 +02:00
]
end
def resume_buttons
scope = ".resume_buttons"
[
{
value: "continue",
label: t("continue_label", scope: scope),
hint: t("continue_hint", scope: scope)
},
{
value: "reset",
label: t("reset_label", scope: scope),
hint: t("reset_hint", scope: scope)
}
]
end
end