2021-06-23 18:56:04 +02:00
|
|
|
%ul.revision-changes
|
2021-06-18 11:15:10 +02:00
|
|
|
- changes.each do |change|
|
2021-06-23 18:56:04 +02:00
|
|
|
- postfix = change[:private] ? '_private' : ''
|
2021-06-18 11:15:10 +02:00
|
|
|
- case change[:op]
|
|
|
|
- when :add
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("add#{postfix}", label: change[:label], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :remove
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("remove#{postfix}", label: change[:label], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :update
|
|
|
|
- case change[:attribute]
|
|
|
|
- when :libelle
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("update_libelle#{postfix}", label: change[:label], to: change[:to], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :type_champ
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("update_type_champ#{postfix}", label: change[:label], to: t("activerecord.attributes.type_de_champ.type_champs.#{change[:to]}"), scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :description
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("update_description#{postfix}", label: change[:label], to: change[:to], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :mandatory
|
|
|
|
- if change[:from] == false
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t(:enabled, label: change[:label], scope: [:new_administrateur, :revision_changes, "update_mandatory#{postfix}"])
|
2021-06-18 11:15:10 +02:00
|
|
|
- else
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t(:disabled, label: change[:label], scope: [:new_administrateur, :revision_changes, "update_mandatory#{postfix}"])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :piece_justificative_template
|
2021-06-23 18:56:04 +02:00
|
|
|
%li.mb-1= t("update_piece_justificative_template#{postfix}", label: change[:label], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- when :drop_down_options
|
|
|
|
- added = change[:to].sort - change[:from].sort
|
|
|
|
- removed = change[:from].sort - change[:to].sort
|
|
|
|
%li.mb-1
|
2021-06-23 18:56:04 +02:00
|
|
|
= t("update_drop_down_options#{postfix}", label: change[:label], scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
%ul
|
|
|
|
- if added.present?
|
2021-06-23 18:56:04 +02:00
|
|
|
%li= t(:add_option, items: added.map{ |term| "« #{term.strip} »" }.join(", "), scope: [:new_administrateur, :revision_changes])
|
2021-06-18 11:15:10 +02:00
|
|
|
- if removed.present?
|
2021-06-23 18:56:04 +02:00
|
|
|
%li= t(:remove_option, items: removed.map{ |term| "« #{term.strip} »" }.join(", "), scope: [:new_administrateur, :revision_changes])
|
2021-06-23 15:54:12 +02:00
|
|
|
- when :carte_layers
|
|
|
|
- added = change[:to].sort - change[:from].sort
|
|
|
|
- removed = change[:from].sort - change[:to].sort
|
|
|
|
%li.mb-1
|
2021-06-23 18:56:04 +02:00
|
|
|
= t("update_carte_layers#{postfix}", label: change[:label], scope: [:new_administrateur, :revision_changes])
|
2021-06-23 15:54:12 +02:00
|
|
|
%ul
|
|
|
|
- if added.present?
|
2021-06-23 18:56:04 +02:00
|
|
|
%li= t(:add_option, items: added.map{ |term| "« #{t(term, scope: [:new_administrateur, :carte_layers])} »" }.join(", "), scope: [:new_administrateur, :revision_changes])
|
2021-06-23 15:54:12 +02:00
|
|
|
- if removed.present?
|
2021-06-23 18:56:04 +02:00
|
|
|
%li= t(:remove_option, items: removed.map{ |term| "« #{t(term, scope: [:new_administrateur, :carte_layers])} »" }.join(", "), scope: [:new_administrateur, :revision_changes])
|
|
|
|
- move_changes, move_private_changes = changes.filter { |change| change[:op] == :move }.partition { |change| !change[:private] }
|
|
|
|
- if move_changes.size != 0
|
|
|
|
%li.mb-1= t(:move, count: move_changes.size, scope: [:new_administrateur, :revision_changes])
|
|
|
|
- if move_private_changes.size != 0
|
|
|
|
%li.mb-1= t(:move_private, count: move_private_changes.size, scope: [:new_administrateur, :revision_changes])
|