Newer
Older
import { useApiCreateRecipe, useApiGetDataServiceList } from "@/api/cubicweb";
import { DataService, Recipe } from "@/types";
import { LoadingButton } from "@mui/lab";
import {
Autocomplete,
Button,
Dialog,
DialogActions,
DialogContent,
DialogTitle,
Stack,
TextField,
} from "@mui/material";
import { useEffect, useState } from "react";
import { Controller, SubmitHandler, useForm } from "react-hook-form";
interface RecipeModalProps {
open: boolean;
onClose: () => void;
onSuccess: () => void;
export function RecipeModal({
projectEid,
open,
onClose,
onSuccess,
}: RecipeModalProps) {
const [data, setData] = useState<Array<DataService> | undefined>();
const [loading, setLoading] = useState<boolean>(true);
const [saving, setSaving] = useState(false);
const getDataServiceList = useApiGetDataServiceList();
const createRecipe = useApiCreateRecipe();
const { handleSubmit, control, reset } = useForm<Recipe>({
defaultValues: {
name: "",
process_type: "default",
},
});
useEffect(() => {
if (open) {
setLoading(true);
setTimeout(() => {
setLoading(false);
getDataServiceList().then((d) => setData(d));
const onSubmit: SubmitHandler<Recipe> = async (data) => {
setSaving(true);
console.log(data);
await createRecipe(projectEid, data);
onSuccess();
onClose();
setSaving(false);
return (
<Dialog
open={open}
onClose={() => {
if (!saving) {
onClose();
}
}}
PaperProps={{
component: "form",
onSubmit: handleSubmit(onSubmit),
}}
aria-labelledby="form-dialog-title"
aria-describedby="form-dialog-description"
fullWidth
>
<DialogTitle id="form-dialog-title">Création recette</DialogTitle>
<DialogContent>
<Stack paddingTop={1} spacing={2}>
<Controller
name="name"
control={control}
rules={{ required: true }}
render={({ field, fieldState: { error } }) => (
<TextField
label="Nom"
disabled={saving}
{...field}
error={error !== undefined}
helperText={
error?.type === "required" ? "Champ requis" : error?.message
}
/>
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<Controller
name="dataservice"
control={control}
rules={{ required: true }}
render={({ field, fieldState: { error } }) => (
<Autocomplete
disabled={saving}
{...field}
inputValue={data?.find((d) => d.eid === field.value)?.name}
onChange={(_, newValue) => field.onChange(newValue)}
options={data ? data.map((d) => d.eid) : []}
loading={loading}
renderInput={(params) => (
<TextField
{...params}
label="Data service"
error={error !== undefined}
helperText={
error?.type === "required"
? "Champ requis"
: error?.message
}
/>
)}
getOptionLabel={
data
? (option) => data.find((d) => d.eid === option)?.name ?? ""
: () => ""
}
/>
)}
/>
<Controller
name="graph_uri"
control={control}
rules={{ required: true }}
render={({ field, fieldState: { error } }) => (
<TextField
label="Graph Uri"
disabled={saving}
{...field}
error={error !== undefined}
helperText={
error?.type === "required" ? "Champ requis" : error?.message
}
/>
)}
/>
<Controller
name="process_type"
control={control}
rules={{ required: true }}
render={({ field, fieldState: { error } }) => (
<Autocomplete
disabled={saving}
{...field}
inputValue={field.value}
onChange={(_, newValue) => field.onChange(newValue)}
options={["default", "default-dryrun"]}
renderInput={(params) => (
<TextField
{...params}
label="Process type"
error={error !== undefined}
helperText={
error?.type === "required"
? "Champ requis"
: error?.message
}
/>
)}
/>
)}
/>
</Stack>
</DialogContent>
<DialogActions>
<Button onClick={onClose} disabled={saving}>
Annuler
</Button>
<LoadingButton type="submit" loading={saving}>
Valider
</LoadingButton>
</DialogActions>
</Dialog>
);
}