mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 07:13:06 +08:00
60848ea903
* feat: MCP * sync * sync
123 lines
3.3 KiB
TypeScript
123 lines
3.3 KiB
TypeScript
import * as React from "react";
|
|
import { z } from "zod/v4";
|
|
import { useForm } from "@mantine/form";
|
|
import { zod4Resolver } from "mantine-form-zod-resolver";
|
|
import {
|
|
Container,
|
|
Title,
|
|
TextInput,
|
|
Button,
|
|
PasswordInput,
|
|
Box,
|
|
Anchor,
|
|
Text,
|
|
} from "@mantine/core";
|
|
import useAuth from "@/features/auth/hooks/use-auth";
|
|
import classes from "@/features/auth/components/auth.module.css";
|
|
import { useTranslation } from "react-i18next";
|
|
import SsoCloudSignup from "@/ee/components/sso-cloud-signup.tsx";
|
|
import { isCloud } from "@/lib/config.ts";
|
|
import { Link } from "react-router-dom";
|
|
import APP_ROUTE from "@/lib/app-route.ts";
|
|
|
|
const formSchema = z.object({
|
|
workspaceName: z.string().trim().max(50).optional(),
|
|
name: z.string().min(1).max(50),
|
|
email: z
|
|
.email()
|
|
.min(1, { message: "email is required" }),
|
|
password: z.string().min(8),
|
|
});
|
|
type FormValues = z.infer<typeof formSchema>;
|
|
|
|
export function SetupWorkspaceForm() {
|
|
const { t } = useTranslation();
|
|
const { setupWorkspace, isLoading } = useAuth();
|
|
// useRedirectIfAuthenticated();
|
|
|
|
const form = useForm<FormValues>({
|
|
validate: zod4Resolver(formSchema),
|
|
initialValues: {
|
|
workspaceName: "",
|
|
name: "",
|
|
email: "",
|
|
password: "",
|
|
},
|
|
});
|
|
|
|
async function onSubmit(data: FormValues) {
|
|
await setupWorkspace(data);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<Container size={420} className={classes.container}>
|
|
<Box p="xl" className={classes.containerBox}>
|
|
<Title order={2} ta="center" fw={500} mb="md">
|
|
{t("Create workspace")}
|
|
</Title>
|
|
|
|
{isCloud() && <SsoCloudSignup />}
|
|
|
|
<form onSubmit={form.onSubmit(onSubmit)}>
|
|
{!isCloud() && (
|
|
<TextInput
|
|
id="workspaceName"
|
|
type="text"
|
|
label={t("Workspace Name")}
|
|
placeholder={t("e.g ACME Inc")}
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("workspaceName")}
|
|
/>
|
|
)}
|
|
|
|
<TextInput
|
|
id="name"
|
|
type="text"
|
|
label={t("Your Name")}
|
|
placeholder={t("enter your full name")}
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("name")}
|
|
/>
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
label={t("Your Email")}
|
|
placeholder="email@example.com"
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("email")}
|
|
/>
|
|
|
|
<PasswordInput
|
|
label={t("Password")}
|
|
placeholder={t("Enter a strong password")}
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("password")}
|
|
/>
|
|
<Button type="submit" fullWidth mt="xl" loading={isLoading}>
|
|
{t("Create workspace")}
|
|
</Button>
|
|
</form>
|
|
</Box>
|
|
</Container>
|
|
{isCloud() && (
|
|
<Text ta="center">
|
|
{t("Already part of an existing workspace?")}{" "}
|
|
<Anchor
|
|
component={Link}
|
|
to={APP_ROUTE.AUTH.SELECT_WORKSPACE}
|
|
fw={500}
|
|
>
|
|
{t("Sign-in")}
|
|
</Anchor>
|
|
</Text>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|