- Remove userRole prop, read user directly from auth store - Add user info section (avatar, name, email) when logged in - Add Masuk/Daftar buttons at bottom when unauthenticated - Add Keluar button with loading state when authenticated - Add tagline under logo in sidebar header - Add backdrop blur effect for better visual depth - Use flex-col layout for consistent spacing at any height
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import { useState } from "react";
|
|
import { Link, useNavigate } from "react-router-dom";
|
|
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
|
|
import { AuthForm } from "@/components/auth-form";
|
|
import { apiClient } from "@/lib/api-client";
|
|
import { useAuthStore } from "@/store/auth-store";
|
|
|
|
export function LoginPage() {
|
|
const navigate = useNavigate();
|
|
const queryClient = useQueryClient();
|
|
const setUser = useAuthStore((state) => state.setUser);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const meQuery = useQuery({
|
|
queryKey: ["auth", "me"],
|
|
queryFn: () => apiClient.getMe(),
|
|
});
|
|
|
|
const mutation = useMutation({
|
|
mutationFn: apiClient.login,
|
|
onSuccess: (response) => {
|
|
setUser(response.user);
|
|
queryClient.setQueryData(["auth", "me"], response);
|
|
navigate("/dashboard");
|
|
},
|
|
onError: (err) =>
|
|
setError(err instanceof Error ? err.message : "Login gagal"),
|
|
});
|
|
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center px-6 py-12">
|
|
<div className="w-full max-w-sm md:max-w-md space-y-4">
|
|
<AuthForm
|
|
mode="login"
|
|
isSubmitting={mutation.isPending}
|
|
error={error}
|
|
googleOAuthEnabled={Boolean(
|
|
meQuery.data?.features.googleOAuthEnabled,
|
|
)}
|
|
onSubmit={async ({ email, password }) => {
|
|
setError(null);
|
|
return mutation.mutateAsync({ email, password });
|
|
}}
|
|
onFieldChange={() => setError(null)}
|
|
/>
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
Belum punya akun?{" "}
|
|
<Link className="text-primary" to="/register">
|
|
Daftar
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|