mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
* Initial plan * Initial exploration - understanding the codebase Co-authored-by: nicotsx <47644445+nicotsx@users.noreply.github.com> * Add "Ironmount - " prefix to all route titles and version in sidebar Co-authored-by: nicotsx <47644445+nicotsx@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: nicotsx <47644445+nicotsx@users.noreply.github.com>
147 lines
3.8 KiB
TypeScript
147 lines
3.8 KiB
TypeScript
import { arktypeResolver } from "@hookform/resolvers/arktype";
|
|
import { useMutation } from "@tanstack/react-query";
|
|
import { type } from "arktype";
|
|
import { useForm } from "react-hook-form";
|
|
import { useNavigate } from "react-router";
|
|
import { toast } from "sonner";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "~/client/components/ui/form";
|
|
import { authMiddleware } from "~/middleware/auth";
|
|
import type { Route } from "./+types/onboarding";
|
|
import { AuthLayout } from "~/client/components/auth-layout";
|
|
import { Input } from "~/client/components/ui/input";
|
|
import { Button } from "~/client/components/ui/button";
|
|
import { registerMutation } from "~/client/api-client/@tanstack/react-query.gen";
|
|
|
|
export const clientMiddleware = [authMiddleware];
|
|
|
|
export function meta(_: Route.MetaArgs) {
|
|
return [
|
|
{ title: "Ironmount - Onboarding" },
|
|
{
|
|
name: "description",
|
|
content: "Welcome to Ironmount. Create your admin account to get started.",
|
|
},
|
|
];
|
|
}
|
|
|
|
const onboardingSchema = type({
|
|
username: "2<=string<=50",
|
|
password: "string>=8",
|
|
confirmPassword: "string>=1",
|
|
});
|
|
|
|
type OnboardingFormValues = typeof onboardingSchema.inferIn;
|
|
|
|
export default function OnboardingPage() {
|
|
const navigate = useNavigate();
|
|
|
|
const form = useForm<OnboardingFormValues>({
|
|
resolver: arktypeResolver(onboardingSchema),
|
|
defaultValues: {
|
|
username: "",
|
|
password: "",
|
|
confirmPassword: "",
|
|
},
|
|
});
|
|
|
|
const registerUser = useMutation({
|
|
...registerMutation(),
|
|
onSuccess: async () => {
|
|
toast.success("Admin user created successfully!");
|
|
navigate("/download-recovery-key");
|
|
},
|
|
onError: (error) => {
|
|
console.error(error);
|
|
toast.error("Failed to create admin user", { description: error.message });
|
|
},
|
|
});
|
|
|
|
const onSubmit = (values: OnboardingFormValues) => {
|
|
if (values.password !== values.confirmPassword) {
|
|
form.setError("confirmPassword", {
|
|
type: "manual",
|
|
message: "Passwords do not match",
|
|
});
|
|
return;
|
|
}
|
|
|
|
registerUser.mutate({
|
|
body: {
|
|
username: values.username.trim(),
|
|
password: values.password.trim(),
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<AuthLayout title="Welcome to Ironmount" description="Create the admin user to get started">
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} type="text" placeholder="admin" disabled={registerUser.isPending} autoFocus />
|
|
</FormControl>
|
|
<FormDescription>Choose a username for the admin account</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
type="password"
|
|
placeholder="Enter a secure password"
|
|
disabled={registerUser.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>Password must be at least 8 characters long.</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="confirmPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Confirm Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
type="password"
|
|
placeholder="Re-enter your password"
|
|
disabled={registerUser.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Button type="submit" className="w-full" loading={registerUser.isPending}>
|
|
Create Admin User
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</AuthLayout>
|
|
);
|
|
}
|