2022-11-24 13:45:33 +01:00
|
|
|
.attachment.fr-upload-group{ { id: attachment ? dom_id(attachment, :edit) : nil, class: class_names("fr-mb-2w": !(as_multiple? && downloadable?)) }.compact }
|
2022-05-11 08:57:25 +02:00
|
|
|
- if persisted?
|
2022-11-09 12:33:20 +01:00
|
|
|
%div{ id: dom_id(attachment, :persisted_row) }
|
|
|
|
.flex.flex-gap-2{ class: class_names("attachment-error": attachment.virus_scanner_error?) }
|
2022-11-21 18:32:17 +01:00
|
|
|
- if user_can_destroy?
|
2022-11-22 19:25:45 +01:00
|
|
|
= link_to(t('.delete'), destroy_attachment_path, **remove_button_options, class: "fr-btn fr-btn--tertiary fr-btn--sm fr-icon-delete-line", title: "Supprimer le fichier #{attachment.filename}")
|
2022-11-21 18:32:17 +01:00
|
|
|
|
2022-11-22 17:12:16 +01:00
|
|
|
.fr-py-1v
|
|
|
|
- if downloadable?
|
|
|
|
= render Dsfr::DownloadComponent.new(attachment:)
|
|
|
|
- else
|
|
|
|
%span.attachment-filename.fr-mr-1w-= attachment.filename.to_s
|
2022-11-22 15:47:28 +01:00
|
|
|
|
2022-11-22 17:12:16 +01:00
|
|
|
= render Attachment::ProgressComponent.new(attachment: attachment)
|
2022-05-11 08:57:25 +02:00
|
|
|
|
2022-11-09 12:33:20 +01:00
|
|
|
- if error?
|
|
|
|
%p.fr-error-text= error_message
|
|
|
|
|
|
|
|
- elsif first?
|
|
|
|
%p.fr-text--sm.fr-text-mention--grey.fr-mb-1w
|
|
|
|
- if max_file_size.present?
|
|
|
|
= t('.max_file_size', max_file_size: number_to_human_size(max_file_size))
|
2022-11-09 09:48:36 +01:00
|
|
|
- if allowed_formats
|
2022-11-22 19:25:45 +01:00
|
|
|
= t('.allowed_formats', formats: allowed_formats.join(', '))
|
2022-06-16 15:51:45 +02:00
|
|
|
|
2022-11-09 12:33:20 +01:00
|
|
|
|
|
|
|
- if !as_multiple?
|
2022-11-17 19:18:58 +01:00
|
|
|
= file_field(champ, field_name, **file_field_options)
|
2022-11-09 12:33:20 +01:00
|
|
|
|
2022-11-23 12:54:09 +01:00
|
|
|
- if persisted?
|
|
|
|
- Attachment::PendingPollComponent.new(attachment: attachment, poll_url:).then do |component|
|
|
|
|
.fr-mt-2w
|
|
|
|
= render component
|
2022-11-09 12:33:20 +01:00
|
|
|
|
2022-11-24 14:05:53 +01:00
|
|
|
.attachment-upload-error.hidden
|
|
|
|
%p.fr-error-text= t('.errors.uploading')
|
|
|
|
= button_tag(**retry_button_options) do
|
|
|
|
= t(".retry")
|
2022-06-16 15:51:45 +02:00
|
|
|
|