style(attachments): improve when we can download our multiple attachments (dossier en_construction)
This commit is contained in:
parent
920f90d2e3
commit
1db40de70e
5 changed files with 19 additions and 7 deletions
|
@ -21,3 +21,14 @@
|
||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.attachment-multiple:not(.fr-downloads-group) {
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding-inline-start: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -170,8 +170,7 @@
|
||||||
input[type=number],
|
input[type=number],
|
||||||
input[type=tel],
|
input[type=tel],
|
||||||
textarea,
|
textarea,
|
||||||
select,
|
select {
|
||||||
.attachment {
|
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: $default-fields-spacer;
|
margin-bottom: $default-fields-spacer;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.fr-mb-2w.attachment.fr-upload-group{ id: attachment ? dom_id(attachment, :edit) : nil }
|
.attachment.fr-upload-group{ id: attachment ? dom_id(attachment, :edit) : nil, class: class_names("fr-mb-2w": !(as_multiple? && downloadable?)) }
|
||||||
- if persisted?
|
- if persisted?
|
||||||
%div{ id: dom_id(attachment, :persisted_row) }
|
%div{ id: dom_id(attachment, :persisted_row) }
|
||||||
.flex.flex-gap-2{ class: class_names("attachment-error": attachment.virus_scanner_error?) }
|
.flex.flex-gap-2{ class: class_names("attachment-error": attachment.virus_scanner_error?) }
|
||||||
|
|
|
@ -10,6 +10,7 @@ class Attachment::MultipleComponent < ApplicationComponent
|
||||||
attr_reader :max
|
attr_reader :max
|
||||||
attr_reader :user_can_destroy
|
attr_reader :user_can_destroy
|
||||||
attr_reader :user_can_download
|
attr_reader :user_can_download
|
||||||
|
alias user_can_download? user_can_download
|
||||||
|
|
||||||
delegate :count, :empty?, to: :attachments, prefix: true
|
delegate :count, :empty?, to: :attachments, prefix: true
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
.fr-mb-4w.attachment-multiple
|
.fr-mb-4w.attachment-multiple{ class: class_names("fr-downloads-group": user_can_download?) }
|
||||||
= template
|
= template
|
||||||
|
|
||||||
|
%ul
|
||||||
- each_attachment do |attachment, index|
|
- each_attachment do |attachment, index|
|
||||||
%div{ id: dom_id(attachment) }
|
%li{ id: dom_id(attachment) }
|
||||||
= render Attachment::EditComponent.new(champ:, attached_file:, attachment:, index:, as_multiple: true, user_can_destroy:, user_can_download:)
|
= render Attachment::EditComponent.new(champ:, attached_file:, attachment:, index:, as_multiple: true, user_can_destroy:, user_can_download:)
|
||||||
|
|
||||||
%div{ id: empty_component_id, class: class_names("hidden": !can_attach_next?) }
|
%div{ id: empty_component_id, class: class_names("hidden": !can_attach_next?) }
|
||||||
|
|
Loading…
Reference in a new issue