2022-11-21 16:32:17 +01:00
|
|
|
class Dossiers::BatchOperationComponent < ApplicationComponent
|
|
|
|
attr_reader :statut, :procedure
|
|
|
|
|
|
|
|
def initialize(statut:, procedure:)
|
|
|
|
@statut = statut
|
|
|
|
@procedure = procedure
|
|
|
|
end
|
|
|
|
|
|
|
|
def render?
|
2022-12-15 14:13:13 +01:00
|
|
|
['traites', 'suivis'].include?(@statut)
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def available_operations
|
|
|
|
case @statut
|
|
|
|
when 'traites' then
|
2022-12-15 17:35:50 +01:00
|
|
|
{
|
|
|
|
options:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
label: t(".operations.archiver"),
|
|
|
|
operation: BatchOperation.operations.fetch(:archiver)
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-12-12 10:02:33 +01:00
|
|
|
when 'suivis' then
|
2022-12-15 17:35:50 +01:00
|
|
|
{
|
|
|
|
options:
|
|
|
|
[
|
|
|
|
|
|
|
|
{
|
|
|
|
label: t(".operations.passer_en_instruction"),
|
|
|
|
operation: BatchOperation.operations.fetch(:passer_en_instruction)
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
label: t(".operations.accepter"),
|
|
|
|
operation: BatchOperation.operations.fetch(:accepter)
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-11-21 16:32:17 +01:00
|
|
|
else
|
2022-12-15 17:35:50 +01:00
|
|
|
{
|
|
|
|
options: []
|
|
|
|
}
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|
|
|
|
end
|
2022-12-12 10:28:23 +01:00
|
|
|
|
|
|
|
def icons
|
|
|
|
{
|
|
|
|
archiver: 'fr-icon-folder-2-line',
|
2022-12-15 17:35:50 +01:00
|
|
|
passer_en_instruction: 'fr-icon-edit-line',
|
|
|
|
accepter: 'fr-icon-success-line'
|
2022-12-12 10:28:23 +01:00
|
|
|
}
|
|
|
|
end
|
2022-11-21 16:32:17 +01:00
|
|
|
end
|