Last active
October 31, 2022 20:50
-
-
Save diasjuniorr/f5089c8735c79dcb8fdf5573965ea86a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PericiaList = () => { | |
const navigate = useNavigate(); | |
const [isLoading, setIsLoading] = useState(true); | |
const [pericias, setPericias] = useState([] as PericiaWithCarAndCostumer[]); | |
const [periciasFiltered, setPericiasFiltered] = useState( | |
[] as PericiaWithCarAndCostumer[] | |
); | |
const periciasFilterContext = useContext( | |
PericiasFilterContext | |
) as PericiasFilterContextProps; | |
const { filter, setFilter } = periciasFilterContext; | |
const handleFilter = (e: ChangeEvent<HTMLInputElement>) => { | |
const { value } = e.target; | |
setFilter({ ...filter, term: value }); | |
}; | |
const handleDoneFilter = (e: ChangeEvent<HTMLInputElement>) => { | |
const { checked } = e.target; | |
setFilter({ ...filter, done: checked }); | |
}; | |
useEffect(() => { | |
const fetchPericias = async () => { | |
const res = await getPericias(); | |
if (res.error) { | |
console.log(res.error); | |
toast.error("Erro ao buscar perícias"); | |
return; | |
} | |
setPericias(res.data); | |
setPericiasFiltered(res.data); | |
setIsLoading(false); | |
}; | |
fetchPericias(); | |
}, []); | |
useEffect(() => { | |
const { term, done } = filter; | |
const filteredPericias = filterPericias(pericias, term, done); | |
setPericiasFiltered(filteredPericias); | |
}, [filter, pericias]); | |
return ( | |
<Container component="main" maxWidth="md"> | |
<Box | |
sx={{ | |
marginTop: 8, | |
display: "flex", | |
flexDirection: "column", | |
alignItems: "center", | |
minHeight: "72vh", | |
}} | |
> | |
<Typography component="h1" variant="h5" mb={5}> | |
Pericias Cadastradas | |
</Typography> | |
<Grid container spacing={2} mb={5}> | |
<Grid item xs={12} sm={12}> | |
<TextField | |
value={filter || ""} | |
fullWidth | |
id="filter" | |
label="Filtro" | |
name="filter" | |
variant="standard" | |
onChange={handleFilter} | |
/> | |
</Grid> | |
<Grid item xs={12} sm={12}> | |
<FormGroup sx={{ width: "100%" }}> | |
<FormControlLabel | |
control={<Checkbox onChange={handleDoneFilter} />} | |
label="Finalizadas" | |
/> | |
</FormGroup> | |
</Grid> | |
</Grid> | |
<List | |
sx={{ | |
width: "100%", | |
bgcolor: "background.paper", | |
}} | |
> | |
{isLoading | |
? skeletons.map((_, index) => ( | |
<Skeleton | |
key={index} | |
variant="rectangular" | |
height={40} | |
sx={{ mt: 2 }} | |
/> | |
)) | |
: periciasFiltered.map( | |
({ cars, costumers, done, id, finished, date }) => { | |
const labelId = `checkbox-list-label-${id}`; | |
const status = getStatus(done, finished); | |
return ( | |
<ListItem key={id} divider> | |
<ListItemButton | |
onClick={() => navigate(`/pericias/${id}`)} | |
role={undefined} | |
dense | |
sx={{ | |
display: "flex", | |
flexDirection: "row", | |
justifyContent: "space-between", | |
alignItems: "center", | |
textAlign: "center", | |
}} | |
> | |
<ListItemText | |
id={labelId} | |
primary={`${costumers.name}`} | |
sx={{ flex: "1", textAlign: "left" }} | |
/> | |
<ListItemText | |
id={labelId} | |
primary={`${cars.plate}`} | |
sx={{ flex: "1" }} | |
/> | |
<ListItemText | |
id={labelId} | |
primary={`${cars.model}`} | |
sx={{ flex: "1" }} | |
/> | |
<ListItemText | |
id={labelId} | |
primary={status.text} | |
sx={{ | |
color: status.color, | |
flex: "1", | |
}} | |
/> | |
<ListItemText | |
id={labelId} | |
primary={new Date(date).toLocaleDateString("pt-BR")} | |
sx={{ | |
flex: "1", | |
}} | |
/> | |
</ListItemButton> | |
</ListItem> | |
); | |
} | |
)} | |
{} | |
</List> | |
</Box> | |
<ToastContainer /> | |
</Container> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment