58 lines
1.7 KiB
Elixir
58 lines
1.7 KiB
Elixir
defmodule LokalWeb.Components.InviteCard do
|
|
@moduledoc """
|
|
Display card for an invite
|
|
"""
|
|
|
|
use LokalWeb, :component
|
|
alias LokalWeb.Endpoint
|
|
|
|
def invite_card(assigns) do
|
|
assigns = assigns |> assign_new(:code_actions, fn -> [] end)
|
|
|
|
~H"""
|
|
<div class="mx-4 my-2 px-8 py-4 flex flex-col justify-center items-center space-y-4
|
|
border border-gray-400 rounded-lg shadow-lg hover:shadow-md
|
|
transition-all duration-300 ease-in-out">
|
|
<h1 class="title text-xl">
|
|
<%= @invite.name %>
|
|
</h1>
|
|
|
|
<%= if @invite.disabled_at |> is_nil() do %>
|
|
<h2 class="title text-md">
|
|
<%= if @invite.uses_left do %>
|
|
<%= gettext(
|
|
"Uses Left: %{uses_left}",
|
|
uses_left: @invite.uses_left
|
|
) %>
|
|
<% else %>
|
|
<%= gettext("Uses Left: Unlimited") %>
|
|
<% end %>
|
|
</h2>
|
|
<% else %>
|
|
<h2 class="title text-md">
|
|
<%= gettext("Invite Disabled") %>
|
|
</h2>
|
|
<% end %>
|
|
|
|
<.qr_code
|
|
content={Routes.user_registration_url(Endpoint, :new, invite: @invite.token)}
|
|
filename={@invite.name}
|
|
/>
|
|
|
|
<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"
|
|
phx-no-format
|
|
><%= Routes.user_registration_url(Endpoint, :new, invite: @invite.token) %></code>
|
|
<%= render_slot(@code_actions) %>
|
|
</div>
|
|
|
|
<div :if={@inner_block} class="flex space-x-4 justify-center items-center">
|
|
<%= render_slot(@inner_block) %>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
end
|