mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 20:10:58 +00:00
229 lines
6.0 KiB
TypeScript
229 lines
6.0 KiB
TypeScript
import { useState } from "react";
|
|
import {
|
|
Alert,
|
|
Anchor,
|
|
Button,
|
|
Checkbox,
|
|
Divider,
|
|
Group,
|
|
PasswordInput,
|
|
Stack,
|
|
Text,
|
|
TextInput,
|
|
Title,
|
|
} from "@mantine/core";
|
|
import {
|
|
IconArrowRight,
|
|
IconDeviceMobile,
|
|
IconLock,
|
|
IconMail,
|
|
} from "@tabler/icons-react";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { z } from "zod";
|
|
import { useNavigate, Link } from "react-router-dom";
|
|
import { useDispatch } from "react-redux";
|
|
import { useApiMutation } from "@ema-platform/api";
|
|
import { notify } from "@ema-platform/ui";
|
|
import { AuthShell } from "../components/AuthShell";
|
|
import { loginSuccess, setUser, setCurrentProfile } from "../store/auth.slice";
|
|
import type {
|
|
LoginPayload,
|
|
AuthUser,
|
|
CurrentProfile,
|
|
} from "../types/auth.types";
|
|
import { useAuthConfig } from "../AuthConfig";
|
|
import { authStorage } from "../utils/auth-storage";
|
|
|
|
const schema = z.object({
|
|
email: z.string().email({ message: "Enter a valid email" }),
|
|
password: z
|
|
.string()
|
|
.min(5, { message: "Password must be at least 6 characters" }),
|
|
});
|
|
|
|
type FormValues = z.infer<typeof schema>;
|
|
|
|
export function LoginPage() {
|
|
const navigate = useNavigate();
|
|
const dispatch = useDispatch();
|
|
const { appName, loginRedirectPath, enableSignup, enableForgotPassword } =
|
|
useAuthConfig();
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [rememberMe, setRememberMe] = useState(true);
|
|
const [serverError, setServerError] = useState<string | null>(null);
|
|
const [loginTrigger] = useApiMutation<LoginPayload>();
|
|
const [meTrigger] = useApiMutation<AuthUser>();
|
|
const [profileCheckTrigger] = useApiMutation<{
|
|
total: number;
|
|
items: CurrentProfile[];
|
|
}>();
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm<FormValues>({
|
|
resolver: zodResolver(schema),
|
|
});
|
|
|
|
const onSubmit = async (values: FormValues) => {
|
|
setIsLoading(true);
|
|
try {
|
|
const data = await loginTrigger({
|
|
url: "/auth/login",
|
|
method: "POST",
|
|
body: values,
|
|
}).unwrap();
|
|
dispatch(loginSuccess(data));
|
|
|
|
const me = await meTrigger({
|
|
url: "/auth/me",
|
|
method: "GET",
|
|
}).unwrap();
|
|
dispatch(setUser(me));
|
|
|
|
let hasProfile = false;
|
|
try {
|
|
const q = `w=user_id:=:${me.id}&i=user,address,profession`;
|
|
const result = await profileCheckTrigger({
|
|
url: `/profiles?q=${encodeURIComponent(q)}`,
|
|
method: "GET",
|
|
}).unwrap();
|
|
if (result.total > 0 && result.items.length > 0) {
|
|
const profile = result.items[0];
|
|
authStorage.setProfileId(profile.id);
|
|
dispatch(setCurrentProfile(profile));
|
|
hasProfile = true;
|
|
}
|
|
} catch {
|
|
// profile not found — redirect to setup
|
|
}
|
|
|
|
if (!me.isPhoneNumberVerified) {
|
|
navigate("/otp-verify", {
|
|
state: {
|
|
email: me.email,
|
|
phoneNumber: me.phoneNumber,
|
|
needsProfile: !hasProfile,
|
|
},
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (!hasProfile) {
|
|
navigate("/profile-setup");
|
|
return;
|
|
}
|
|
|
|
navigate(loginRedirectPath);
|
|
} catch (err: unknown) {
|
|
const msg =
|
|
(err as { data?: { message?: string } })?.data?.message ??
|
|
(err instanceof Error ? err.message : "Something went wrong");
|
|
setServerError(msg);
|
|
notify.error(msg);
|
|
} finally {
|
|
localStorage.setItem("rememberMe", String(rememberMe));
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<AuthShell>
|
|
<Stack gap="lg">
|
|
<div>
|
|
<Title order={2} fz={30}>
|
|
Welcome to {appName}
|
|
</Title>
|
|
<Text c="dimmed" mt={6}>
|
|
Sign in to access your account.
|
|
</Text>
|
|
</div>
|
|
|
|
{serverError && (
|
|
<Alert
|
|
variant="light"
|
|
color="red"
|
|
withCloseButton
|
|
onClose={() => setServerError(null)}
|
|
>
|
|
{serverError}
|
|
</Alert>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<Stack gap="md">
|
|
<TextInput
|
|
label="Email or phone"
|
|
placeholder="you@example.com"
|
|
size="md"
|
|
leftSection={<IconMail size={18} />}
|
|
error={errors.email?.message}
|
|
{...register("email")}
|
|
/>
|
|
<PasswordInput
|
|
label="Password"
|
|
placeholder="Your password"
|
|
size="md"
|
|
leftSection={<IconLock size={18} />}
|
|
error={errors.password?.message}
|
|
{...register("password")}
|
|
/>
|
|
|
|
<Group justify="space-between">
|
|
<Checkbox
|
|
label="Remember me"
|
|
size="sm"
|
|
checked={rememberMe}
|
|
onChange={(e) => setRememberMe(e.currentTarget.checked)}
|
|
/>
|
|
{enableForgotPassword && (
|
|
<Anchor
|
|
component={Link}
|
|
to="/forgot-password"
|
|
size="sm"
|
|
fw={600}
|
|
>
|
|
Forgot password?
|
|
</Anchor>
|
|
)}
|
|
</Group>
|
|
|
|
<Button
|
|
type="submit"
|
|
loading={isLoading}
|
|
fullWidth
|
|
size="md"
|
|
rightSection={<IconArrowRight size={18} />}
|
|
>
|
|
Sign in
|
|
</Button>
|
|
</Stack>
|
|
</form>
|
|
|
|
<Divider label="or" labelPosition="center" />
|
|
|
|
<Button
|
|
variant="default"
|
|
fullWidth
|
|
size="md"
|
|
leftSection={<IconDeviceMobile size={18} />}
|
|
onClick={() => notify.info("Phone sign-in is coming soon.")}
|
|
>
|
|
Sign in with phone number
|
|
</Button>
|
|
|
|
{enableSignup && (
|
|
<Text ta="center" size="sm" c="dimmed">
|
|
Don't have an account?{" "}
|
|
<Anchor component={Link} to="/signup" fw={700}>
|
|
Create one
|
|
</Anchor>
|
|
</Text>
|
|
)}
|
|
</Stack>
|
|
</AuthShell>
|
|
);
|
|
}
|