<% size = local_assigns[:in_gallery] ? [800, 600] : [1024, 768] %> <% width = blob.metadata["width"] %> <% height = blob.metadata["height"] %> <% if blob.video? %> <%= tag.video \ src: rails_blob_path(blob), controls: true, preload: :none, style: "aspect-ratio: #{width} / #{height};", width: width, height: height %> <% elsif blob.audio? %> <% elsif blob.variable? %> <%= image_tag url_for(blob.variant(loader: { n: -1 }, resize_to_limit: size)), width: width, height: height %> <% elsif blob.previewable? %> <%= image_tag url_for(blob.preview(resize_to_limit: size)), width: width, height: height %> <% else %> <%= blob.filename.extension&.downcase.presence || "unknown" %> <% end %>