philomena/lib/philomena_web/views/profile_view.ex

59 lines
1.5 KiB
Elixir
Raw Normal View History

2019-11-12 02:27:09 +01:00
defmodule PhilomenaWeb.ProfileView do
use PhilomenaWeb, :view
def award_order(awards) do
2019-12-08 07:24:15 +01:00
Enum.sort_by(awards, &{!&1.badge.priority, DateTime.to_unix(&1.awarded_on)})
2019-11-12 02:27:09 +01:00
end
def badge_image(badge, options \\ []) do
img_tag(badge_url_root() <> "/" <> badge.image, options)
end
2019-12-05 19:32:53 +01:00
def current?(%{id: id}, %{id: id}), do: true
def current?(_user1, _user2), do: false
2019-11-12 02:40:31 +01:00
def award_title(%{badge_name: nil} = award),
do: award.badge.title
def award_title(%{badge_name: ""} = award),
do: award.badge.title
def award_title(award),
do: award.badge_name
2019-12-06 00:11:15 +01:00
def commission_status(%{open: true}), do: "Open"
def commission_status(_commission), do: "Closed"
2019-12-05 14:55:49 +01:00
def sparkline_data(data) do
# Normalize range
{min, max} = Enum.min_max(data)
max = max(max, 0)
min = max(min, 0)
content_tag :svg, [width: "100%", preserveAspectRatio: "none", viewBox: "0 0 90 20"] do
for {val, i} <- Enum.with_index(data) do
# Filter out negative values
calc = max(val, 0)
# Lerp or 0 if not present
height = zero_div((calc - min) * 20, max - min)
# In SVG coords, y grows down
y = 20 - height
content_tag :rect, [class: "barline__bar", x: i, y: y, width: 1, height: height] do
content_tag :title, val
end
end
end
end
2019-12-07 23:07:53 +01:00
def tag_disjunction(tags) do
Enum.map_join(tags, " || ", & &1.name)
end
2019-12-05 14:55:49 +01:00
defp zero_div(_num, 0), do: 0
defp zero_div(num, den), do: div(num, den)
2019-11-12 02:27:09 +01:00
defp badge_url_root do
Application.get_env(:philomena, :badge_url_root)
end
end