mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
32 lines
1.7 KiB
Text
32 lines
1.7 KiB
Text
- size = assigns[:size] || :full
|
|
- embed_display = assigns[:embed_display] || false
|
|
|
|
= content_tag :div, [data: image_container_data(@conn, @image, size), class: "image-show-container"] do
|
|
.block.block--fixed.block--warning.block--no-margin.image-filtered.hidden
|
|
strong
|
|
= link("This image is blocked by your current filter - click here to display it anyway", to: "#", data: [click_unfilter: @image.id])
|
|
p
|
|
= img_tag(static_path(@conn, "/images/tagblocked.svg"), width: 250, height: 250, data: [click_unfilter: @image.id])
|
|
span.filter-explanation
|
|
=< link("your current filter", to: ~p"/filters/#{@conn.assigns.current_filter}", class: "filter-link")
|
|
' .
|
|
|
|
= if size == :full and not embed_display do
|
|
.image-target.hidden.image-show data-scaled=scaled_value(@conn.assigns.current_user) data-uris=Jason.encode!(thumb_urls(@image, can?(@conn, :hide, @image))) data-width=@image.image_width data-height=@image.image_height data-image-size=@image.image_size data-mime-type=@image.image_mime_type
|
|
= if @image.image_mime_type == "video/webm" do
|
|
video controls=true
|
|
- else
|
|
picture
|
|
- else
|
|
.image-show.hidden
|
|
a href=~p"/images/#{@image}" title=title_text(@image)
|
|
span.imgspoiler
|
|
- thumb_url = thumb_url(@image, can?(@conn, :show, @image), size)
|
|
|
|
= if @image.image_mime_type == "video/webm" do
|
|
video data-image-id=@image.id autoplay="autoplay" loop="loop" muted="muted" playsinline="playsinline"
|
|
source src=thumb_url type="video/webm"
|
|
source src=String.replace(thumb_url, ".webm", ".mp4") type="video/mp4"
|
|
- else
|
|
picture data-image-id=@image.id
|
|
img src=thumb_url
|