import React from "react"; import { TextInputDialog } from "./TextInputDialog"; import { ServerApi } from "../api/ServerApi"; import { FamilyApi } from "../api/FamilyApi"; import { useAlert } from "../hooks/context_providers/AlertDialogProvider"; export function CreateFamilyDialog(p: { open: boolean; onClose: () => void; onCreated: () => void; }): React.ReactElement { const [name, setName] = React.useState(""); const [creating, setCreating] = React.useState(false); const [error, setError] = React.useState(false); const alert = useAlert(); const cancel = () => { setName(""); setCreating(false); setError(false); p.onClose(); }; const createFamily = async () => { setCreating(true); try { await FamilyApi.CreateFamily(name); setName(""); p.onCreated(); await alert("La famille a été créée avec succès !"); } catch (e) { console.error(e); setError(true); } setCreating(false); }; return ( ); }