Replace all DaisyUI component classes with pure Tailwind CSS utility classes following TailwindUI conventions. Use dark: variants for dark mode instead of DaisyUI's data-theme semantic color system. - Remove DaisyUI plugin and theme vendor files - Configure Tailwind v4 custom dark variant for data-theme attribute - Migrate all components: cards, tables, badges, buttons, forms, navigation, dropdowns, modals, alerts, star ratings, spinners - Update all auth pages (login, register, settings, password reset, confirmation) to TailwindUI card layout - Update content pages (about, API docs, status, packets, bad packets, info, weather) to TailwindUI patterns - Replace opacity-based text styling with semantic gray colors - Update test assertions to match new class names
96 lines
3.8 KiB
Elixir
96 lines
3.8 KiB
Elixir
defmodule AprsmeWeb.UserConfirmationLive do
|
|
@moduledoc false
|
|
use AprsmeWeb, :live_view
|
|
|
|
alias Aprsme.Accounts
|
|
|
|
def render(%{live_action: :edit} = assigns) do
|
|
~H"""
|
|
<div class="flex min-h-full flex-col justify-center py-12 sm:px-6 lg:px-8">
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-md">
|
|
<h2 class="text-center text-2xl/9 font-bold tracking-tight text-gray-900 dark:text-white">
|
|
Confirm your account
|
|
</h2>
|
|
<p class="mt-2 text-center text-sm/6 text-gray-500 dark:text-gray-400">
|
|
Click the button below to confirm your account
|
|
</p>
|
|
</div>
|
|
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
|
|
<div class="bg-white px-6 py-12 shadow-sm sm:rounded-lg sm:px-12 dark:bg-gray-800/50 dark:shadow-none dark:outline dark:-outline-offset-1 dark:outline-white/10">
|
|
<.simple_form :let={_f} for={%{}} as={:user} id="confirmation_form" phx-submit="confirm_account">
|
|
<input type="hidden" name="user[token]" value={@token} />
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
class="flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm/6 font-semibold text-white shadow-xs hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 dark:bg-indigo-500 dark:hover:bg-indigo-400 dark:focus-visible:outline-indigo-500"
|
|
phx-disable-with="Confirming..."
|
|
>
|
|
Confirm my account
|
|
</button>
|
|
</div>
|
|
</.simple_form>
|
|
|
|
<div class="relative mt-10">
|
|
<div class="absolute inset-0 flex items-center">
|
|
<div class="w-full border-t border-gray-200 dark:border-white/10"></div>
|
|
</div>
|
|
<div class="relative flex justify-center text-sm/6">
|
|
<span class="bg-white px-6 text-gray-900 dark:bg-gray-800/50 dark:text-white">OR</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6 text-center text-sm/6 text-gray-500 dark:text-gray-400">
|
|
<.link
|
|
navigate={~p"/users/register"}
|
|
class="font-semibold text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300"
|
|
>
|
|
Register
|
|
</.link>
|
|
<span class="mx-2">|</span>
|
|
<.link
|
|
navigate={~p"/users/log_in"}
|
|
class="font-semibold text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300"
|
|
>
|
|
Log in
|
|
</.link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
"""
|
|
end
|
|
|
|
def mount(params, _session, socket) do
|
|
{:ok, assign(socket, token: params["token"]), temporary_assigns: [token: nil]}
|
|
end
|
|
|
|
# Do not log in the user after confirmation to avoid a
|
|
# leaked token giving the user access to the account.
|
|
def handle_event("confirm_account", %{"user" => %{"token" => token}}, socket) do
|
|
case Accounts.confirm_user(token) do
|
|
{:ok, _} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(:info, "User confirmed successfully.")
|
|
|> redirect(to: ~p"/")}
|
|
|
|
:error ->
|
|
# If there is a current user and the account was already confirmed,
|
|
# then odds are that the confirmation link was already visited, either
|
|
# by some automation or by the user themselves, so we redirect without
|
|
# a warning message.
|
|
case socket.assigns do
|
|
%{current_user: %{confirmed_at: confirmed_at}} when not is_nil(confirmed_at) ->
|
|
{:noreply, redirect(socket, to: ~p"/")}
|
|
|
|
%{} ->
|
|
{:noreply,
|
|
socket
|
|
|> put_flash(:error, "User confirmation link is invalid or it has expired.")
|
|
|> redirect(to: ~p"/")}
|
|
end
|
|
end
|
|
end
|
|
end
|