mirror of
https://github.com/docmost/docmost.git
synced 2026-05-15 05:04:06 +08:00
93 lines
2.7 KiB
TypeScript
93 lines
2.7 KiB
TypeScript
import React from "react";
|
|
import { z } from "zod";
|
|
import { useForm } from "@mantine/form";
|
|
import { zodResolver } from "mantine-form-zod-resolver";
|
|
import { Box, Button, Group, Stack, Switch, TextInput } from "@mantine/core";
|
|
import classes from "@/ee/security/components/sso.module.css";
|
|
import { IAuthProvider } from "@/ee/security/types/security.types.ts";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useUpdateSsoProviderMutation } from "@/ee/security/queries/security-query.ts";
|
|
|
|
const ssoSchema = z.object({
|
|
name: z.string().min(1, "Provider name is required"),
|
|
isEnabled: z.boolean(),
|
|
allowSignup: z.boolean(),
|
|
});
|
|
|
|
type SSOFormValues = z.infer<typeof ssoSchema>;
|
|
|
|
interface SsoFormProps {
|
|
provider: IAuthProvider;
|
|
onClose?: () => void;
|
|
}
|
|
export function SsoGoogleForm({ provider, onClose }: SsoFormProps) {
|
|
const { t } = useTranslation();
|
|
const updateSsoProviderMutation = useUpdateSsoProviderMutation();
|
|
|
|
const form = useForm<SSOFormValues>({
|
|
initialValues: {
|
|
name: provider.name || "",
|
|
isEnabled: provider.isEnabled,
|
|
allowSignup: provider.allowSignup,
|
|
},
|
|
validate: zodResolver(ssoSchema),
|
|
});
|
|
|
|
const handleSubmit = async (values: SSOFormValues) => {
|
|
const ssoData: Partial<IAuthProvider> = {
|
|
providerId: provider.id,
|
|
};
|
|
if (form.isDirty("name")) {
|
|
ssoData.name = values.name;
|
|
}
|
|
if (form.isDirty("isEnabled")) {
|
|
ssoData.isEnabled = values.isEnabled;
|
|
}
|
|
if (form.isDirty("allowSignup")) {
|
|
ssoData.allowSignup = values.allowSignup;
|
|
}
|
|
|
|
await updateSsoProviderMutation.mutateAsync(ssoData);
|
|
form.resetDirty();
|
|
onClose();
|
|
};
|
|
|
|
return (
|
|
<Box maw={600} mx="auto">
|
|
<form onSubmit={form.onSubmit(handleSubmit)}>
|
|
<Stack>
|
|
<TextInput
|
|
label="Display name"
|
|
placeholder="e.g Okta SSO"
|
|
readOnly
|
|
{...form.getInputProps("name")}
|
|
/>
|
|
<Group justify="space-between">
|
|
<div>{t("Allow signup")}</div>
|
|
<Switch
|
|
className={classes.switch}
|
|
checked={form.values.allowSignup}
|
|
{...form.getInputProps("allowSignup")}
|
|
/>
|
|
</Group>
|
|
|
|
<Group justify="space-between">
|
|
<div>{t("Enabled")}</div>
|
|
<Switch
|
|
className={classes.switch}
|
|
checked={form.values.isEnabled}
|
|
{...form.getInputProps("isEnabled")}
|
|
/>
|
|
</Group>
|
|
|
|
<Group mt="md" justify="flex-end">
|
|
<Button type="submit" disabled={!form.isDirty()}>
|
|
{t("Save")}
|
|
</Button>
|
|
</Group>
|
|
</Stack>
|
|
</form>
|
|
</Box>
|
|
);
|
|
}
|