mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 06:15:43 +03:00
* use mobilepage with create trigger dialog * use mobilepage with create user dialog * use mobilepage with create role dialog
314 lines
10 KiB
TypeScript
314 lines
10 KiB
TypeScript
import { Button } from "../ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "../ui/form";
|
|
import { Input } from "../ui/input";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
import ActivityIndicator from "../indicators/activity-indicator";
|
|
import { useEffect, useState } from "react";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "../ui/dialog";
|
|
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "../ui/select";
|
|
import { Shield, User } from "lucide-react";
|
|
import { LuCheck, LuX } from "react-icons/lu";
|
|
import { useTranslation } from "react-i18next";
|
|
import { isDesktop, isMobile } from "react-device-detect";
|
|
import { cn } from "@/lib/utils";
|
|
import {
|
|
MobilePage,
|
|
MobilePageContent,
|
|
MobilePageDescription,
|
|
MobilePageHeader,
|
|
MobilePageTitle,
|
|
} from "../mobile/MobilePage";
|
|
|
|
type CreateUserOverlayProps = {
|
|
show: boolean;
|
|
onCreate: (user: string, password: string, role: string) => void;
|
|
onCancel: () => void;
|
|
};
|
|
|
|
export default function CreateUserDialog({
|
|
show,
|
|
onCreate,
|
|
onCancel,
|
|
}: CreateUserOverlayProps) {
|
|
const { t } = useTranslation(["views/settings"]);
|
|
const [isLoading, setIsLoading] = useState<boolean>(false);
|
|
|
|
const formSchema = z
|
|
.object({
|
|
user: z
|
|
.string()
|
|
.min(1, t("users.dialog.form.usernameIsRequired"))
|
|
.regex(/^[A-Za-z0-9._]+$/, {
|
|
message: t("users.dialog.createUser.usernameOnlyInclude"),
|
|
}),
|
|
password: z.string().min(1, t("users.dialog.form.passwordIsRequired")),
|
|
confirmPassword: z
|
|
.string()
|
|
.min(1, t("users.dialog.createUser.confirmPassword")),
|
|
role: z.enum(["admin", "viewer"]),
|
|
})
|
|
.refine((data) => data.password === data.confirmPassword, {
|
|
message: t("users.dialog.form.password.notMatch"),
|
|
path: ["confirmPassword"],
|
|
});
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
mode: "onChange",
|
|
defaultValues: {
|
|
user: "",
|
|
password: "",
|
|
confirmPassword: "",
|
|
role: "viewer",
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (values: z.infer<typeof formSchema>) => {
|
|
setIsLoading(true);
|
|
await onCreate(values.user, values.password, values.role);
|
|
form.reset();
|
|
setIsLoading(false);
|
|
};
|
|
|
|
// Check if passwords match for real-time feedback
|
|
const password = form.watch("password");
|
|
const confirmPassword = form.watch("confirmPassword");
|
|
const passwordsMatch = password === confirmPassword;
|
|
const showMatchIndicator = password && confirmPassword;
|
|
|
|
useEffect(() => {
|
|
if (!show) {
|
|
form.reset({
|
|
user: "",
|
|
password: "",
|
|
role: "viewer",
|
|
});
|
|
}
|
|
}, [show, form]);
|
|
|
|
const handleCancel = () => {
|
|
form.reset({
|
|
user: "",
|
|
password: "",
|
|
role: "viewer",
|
|
});
|
|
onCancel();
|
|
};
|
|
|
|
const Overlay = isDesktop ? Dialog : MobilePage;
|
|
const Content = isDesktop ? DialogContent : MobilePageContent;
|
|
const Header = isDesktop ? DialogHeader : MobilePageHeader;
|
|
const Description = isDesktop ? DialogDescription : MobilePageDescription;
|
|
const Title = isDesktop ? DialogTitle : MobilePageTitle;
|
|
|
|
return (
|
|
<Overlay open={show} onOpenChange={onCancel}>
|
|
<Content
|
|
className={cn(
|
|
"scrollbar-container overflow-y-auto",
|
|
isDesktop && "my-4 flex max-h-dvh flex-col sm:max-w-[425px]",
|
|
isMobile && "px-4",
|
|
)}
|
|
>
|
|
<Header className="mt-2" onClose={onCancel}>
|
|
<Title>{t("users.dialog.createUser.title")}</Title>
|
|
<Description className={cn(!isDesktop && "sr-only")}>
|
|
{t("users.dialog.createUser.desc")}
|
|
</Description>
|
|
</Header>
|
|
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="space-y-5 pt-4"
|
|
>
|
|
<FormField
|
|
name="user"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-sm font-medium">
|
|
{t("users.dialog.form.user.title")}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder={t("users.dialog.form.user.placeholder")}
|
|
className="h-10"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription className="text-xs text-muted-foreground">
|
|
{t("users.dialog.form.user.desc")}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-sm font-medium">
|
|
{t("users.dialog.form.password.title")}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder={t("users.dialog.form.password.placeholder")}
|
|
type="password"
|
|
className="h-10"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="confirmPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-sm font-medium">
|
|
{t("users.dialog.form.password.confirm.title")}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder={t(
|
|
"users.dialog.form.password.confirm.placeholder",
|
|
)}
|
|
type="password"
|
|
className="h-10"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
{showMatchIndicator && (
|
|
<div className="mt-1 flex items-center gap-1.5 text-xs">
|
|
{passwordsMatch ? (
|
|
<>
|
|
<LuCheck className="size-3.5 text-green-500" />
|
|
<span className="text-green-600">
|
|
{t("users.dialog.form.password.match")}
|
|
</span>
|
|
</>
|
|
) : (
|
|
<>
|
|
<LuX className="size-3.5 text-red-500" />
|
|
<span className="text-red-600">
|
|
{t("users.dialog.form.password.notMatch")}
|
|
</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
)}
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="role"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-sm font-medium">
|
|
{t("role.title", { ns: "common" })}
|
|
</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
>
|
|
<FormControl>
|
|
<SelectTrigger className="h-10">
|
|
<SelectValue placeholder="Select a role" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
<SelectItem
|
|
value="admin"
|
|
className="flex items-center gap-2"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<Shield className="h-4 w-4 text-primary" />
|
|
<span>{t("role.admin", { ns: "common" })}</span>
|
|
</div>
|
|
</SelectItem>
|
|
<SelectItem
|
|
value="viewer"
|
|
className="flex items-center gap-2"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<User className="h-4 w-4 text-muted-foreground" />
|
|
<span>{t("role.viewer", { ns: "common" })}</span>
|
|
</div>
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormDescription className="text-xs text-muted-foreground">
|
|
{t("role.desc", { ns: "common" })}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<DialogFooter className="flex gap-2 pt-2 sm:justify-end">
|
|
<div className="flex flex-1 flex-col justify-end">
|
|
<div className="flex flex-row gap-2 pt-5">
|
|
<Button
|
|
className="flex flex-1"
|
|
aria-label={t("button.cancel", { ns: "common" })}
|
|
disabled={isLoading}
|
|
onClick={handleCancel}
|
|
type="button"
|
|
>
|
|
{t("button.cancel", { ns: "common" })}
|
|
</Button>
|
|
<Button
|
|
variant="select"
|
|
aria-label={t("button.save", { ns: "common" })}
|
|
disabled={isLoading || !form.formState.isValid}
|
|
className="flex flex-1"
|
|
type="submit"
|
|
>
|
|
{isLoading ? (
|
|
<div className="flex flex-row items-center gap-2">
|
|
<ActivityIndicator />
|
|
<span>{t("button.saving", { ns: "common" })}</span>
|
|
</div>
|
|
) : (
|
|
t("button.save", { ns: "common" })
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</Content>
|
|
</Overlay>
|
|
);
|
|
}
|