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

94 lines
2.4 KiB
Ruby
Raw Normal View History

class Dossiers::BatchOperationComponent < ApplicationComponent
attr_reader :statut, :procedure
def initialize(statut:, procedure:)
@statut = statut
@procedure = procedure
end
def render?
2023-01-04 11:51:22 +01:00
['a-suivre', 'traites', 'suivis'].include?(@statut)
end
def operations_for_dossier(dossier)
case dossier.state
when Dossier.states.fetch(:en_construction)
[BatchOperation.operations.fetch(:passer_en_instruction)]
when Dossier.states.fetch(:en_instruction)
[BatchOperation.operations.fetch(:accepter), BatchOperation.operations.fetch(:repasser_en_construction)]
when Dossier.states.fetch(:accepte), Dossier.states.fetch(:refuse), Dossier.states.fetch(:sans_suite)
[BatchOperation.operations.fetch(:archiver)]
else
[]
end.append(BatchOperation.operations.fetch(:follow), BatchOperation.operations.fetch(:unfollow))
end
private
def available_operations
case @statut
2023-01-04 11:51:22 +01:00
when 'a-suivre' then
{
options:
[
{
label: t(".operations.follow"),
operation: BatchOperation.operations.fetch(:follow)
}
]
}
when 'traites' then
{
options:
[
{
label: t(".operations.archiver"),
operation: BatchOperation.operations.fetch(:archiver)
}
]
}
when 'suivis' then
{
options:
[
{
label: t(".operations.passer_en_instruction"),
operation: BatchOperation.operations.fetch(:passer_en_instruction)
},
{
label: t(".operations.accepter"),
operation: BatchOperation.operations.fetch(:accepter)
},
2023-01-13 15:09:24 +01:00
{
label: t(".operations.unfollow"),
operation: BatchOperation.operations.fetch(:unfollow)
},
{
label: t(".operations.repasser_en_construction"),
operation: BatchOperation.operations.fetch(:repasser_en_construction)
}
]
}
else
{
options: []
}
end
end
2022-12-12 10:28:23 +01:00
def icons
{
2023-01-04 11:51:22 +01:00
accepter: 'fr-icon-success-line',
2022-12-12 10:28:23 +01:00
archiver: 'fr-icon-folder-2-line',
2023-01-04 11:51:22 +01:00
follow: 'fr-icon-star-line',
passer_en_instruction: 'fr-icon-edit-line',
2023-01-13 15:09:24 +01:00
repasser_en_construction: 'fr-icon-draft-line',
unfollow: 'fr-icon-star-fill'
2022-12-12 10:28:23 +01:00
}
end
end