cannery/lib/lokal_web/components/invite_card.ex

71 lines
2.1 KiB
Elixir
Raw Normal View History

2022-02-25 21:52:17 -05:00
defmodule LokalWeb.Components.InviteCard do
@moduledoc """
Display card for an invite
"""
use LokalWeb, :component
2023-02-04 16:11:58 -05:00
alias Lokal.Accounts.{Invite, Invites, User}
2022-02-25 21:52:17 -05:00
alias LokalWeb.Endpoint
2023-02-04 16:11:58 -05:00
attr :invite, Invite, required: true
attr :current_user, User, required: true
slot(:inner_block)
slot(:code_actions)
def invite_card(%{invite: invite, current_user: current_user} = assigns) do
assigns =
assigns
|> assign(:use_count, Invites.get_use_count(invite, current_user))
|> assign_new(:code_actions, fn -> [] end)
2023-01-26 00:28:34 -05:00
2022-02-25 21:52:17 -05:00
~H"""
2022-05-05 21:07:02 -04:00
<div class="mx-4 my-2 px-8 py-4 flex flex-col justify-center items-center space-y-4
2022-02-25 21:52:17 -05:00
border border-gray-400 rounded-lg shadow-lg hover:shadow-md
2022-05-05 21:07:02 -04:00
transition-all duration-300 ease-in-out">
2022-02-25 21:52:17 -05:00
<h1 class="title text-xl">
<%= @invite.name %>
</h1>
<%= if @invite.disabled_at |> is_nil() do %>
<h2 class="title text-md">
2023-01-26 00:28:34 -05:00
<%= if @invite.uses_left do %>
<%= gettext(
2023-02-04 16:11:58 -05:00
"Uses Left: %{uses_left_count}",
uses_left_count: @invite.uses_left
2023-01-26 00:28:34 -05:00
) %>
<% else %>
<%= gettext("Uses Left: Unlimited") %>
<% end %>
2022-02-25 21:52:17 -05:00
</h2>
<% else %>
<h2 class="title text-md">
<%= gettext("Invite Disabled") %>
</h2>
<% end %>
2023-01-26 00:46:21 -05:00
<.qr_code
content={Routes.user_registration_url(Endpoint, :new, invite: @invite.token)}
filename={@invite.name}
/>
2023-02-04 16:11:58 -05:00
<h2 :if={@use_count != 0} class="title text-md">
<%= gettext("Uses: %{uses_count}", uses_count: @use_count) %>
</h2>
2022-02-25 21:52:17 -05:00
<div class="flex flex-row flex-wrap justify-center items-center">
<code
id={"code-#{@invite.id}"}
class="mx-2 my-1 text-xs px-4 py-2 rounded-lg text-center break-all text-gray-100 bg-primary-800"
2023-01-26 00:28:34 -05:00
phx-no-format
><%= Routes.user_registration_url(Endpoint, :new, invite: @invite.token) %></code>
<%= render_slot(@code_actions) %>
2022-02-25 21:52:17 -05:00
</div>
2023-02-04 09:16:51 -05:00
<div :if={@inner_block} class="flex space-x-4 justify-center items-center">
<%= render_slot(@inner_block) %>
</div>
2022-02-25 21:52:17 -05:00
</div>
"""
end
end