2020-01-26 20:36:50 +00:00
|
|
|
defmodule Mobilizon.Web.ErrorHelpers do
|
2017-12-08 08:58:14 +00:00
|
|
|
@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
|
2018-07-27 08:45:35 +00:00
|
|
|
Enum.map(Keyword.get_values(form.errors, field), fn error ->
|
|
|
|
content_tag(:span, translate_error(error), class: "help-block")
|
2017-12-08 08:58:14 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Translates an error message using gettext.
|
|
|
|
"""
|
|
|
|
def translate_error({msg, opts}) do
|
|
|
|
# Because error messages were defined within Ecto, we must
|
|
|
|
# call the Gettext module passing our Gettext backend. We
|
|
|
|
# also use the "errors" domain as translations are placed
|
|
|
|
# in the errors.po file.
|
|
|
|
# Ecto will pass the :count keyword if the error message is
|
|
|
|
# meant to be pluralized.
|
|
|
|
# On your own code and templates, depending on whether you
|
|
|
|
# need the message to be pluralized or not, this could be
|
|
|
|
# written simply as:
|
|
|
|
#
|
|
|
|
# dngettext "errors", "1 file", "%{count} files", count
|
|
|
|
# dgettext "errors", "is invalid"
|
|
|
|
#
|
|
|
|
if count = opts[:count] do
|
2020-01-26 20:36:50 +00:00
|
|
|
Gettext.dngettext(Mobilizon.Web.Gettext, "errors", msg, msg, count, opts)
|
2017-12-08 08:58:14 +00:00
|
|
|
else
|
2020-01-26 20:36:50 +00:00
|
|
|
Gettext.dgettext(Mobilizon.Web.Gettext, "errors", msg, opts)
|
2017-12-08 08:58:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|