philomena/lib/philomena_web/views/staff_view.ex

54 lines
2.1 KiB
Elixir
Raw Normal View History

2019-11-29 23:01:54 +01:00
defmodule PhilomenaWeb.StaffView do
use PhilomenaWeb, :view
2021-11-30 22:17:47 +01:00
@desc_regex ~r/^([^\n]+)/
def category_description("Administrators"),
do:
"High-level staff of the site, typically handling larger-scope tasks, such as technical operation of the site or writing rules and policies."
def category_description("Technical Team"),
do:
"Developers and system administrators of the site, people who make sure the site keeps running."
def category_description("Public Relations"),
do: "People handling public announcements, events and such."
def category_description("Moderators"),
do:
"The main moderation force of the site, handling a wide range of tasks from maintaining tags to making sure the rules are followed."
def category_description("Assistants"),
do:
"Volunteers who help us run the site by taking simpler tasks off the hands of administrators and moderators."
def category_description("Others"),
do:
"People associated with the site in some other way, sometimes (but not necessarily) having staff-like permissions."
def category_description(_), do: "This category has no description provided."
def category_class("Administrators"), do: "block--danger"
def category_class("Technical Team"), do: "block--warning"
def category_class("Public Relations"), do: "block--warning"
def category_class("Moderators"), do: "block--success"
2024-04-30 09:25:23 +02:00
def category_class("Assistants"), do: "block--special"
2021-11-30 22:17:47 +01:00
def category_class(_), do: ""
2024-05-03 22:59:29 +02:00
def category_icon("Administrators"), do: "fa-medal"
def category_icon("Technical Team"), do: "fa-screwdriver-wrench"
def category_icon("Public Relations"), do: "fa-comment-medical"
def category_icon("Moderators"), do: "fa-gavel"
def category_icon("Assistants"), do: "fa-handshake-angle"
def category_icon("Others"), do: "fa-user-tie"
def category_icon(_), do: ""
2021-11-30 22:17:47 +01:00
def staff_description(%{description: desc}) when desc not in [nil, ""] do
[part] = Regex.run(@desc_regex, desc, capture: :all_but_first)
String.slice(part, 0, 240)
end
def staff_description(_),
do: "This person didn't provide any description, they seem to need a hug."
2019-11-29 23:01:54 +01:00
end