fdc8536c6f
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
31 lines
860 B
Elixir
31 lines
860 B
Elixir
defmodule Mobilizon.Web.EmailView do
|
|
use Mobilizon.Web, :view
|
|
|
|
import Mobilizon.Web.Gettext
|
|
|
|
def datetime_to_string(%DateTime{} = datetime, locale \\ "en", format \\ :medium) do
|
|
with {:ok, string} <-
|
|
Mobilizon.Cldr.DateTime.to_string(datetime, format: format, locale: locale) do
|
|
string
|
|
end
|
|
end
|
|
|
|
def datetime_to_time_string(%DateTime{} = datetime, locale \\ "en", format \\ :hm) do
|
|
with {:ok, string} <-
|
|
Mobilizon.Cldr.DateTime.to_string(datetime, format: format, locale: locale) do
|
|
string
|
|
end
|
|
end
|
|
|
|
@spec datetime_tz_convert(DateTime.t(), String.t()) :: DateTime.t()
|
|
def datetime_tz_convert(%DateTime{} = datetime, timezone) do
|
|
case DateTime.shift_zone(datetime, timezone) do
|
|
{:ok, datetime_with_user_tz} ->
|
|
datetime_with_user_tz
|
|
|
|
_ ->
|
|
datetime
|
|
end
|
|
end
|
|
end
|