mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
41 lines
1.2 KiB
Elixir
41 lines
1.2 KiB
Elixir
defmodule PhilomenaWeb.Admin.UserLinkView do
|
|
use PhilomenaWeb, :view
|
|
|
|
alias Philomena.Tags.Tag
|
|
|
|
defp display_order(tags),
|
|
do: Tag.display_order(tags)
|
|
|
|
def link_state_class(%{aasm_state: state}) when state in ["verified", "link_verified"],
|
|
do: "success"
|
|
|
|
def link_state_class(%{aasm_state: state}) when state in ["unverified", "rejected"],
|
|
do: "danger"
|
|
|
|
def link_state_class(%{aasm_state: "contacted"}), do: "warning"
|
|
def link_state_class(_link), do: nil
|
|
|
|
def link_state_name(%{aasm_state: state}) do
|
|
state
|
|
|> String.replace("_", " ")
|
|
|> String.capitalize()
|
|
end
|
|
|
|
def link_scope(conn) do
|
|
case conn.params["all"] do
|
|
nil -> []
|
|
_val -> [all: true]
|
|
end
|
|
end
|
|
|
|
def contacted?(%{aasm_state: state}), do: state == "contacted"
|
|
def verified?(%{aasm_state: state}), do: state == "verified"
|
|
def link_verified?(%{aasm_state: state}), do: state == "link_verified"
|
|
def unverified?(%{aasm_state: state}), do: state == "unverified"
|
|
def rejected?(%{aasm_state: state}), do: state == "rejected"
|
|
|
|
def public_text(%{public: true}), do: "Yes"
|
|
def public_text(_user_link), do: "No"
|
|
|
|
def public?(%{public: public}), do: !!public
|
|
end
|