Sha256: eb0772ba143a562d54748503a614ac5c4b1a4d3c1e07cdf82abdf34aab1a8710

Contents?: true

Size: 1.53 KB

Versions: 29

Compression:

Stored size: 1.53 KB

Contents

<div class="relative min-h-full max-w-full flex-1 flex flex-col justify-between space-y-3">
  <% if @file.present? %>
    <% if @file.representable? && @is_image %>
      <%= image_tag helpers.main_app.url_for(@file), class: 'rounded-lg max-h-168 max-w-full' %>
    <% else %>
      <div class="relative flex flex-col justify-evenly items-center px-2 rounded-lg border bg-white border-gray-500 py-6 flex-1">
        <div class="flex flex-col justify-center items-center w-full">
          <%= helpers.svg 'document-text', class: 'h-10 text-gray-800 mb-2' %>
          <div class="block w-full truncate text-center text-sm">
            <%= @file.filename %>
          </div>
        </div>
      </div>
    <% end %>

    <div class="flex justify-between lg:flex-col lg:space-y-2 2xl:flex-row 2xl:space-y-0">
      <%= a_link helpers.main_app.url_for(@file), color: 'indigo', download: true, class: 'text-center', size: :xs do %>
        <%= helpers.svg 'download' %> <span class="hidden lg:block lg:flex-1"><%= t('avo.download_file') %></span>
      <% end %>
      <%= a_link "#{Avo::App.root_path}/resources/#{@resource.model.model_name.route_key}/#{@resource.model.id
      }/active_storage_attachments/#{@id}/#{@file.id}", color: :red, variant: :outlined, size: :xs, class: 'text-center', 'data-turbo-frame': 'destroy_attachment_form', data: { confirm: t('avo.are_you_sure')} do %>
        <%= helpers.svg 'trash' %> <span class="hidden lg:block lg:flex-1"><%= t 'avo.delete_file', item: @file.filename %></span>
      <% end %>
    </div>
  <% end %>
</div>

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
avo-1.13.3 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.13.2 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.13.1 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.13.0 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.12.4 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.12.3 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.12.2 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.12.1 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.12.0 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.6 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.5 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.4 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.3 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.2 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.1 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.10.3 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.11.0 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.10.2 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.10.1 app/components/avo/fields/common/multiple_file_viewer_component.html.erb
avo-1.10.0 app/components/avo/fields/common/multiple_file_viewer_component.html.erb