88 lines
2 KiB
Ruby
88 lines
2 KiB
Ruby
# frozen_string_literal: true
|
||
|
||
class Instructeurs::SVASVRDecisionBadgeComponent < ApplicationComponent
|
||
attr_reader :object
|
||
attr_reader :procedure
|
||
attr_reader :with_label
|
||
|
||
def initialize(projection_or_dossier:, procedure:, with_label: false)
|
||
@object = projection_or_dossier
|
||
@procedure = procedure
|
||
@decision = procedure.sva_svr_configuration.decision.to_sym
|
||
@with_label = with_label
|
||
end
|
||
|
||
def render?
|
||
return false unless procedure.sva_svr_enabled?
|
||
|
||
[:en_construction, :en_instruction].include? object.state.to_sym
|
||
end
|
||
|
||
def without_date?
|
||
object.sva_svr_decision_on.nil?
|
||
end
|
||
|
||
def classes
|
||
class_names(
|
||
'fr-badge fr-badge--sm': true,
|
||
'fr-badge--warning': soon?,
|
||
'fr-badge--info': !without_date? && !soon?
|
||
)
|
||
end
|
||
|
||
def soon?
|
||
return false if object.sva_svr_decision_on.nil?
|
||
|
||
object.sva_svr_decision_on < 7.days.from_now.to_date
|
||
end
|
||
|
||
def pending_correction?
|
||
object.pending_correction?
|
||
end
|
||
|
||
def days_count
|
||
(object.sva_svr_decision_on - Date.current).to_i
|
||
end
|
||
|
||
def sva?
|
||
@decision == :sva
|
||
end
|
||
|
||
def svr?
|
||
@decision == :svr
|
||
end
|
||
|
||
def label_for_badge
|
||
"#{human_decision} : "
|
||
end
|
||
|
||
def title
|
||
if previously_termine?
|
||
t('.previously_termine_title')
|
||
elsif depose_before_configuration?
|
||
t('.depose_before_configuration_title', decision: human_decision)
|
||
elsif without_date?
|
||
t('.manual_decision_title', decision: human_decision)
|
||
elsif pending_correction?
|
||
t(".dossier_terminated_x_days_after_correction", count: days_count)
|
||
else
|
||
t(".dossier_terminated_on", date: helpers.l(object.sva_svr_decision_on))
|
||
end
|
||
end
|
||
|
||
def human_decision
|
||
procedure.sva_svr_configuration.human_decision
|
||
end
|
||
|
||
def previously_termine?
|
||
return if !object.respond_to?(:previously_termine?)
|
||
|
||
object.previously_termine?
|
||
end
|
||
|
||
def depose_before_configuration?
|
||
return if !object.respond_to?(:sva_svr_decision_triggered_at)
|
||
|
||
object.sva_svr_decision_on.nil? && object.sva_svr_decision_triggered_at.nil?
|
||
end
|
||
end
|