2021-09-02 23:31:14 -04:00
|
|
|
defmodule CanneryWeb.LiveHelpers do
|
2022-01-22 21:40:29 -05:00
|
|
|
@moduledoc """
|
|
|
|
Contains common helper functions for liveviews
|
|
|
|
"""
|
|
|
|
|
2022-02-14 01:26:51 -05:00
|
|
|
import Phoenix.LiveView
|
2021-09-02 23:31:14 -04:00
|
|
|
import Phoenix.LiveView.Helpers
|
2022-01-22 21:40:29 -05:00
|
|
|
alias Cannery.Accounts
|
2022-02-14 01:26:51 -05:00
|
|
|
alias Phoenix.LiveView.JS
|
|
|
|
|
|
|
|
def assign_defaults(socket, %{"user_token" => user_token} = _session) do
|
|
|
|
socket
|
|
|
|
|> assign_new(:current_user, fn -> Accounts.get_user_by_session_token(user_token) end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def assign_defaults(socket, _session) do
|
|
|
|
socket
|
|
|
|
end
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
@doc """
|
2022-02-14 01:26:51 -05:00
|
|
|
Renders a live component inside a modal.
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
The rendered modal receives a `:return_to` option to properly update
|
|
|
|
the URL when the modal is closed.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-02-17 22:31:37 -05:00
|
|
|
<.modal return_to={Routes.<%= schema.singular %>_index_path(Endpoint, :index)}>
|
2022-02-14 01:26:51 -05:00
|
|
|
<.live_component
|
|
|
|
module={<%= inspect context.web_module %>.<%= inspect Module.concat(schema.web_namespace, schema.alias) %>Live.FormComponent}
|
|
|
|
id={@<%= schema.singular %>.id || :new}
|
|
|
|
title={@page_title}
|
|
|
|
action={@live_action}
|
2022-02-17 22:31:37 -05:00
|
|
|
return_to={Routes.<%= schema.singular %>_index_path(Endpoint, :index)}
|
2022-02-14 01:26:51 -05:00
|
|
|
<%= schema.singular %>: @<%= schema.singular %>
|
|
|
|
/>
|
|
|
|
</.modal>
|
2021-09-02 23:31:14 -04:00
|
|
|
"""
|
2022-02-14 01:26:51 -05:00
|
|
|
def modal(assigns) do
|
|
|
|
~H"""
|
2022-02-20 15:17:12 -05:00
|
|
|
<%= live_patch to: @return_to,
|
|
|
|
id: "modal-bg",
|
|
|
|
class:
|
|
|
|
"fade-in fixed z-10 left-0 top-0
|
|
|
|
w-full h-full overflow-hidden
|
|
|
|
p-8 flex flex-col justify-center items-center cursor-auto",
|
|
|
|
style: "background-color: rgba(0,0,0,0.4);",
|
|
|
|
phx_remove: hide_modal()
|
|
|
|
do %>
|
|
|
|
<span class="hidden"></span>
|
|
|
|
<% end %>
|
|
|
|
|
2022-02-14 01:26:51 -05:00
|
|
|
<div
|
|
|
|
id="modal"
|
2022-02-20 15:17:12 -05:00
|
|
|
class="fixed z-10 left-0 top-0 pointer-events-none
|
|
|
|
w-full h-full overflow-hidden
|
2022-02-20 20:28:34 -05:00
|
|
|
p-4 sm:p-8 flex flex-col justify-center items-center"
|
2022-02-14 01:26:51 -05:00
|
|
|
>
|
|
|
|
<div
|
|
|
|
id="modal-content"
|
2022-02-20 20:28:34 -05:00
|
|
|
class="fade-in-scale w-full max-w-3xl relative
|
|
|
|
pointer-events-auto overflow-hidden
|
|
|
|
px-8 py-4 sm:py-8 flex flex-col justify-center items-center
|
2022-02-14 01:26:51 -05:00
|
|
|
flex flex-col justify-start items-center
|
|
|
|
bg-white border-2 rounded-lg"
|
|
|
|
>
|
2022-02-14 20:29:35 -05:00
|
|
|
<%= live_patch to: @return_to,
|
2022-02-15 17:30:58 -05:00
|
|
|
id: "close",
|
|
|
|
class:
|
2022-02-20 15:17:12 -05:00
|
|
|
"absolute top-8 right-10
|
|
|
|
text-gray-500 hover:text-gray-800
|
|
|
|
transition-all duration-500 ease-in-out",
|
2022-02-20 20:28:34 -05:00
|
|
|
phx_remove: hide_modal() do %>
|
2022-02-14 20:29:35 -05:00
|
|
|
<i class="fa-fw fa-lg fas fa-times"></i>
|
2022-02-14 01:26:51 -05:00
|
|
|
<% end %>
|
|
|
|
|
2022-04-19 20:08:12 -04:00
|
|
|
<div class="overflow-x-hidden overflow-y-auto w-full p-8 flex flex-col space-y-4 justify-start items-center">
|
2022-02-14 01:26:51 -05:00
|
|
|
<%= render_slot(@inner_block) %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
"""
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
2022-01-22 17:21:10 -05:00
|
|
|
|
2022-02-14 01:26:51 -05:00
|
|
|
def hide_modal(js \\ %JS{}) do
|
|
|
|
js
|
|
|
|
|> JS.hide(to: "#modal", transition: "fade-out")
|
2022-02-20 15:17:12 -05:00
|
|
|
|> JS.hide(to: "#modal-bg", transition: "fade-out")
|
2022-02-14 01:26:51 -05:00
|
|
|
|> JS.hide(to: "#modal-content", transition: "fade-out-scale")
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
end
|