ash_hq/lib/ash_hq_web/views/error_helpers.ex

48 lines
1.5 KiB
Elixir
Raw Normal View History

2022-03-21 17:43:24 +13:00
defmodule AshHqWeb.ErrorHelpers do
@moduledoc """
Conveniences for translating and building error messages.
"""
use Phoenix.HTML
@doc """
Generates tag for inlined form input errors.
"""
def error_tag(form, field) do
Enum.map(Keyword.get_values(form.errors, field), fn error ->
content_tag(:span, translate_error(error),
class: "invalid-feedback",
phx_feedback_for: input_name(form, field)
)
end)
end
@doc """
2022-09-09 15:28:09 +12:00
Translate an error message using gettext.
2022-03-21 17:43:24 +13:00
"""
def translate_error({msg, opts}) do
# When using gettext, we typically pass the strings we want
2022-09-09 15:28:09 +12:00
# to translate as a static argument:
2022-03-21 17:43:24 +13:00
#
2022-09-09 15:28:09 +12:00
# # Translate "is invalid" in the "errors" domain
2022-03-21 17:43:24 +13:00
# dgettext("errors", "is invalid")
#
2022-09-09 15:28:09 +12:00
# # Translate the number of files with plural rules
2022-03-21 17:43:24 +13:00
# dngettext("errors", "1 file", "%{count} files", count)
#
# Because the error messages we show in our forms and APIs
2022-09-09 15:28:09 +12:00
# are defined inside Ecto, we need to translate them dynamically.
2022-03-21 17:43:24 +13:00
# This requires us to call the Gettext module passing our gettext
# backend as first argument.
#
# Note we use the "errors" domain, which means translations
# should be written to the errors.po file. The :count option is
# set by Ecto and indicates we should also apply plural rules.
if count = opts[:count] do
Gettext.dngettext(AshHqWeb.Gettext, "errors", msg, msg, count, opts)
else
Gettext.dgettext(AshHqWeb.Gettext, "errors", msg, opts)
end
end
end