Skip to content
Snippets Groups Projects
Commit 09227a84fcdd authored by Arnaud Vergnet's avatar Arnaud Vergnet :sun_with_face:
Browse files

feat(frontend): add recipe creation form modal

parent 809edabc2731
No related branches found
No related tags found
1 merge request!9Améliorations frontend
Pipeline #222951 passed
...@@ -10,5 +10,12 @@ ...@@ -10,5 +10,12 @@
import { RecipeCard } from "@/components/cards/RecetteCard"; import { RecipeCard } from "@/components/cards/RecetteCard";
import { IMPORT_PROCESSES, PROJECT, RECIPES } from "@/constants/constants"; import { IMPORT_PROCESSES, PROJECT, RECIPES } from "@/constants/constants";
import { useLoad } from "@/hooks/useLoad"; import { useLoad } from "@/hooks/useLoad";
import { Box, Container, Stack, Typography } from "@mui/material"; import {
Box,
Button,
Container,
Divider,
Stack,
Typography,
} from "@mui/material";
import { useState } from "react"; import { useState } from "react";
...@@ -14,4 +21,6 @@ ...@@ -14,4 +21,6 @@
import { useState } from "react"; import { useState } from "react";
import AddIcon from "@mui/icons-material/Add";
import { RecipeModal } from "@/components/RecipeModal";
export default function Project({ export default function Project({
params: _params, params: _params,
...@@ -27,6 +36,7 @@ ...@@ -27,6 +36,7 @@
text?: string; text?: string;
eid?: number; eid?: number;
}>({ visible: false }); }>({ visible: false });
const [recipeModalOpen, setRecipeModalOpen] = useState(false);
if (loading) { if (loading) {
return <LoadingScreen />; return <LoadingScreen />;
...@@ -45,11 +55,24 @@ ...@@ -45,11 +55,24 @@
<Box width={"80%"} minWidth={300}> <Box width={"80%"} minWidth={300}>
<ProjectForm project={data} /> <ProjectForm project={data} />
</Box> </Box>
<Stack width="100%"> <Divider sx={{ width: "100%" }} />
<Typography variant="h4">Recettes</Typography> <Stack width="100%" direction={"row"} alignItems={"center"}>
<Typography> <Box flex={1}>
Cliquez sur une recette pour filtrer les import process <Stack>
</Typography> <Typography variant="h4">Recettes</Typography>
<Typography>
Cliquez sur une recette pour filtrer les import process
</Typography>
</Stack>
</Box>
<Box>
<Button
startIcon={<AddIcon />}
onClick={() => setRecipeModalOpen(true)}
>
Ajouter
</Button>
</Box>
</Stack> </Stack>
<CardList loading={false} emptyText="Aucune recette"> <CardList loading={false} emptyText="Aucune recette">
{RECIPES.map((d, i) => ( {RECIPES.map((d, i) => (
...@@ -88,6 +111,10 @@ ...@@ -88,6 +111,10 @@
}); });
}} }}
/> />
<RecipeModal
open={recipeModalOpen}
onClose={() => setRecipeModalOpen(false)}
/>
</Container> </Container>
); );
} }
import { DATA_SERVICES } from "@/constants/constants";
import { DataService } from "@/types";
import {
Autocomplete,
Button,
Dialog,
DialogActions,
DialogContent,
DialogTitle,
Stack,
TextField,
} from "@mui/material";
import { useEffect, useState } from "react";
interface RecipeModalProps {
open: boolean;
onClose: () => void;
}
export function RecipeModal({ open, onClose }: RecipeModalProps) {
const [data, setData] = useState<Array<DataService> | undefined>();
const [loading, setLoading] = useState<boolean>(true);
const [saving, setSaving] = useState(false);
useEffect(() => {
if (open) {
setLoading(true);
setTimeout(() => {
setLoading(false);
setData(DATA_SERVICES);
}, 1000);
} else {
setData(undefined);
}
}, [open]);
async function onSubmit(event: React.FormEvent<HTMLFormElement>) {
event.preventDefault();
// TODO send data
onClose();
setSaving(false);
}
return (
<Dialog
open={open}
onClose={() => {
if (!saving) {
onClose();
}
}}
PaperProps={{
component: "form",
onSubmit: 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}>
<Autocomplete
options={data ?? []}
loading={loading}
renderInput={(params) => (
<TextField {...params} label="Data service" />
)}
getOptionLabel={(option) => option.name}
/>
<Autocomplete
options={[{ label: "default" }, { label: "default-dry-run" }]}
renderInput={(params) => (
<TextField {...params} label="Process type" />
)}
/>
</Stack>
</DialogContent>
<DialogActions>
<Button onClick={onClose}>Annuler</Button>
<Button type="submit">Valider</Button>
</DialogActions>
</Dialog>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment