mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-05-07 19:06:47 +02:00
122 lines
3.4 KiB
TypeScript
122 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { invoke } from "@tauri-apps/api/core";
|
|
import { useCallback, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { toast } from "sonner";
|
|
import { LoadingButton } from "@/components/loading-button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import type { ProfileGroup } from "@/types";
|
|
import { RippleButton } from "./ui/ripple";
|
|
|
|
interface CreateGroupDialogProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
onGroupCreated: (group: ProfileGroup) => void;
|
|
}
|
|
|
|
export function CreateGroupDialog({
|
|
isOpen,
|
|
onClose,
|
|
onGroupCreated,
|
|
}: CreateGroupDialogProps) {
|
|
const { t } = useTranslation();
|
|
const [groupName, setGroupName] = useState("");
|
|
const [isCreating, setIsCreating] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const handleCreate = useCallback(async () => {
|
|
if (!groupName.trim()) return;
|
|
|
|
setIsCreating(true);
|
|
setError(null);
|
|
try {
|
|
const newGroup = await invoke<ProfileGroup>("create_profile_group", {
|
|
name: groupName.trim(),
|
|
});
|
|
|
|
toast.success(t("groups.createSuccess"));
|
|
onGroupCreated(newGroup);
|
|
setGroupName("");
|
|
onClose();
|
|
} catch (err) {
|
|
console.error("Failed to create group:", err);
|
|
const errorMessage =
|
|
err instanceof Error ? err.message : t("groups.createFailed");
|
|
setError(errorMessage);
|
|
toast.error(errorMessage);
|
|
} finally {
|
|
setIsCreating(false);
|
|
}
|
|
}, [groupName, onGroupCreated, onClose, t]);
|
|
|
|
const handleClose = useCallback(() => {
|
|
setGroupName("");
|
|
setError(null);
|
|
onClose();
|
|
}, [onClose]);
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={handleClose}>
|
|
<DialogContent className="max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>{t("groups.createTitle")}</DialogTitle>
|
|
<DialogDescription>{t("groups.createDescription")}</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="group-name">{t("groups.form.name")}</Label>
|
|
<Input
|
|
id="group-name"
|
|
placeholder={t("groups.form.namePlaceholder")}
|
|
value={groupName}
|
|
onChange={(e) => {
|
|
setGroupName(e.target.value);
|
|
}}
|
|
onKeyDown={(e) => {
|
|
if (e.key === "Enter" && groupName.trim()) {
|
|
void handleCreate();
|
|
}
|
|
}}
|
|
disabled={isCreating}
|
|
/>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="p-3 text-sm text-destructive bg-destructive/10 rounded-md">
|
|
{error}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<RippleButton
|
|
variant="outline"
|
|
onClick={handleClose}
|
|
disabled={isCreating}
|
|
>
|
|
{t("common.buttons.cancel")}
|
|
</RippleButton>
|
|
<LoadingButton
|
|
isLoading={isCreating}
|
|
onClick={() => void handleCreate()}
|
|
disabled={!groupName.trim()}
|
|
>
|
|
{t("common.buttons.create")}
|
|
</LoadingButton>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|