| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- import { Box, Button, Grid, Paper, Typography } from '@mui/material';
- import { useTranslation } from 'next-i18next';
- import { useRouter } from 'next/router';
- import { useState } from 'react';
- import { SINGLE_DATA_PAGE } from '../../../constants/pages';
- import useDebounce from '../../../hooks/use-debounce';
- import { usePagination } from '../../../hooks/use-pagination';
- import { compare } from '../../../utils/helpers/sortHelpers';
- import DataCard from '../../cards/data-card/DataCard';
- import FilterSortComponent from '../filter-sort/FilterSortComponent';
-
- const PaginationComponentRQ = () => {
- const [pageIndex, setPageIndex] = useState(1);
- const [filter, setFilter] = useState('');
- const [sort, setSort] = useState('');
- const { t } = useTranslation('pagination');
- const { data: paginationData } = usePagination(pageIndex);
- const router = useRouter();
- const debouncedFilter = useDebounce(filter, 500);
-
- const handleFilterChange = (event) => {
- const filterText = event.target.value;
- setFilter(filterText);
- };
-
- const handleSortChange = (event) => {
- const sort = event.target.value;
- setSort(sort);
- };
-
- const loadSingleDataHandler = (id) => {
- router.push(`${SINGLE_DATA_PAGE}${id}`);
- };
-
- const dataToDisplay = paginationData?.data
- .filter((item) =>
- item.name.toLowerCase().startsWith(debouncedFilter.toLowerCase())
- )
- .sort((a, b) => compare(a.name, b.name, sort))
- .map((item, index) => (
- // ! DON'T USE index for key, this is for example only
- <Grid
- item
- sx={{ p: 2 }}
- xs={12}
- sm={6}
- md={4}
- lg={3}
- key={index}
- onClick={loadSingleDataHandler.bind(null, item.customID)}
- >
- <DataCard data={item} t={t} />
- </Grid>
- ));
-
- return (
- <Paper
- sx={{
- display: 'flex',
- flexDirection: 'column',
- justifyContent: 'start',
- py: 2,
- minHeight: 400,
- marginTop: 5,
- }}
- elevation={5}
- >
- <Typography sx={{ my: 4 }} variant="h4" gutterBottom align="center">
- {t('Title')}
- </Typography>
- <Box
- sx={{
- display: 'flex',
- justifyContent: 'space-between',
- flexWrap: 'wrap',
- mx: 2,
- }}
- >
- <Box
- sx={{
- display: 'flex',
- justifyContent: 'space-between',
- width: '100%',
- }}
- >
- <FilterSortComponent
- sort={sort}
- handleSortChange={handleSortChange}
- filter={filter}
- handleFilterChange={handleFilterChange}
- />
- </Box>
- </Box>
- <Grid container>{dataToDisplay}</Grid>
- <Box
- sx={{
- width: '100%',
- textAlign: 'center',
- marginTop: 3,
- }}
- >
- <Button
- disabled={pageIndex === 1}
- onClick={() => setPageIndex(pageIndex - 1)}
- sx={{
- marginRight: 5,
- }}
- >
- {t('Btns.PrevBtn')}
- </Button>
- <Button
- disabled={pageIndex * 4 > paginationData?.dataCount}
- onClick={() => setPageIndex(pageIndex + 1)}
- sx={{
- marginRight: 5,
- }}
- >
- {t('Btns.NextBtn')}
- </Button>
- </Box>
- </Paper>
- );
- };
-
- export default PaginationComponentRQ;
|