2021-03-04 05:56:28 +08:00
|
|
|
defmodule LivebookWeb.Helpers do
|
2021-02-11 19:42:17 +08:00
|
|
|
import Phoenix.LiveView.Helpers
|
2021-03-12 18:57:01 +08:00
|
|
|
import Phoenix.HTML.Tag
|
2021-02-11 19:42:17 +08:00
|
|
|
|
|
|
|
@doc """
|
2021-03-04 05:56:28 +08:00
|
|
|
Renders a component inside the `Livebook.ModalComponent` component.
|
2021-02-11 19:42:17 +08:00
|
|
|
|
|
|
|
The rendered modal receives a `:return_to` option to properly update
|
|
|
|
the URL when the modal is closed.
|
|
|
|
"""
|
|
|
|
def live_modal(socket, component, opts) do
|
|
|
|
path = Keyword.fetch!(opts, :return_to)
|
|
|
|
modal_opts = [id: :modal, return_to: path, component: component, opts: opts]
|
2021-03-04 05:56:28 +08:00
|
|
|
live_component(socket, LivebookWeb.ModalComponent, modal_opts)
|
2021-02-11 19:42:17 +08:00
|
|
|
end
|
2021-02-18 20:14:09 +08:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Determines user platform based on the given *User-Agent* header.
|
|
|
|
"""
|
|
|
|
@spec platform_from_user_agent(Sting.t()) :: :linux | :mac | :windows | :other
|
|
|
|
def platform_from_user_agent(user_agent) when is_binary(user_agent) do
|
|
|
|
cond do
|
|
|
|
linux?(user_agent) -> :linux
|
|
|
|
mac?(user_agent) -> :mac
|
|
|
|
windows?(user_agent) -> :windows
|
|
|
|
true -> :other
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp linux?(user_agent), do: String.match?(user_agent, ~r/Linux/)
|
|
|
|
defp mac?(user_agent), do: String.match?(user_agent, ~r/Mac OS X/)
|
|
|
|
defp windows?(user_agent), do: String.match?(user_agent, ~r/Windows/)
|
2021-02-23 05:08:02 +08:00
|
|
|
|
2021-03-20 23:48:23 +08:00
|
|
|
defdelegate ansi_string_to_html(string, opts \\ []), to: LivebookWeb.ANSI
|
2021-03-12 18:57:01 +08:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Returns [Remix](https://remixicon.com) icon tag.
|
|
|
|
"""
|
|
|
|
def remix_icon(name, attrs \\ []) do
|
|
|
|
icon_class = "ri-#{name}"
|
|
|
|
attrs = Keyword.update(attrs, :class, icon_class, fn class -> "#{icon_class} #{class}" end)
|
|
|
|
content_tag(:i, "", attrs)
|
|
|
|
end
|
2021-02-03 20:13:56 +08:00
|
|
|
end
|