mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
|
import { Button } from "../ui/button";
|
||
|
import { Input } from "../ui/input";
|
||
|
import { useState } from "react";
|
||
|
import {
|
||
|
Dialog,
|
||
|
DialogContent,
|
||
|
DialogFooter,
|
||
|
DialogHeader,
|
||
|
DialogTitle,
|
||
|
} from "../ui/dialog";
|
||
|
|
||
|
type SetPasswordProps = {
|
||
|
show: boolean;
|
||
|
onSave: (password: string) => void;
|
||
|
onCancel: () => void;
|
||
|
};
|
||
|
export default function SetPasswordDialog({
|
||
|
show,
|
||
|
onSave,
|
||
|
onCancel,
|
||
|
}: SetPasswordProps) {
|
||
|
const [password, setPassword] = useState<string>();
|
||
|
|
||
|
return (
|
||
|
<Dialog open={show} onOpenChange={onCancel}>
|
||
|
<DialogContent>
|
||
|
<DialogHeader>
|
||
|
<DialogTitle>Set Password</DialogTitle>
|
||
|
</DialogHeader>
|
||
|
<Input
|
||
|
className="w-full border border-input bg-background p-2 hover:bg-accent hover:text-accent-foreground dark:[color-scheme:dark]"
|
||
|
type="password"
|
||
|
value={password}
|
||
|
onChange={(event) => setPassword(event.target.value)}
|
||
|
/>
|
||
|
<DialogFooter>
|
||
|
<Button
|
||
|
className="flex items-center gap-1"
|
||
|
variant="select"
|
||
|
size="sm"
|
||
|
onClick={() => {
|
||
|
onSave(password!);
|
||
|
}}
|
||
|
>
|
||
|
Save
|
||
|
</Button>
|
||
|
</DialogFooter>
|
||
|
</DialogContent>
|
||
|
</Dialog>
|
||
|
);
|
||
|
}
|