aboutsummaryrefslogtreecommitdiff
path: root/lib/waev_web/views
diff options
context:
space:
mode:
Diffstat (limited to 'lib/waev_web/views')
-rw-r--r--lib/waev_web/views/error_helpers.ex44
-rw-r--r--lib/waev_web/views/error_view.ex16
-rw-r--r--lib/waev_web/views/layout_view.ex3
-rw-r--r--lib/waev_web/views/page_view.ex3
4 files changed, 66 insertions, 0 deletions
diff --git a/lib/waev_web/views/error_helpers.ex b/lib/waev_web/views/error_helpers.ex
new file mode 100644
index 0000000..09c5bc1
--- /dev/null
+++ b/lib/waev_web/views/error_helpers.ex
@@ -0,0 +1,44 @@
+defmodule WaevWeb.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: "help-block")
+ end)
+ end
+
+ @doc """
+ Translates an error message using gettext.
+ """
+ def translate_error({msg, opts}) do
+ # When using gettext, we typically pass the strings we want
+ # to translate as a static argument:
+ #
+ # # Translate "is invalid" in the "errors" domain
+ # dgettext("errors", "is invalid")
+ #
+ # # Translate the number of files with plural rules
+ # dngettext("errors", "1 file", "%{count} files", count)
+ #
+ # Because the error messages we show in our forms and APIs
+ # are defined inside Ecto, we need to translate them dynamically.
+ # 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(WaevWeb.Gettext, "errors", msg, msg, count, opts)
+ else
+ Gettext.dgettext(WaevWeb.Gettext, "errors", msg, opts)
+ end
+ end
+end
diff --git a/lib/waev_web/views/error_view.ex b/lib/waev_web/views/error_view.ex
new file mode 100644
index 0000000..b594014
--- /dev/null
+++ b/lib/waev_web/views/error_view.ex
@@ -0,0 +1,16 @@
+defmodule WaevWeb.ErrorView do
+ use WaevWeb, :view
+
+ # If you want to customize a particular status code
+ # for a certain format, you may uncomment below.
+ # def render("500.html", _assigns) do
+ # "Internal Server Error"
+ # end
+
+ # By default, Phoenix returns the status message from
+ # the template name. For example, "404.html" becomes
+ # "Not Found".
+ def template_not_found(template, _assigns) do
+ Phoenix.Controller.status_message_from_template(template)
+ end
+end
diff --git a/lib/waev_web/views/layout_view.ex b/lib/waev_web/views/layout_view.ex
new file mode 100644
index 0000000..e5af1b7
--- /dev/null
+++ b/lib/waev_web/views/layout_view.ex
@@ -0,0 +1,3 @@
+defmodule WaevWeb.LayoutView do
+ use WaevWeb, :view
+end
diff --git a/lib/waev_web/views/page_view.ex b/lib/waev_web/views/page_view.ex
new file mode 100644
index 0000000..e82080d
--- /dev/null
+++ b/lib/waev_web/views/page_view.ex
@@ -0,0 +1,3 @@
+defmodule WaevWeb.PageView do
+ use WaevWeb, :view
+end