import { useSWRConfig } from "swr"; import { useLockFn, useSetState } from "ahooks"; import { Button, Dialog, DialogActions, DialogContent, DialogTitle, FormControl, InputLabel, MenuItem, Select, TextField, } from "@mui/material"; import { createProfile } from "../../services/cmds"; import Notice from "../base/base-notice"; interface Props { open: boolean; onClose: () => void; } // create a new profile // remote / local file / merge / script const ProfileNew = (props: Props) => { const { open, onClose } = props; const { mutate } = useSWRConfig(); const [form, setForm] = useSetState({ name: "", desc: "", type: "remote", url: "", }); const onCreate = useLockFn(async () => { if (!form.type) { Notice.error("`Type` should not be null"); return; } try { const name = form.name || `${form.type} file`; if (form.type === "remote" && !form.url) { throw new Error("Remote URL should not be null"); } await createProfile({ ...form, name }); setForm({ name: "", desc: "", type: "remote", url: "" }); mutate("getProfiles"); onClose(); } catch (err: any) { Notice.error(err.message || err.toString()); } }); const textFieldProps = { fullWidth: true, size: "small", margin: "normal", variant: "outlined", } as const; return ( Create Profile setForm({ name: e.target.value })} /> Type setForm({ desc: e.target.value })} /> {form.type === "remote" && ( setForm({ url: e.target.value })} /> )} ); }; export default ProfileNew;