analytics/lib/plausible_web/views/error_helpers.ex

18 lines
456 B
Elixir
Raw Normal View History

2019-09-02 14:29:19 +03:00
defmodule PlausibleWeb.ErrorHelpers do
use Phoenix.HTML
def error_tag(%Phoenix.HTML.Form{} = form, field) do
2019-09-02 14:29:19 +03:00
Enum.map(Keyword.get_values(form.errors, field), fn error ->
content_tag(:div, elem(error, 0), class: "mt-2 text-sm text-red-600")
2019-09-02 14:29:19 +03:00
end)
end
def error_tag(assigns, field) when is_map(assigns) do
error = assigns[field]
if error do
content_tag(:div, error, class: "mt-2 text-sm text-red-600")
end
end
2019-09-02 14:29:19 +03:00
end