mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
38 lines
1.3 KiB
Elixir
38 lines
1.3 KiB
Elixir
defmodule PhilomenaWeb.Admin.ApprovalView do
|
|
use PhilomenaWeb, :view
|
|
|
|
alias PhilomenaWeb.Admin.ReportView
|
|
|
|
# Shamelessly copied from ReportView
|
|
def truncated_ip_link(conn, ip), do: ReportView.truncated_ip_link(conn, ip)
|
|
|
|
def image_thumb(conn, image) do
|
|
render(PhilomenaWeb.ImageView, "_image_container.html",
|
|
image: image,
|
|
size: :thumb_tiny,
|
|
conn: conn
|
|
)
|
|
end
|
|
|
|
def class_for_image(%{processed: false}), do: "block--warning"
|
|
def class_for_image(%{thumbnails_generated: false}), do: "block--warning"
|
|
|
|
def class_for_image(%{image_is_animated: a, image_duration: d, image_format: "png"})
|
|
when a or d > 0.04,
|
|
do: "block--danger"
|
|
|
|
def class_for_image(%{image_format: "svg"}), do: "block--warning"
|
|
def class_for_image(%{image_format: f}) when f in ["webm", "gif"], do: "block--danger"
|
|
def class_for_image(_), do: ""
|
|
|
|
def warning_text(%{processed: false}), do: "(not processed)"
|
|
def warning_text(%{thumbnails_generated: false}), do: "(not processed)"
|
|
|
|
def warning_text(%{image_is_animated: a, image_duration: d, image_format: "png"})
|
|
when a or d > 0.04,
|
|
do: "(animated png)"
|
|
|
|
def warning_text(%{image_format: "svg"}), do: "(svg)"
|
|
def warning_text(%{image_format: f}) when f in ["webm", "gif"], do: "(video)"
|
|
def warning_text(_), do: ""
|
|
end
|