| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { Button, Container, Grid } from '@mui/material';
- import { Box } from '@mui/system';
- import Image from 'next/image';
- import ProductCard from '../product-card/ProductCard';
-
- const ProductsGrid = ({ allProducts, hasNextPage, fetchNextPage }) => {
- // const allItems = useMemo(
- // () => allProducts?.pages?.flatMap((page) => page.product),
- // [allProducts]
- // );
-
- const dataToDisplay = allProducts.pages.map((page) =>
- page.product.map((item) => (
- <Grid key={item._id} item md={4} sm={6} xs={12} sx={{ mb: '100px' }}>
- <ProductCard product={item} />
- </Grid>
- ))
- );
-
- // const dataToDisplay = allProducts.map((item) => (
- // <Grid key={item._id} item md={4} sm={6} xs={12} sx={{ mb: '100px' }}>
- // <ProductCard product={item} />
- // </Grid>
- // ));
-
- return (
- <Container
- sx={{
- mt: 10,
- }}
- >
- <Grid container spacing={2}>
- {dataToDisplay}
- </Grid>
- <Box textAlign="center" mt={-5} mb={5}>
- {hasNextPage && (
- <Button
- onClick={fetchNextPage}
- startIcon={
- <Image
- src="/images/arrow.svg"
- alt="arrow down"
- width={29}
- height={29}
- />
- }
- sx={{
- backgroundColor: 'primary.main',
- height: 50,
- width: 150,
- color: 'white',
- ':hover': {
- bgcolor: 'primary.main', // theme.palette.primary.main
- color: 'white',
- },
- }}
- >
- Load More
- </Button>
- )}
- </Box>
- </Container>
- );
- };
-
- export default ProductsGrid;
|