GoodsList.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import React, { useEffect } from 'react';
  2. import { Container, Box } from '@mui/material';
  3. import { CGoodItem } from './GoodItem';
  4. import { connect } from 'react-redux';
  5. import { actionGoodFind, actionGoodsCount } from '../reducers';
  6. import { CGoodsSearchInput } from './SearchInput';
  7. import { CGoodsPagination } from './Pagination';
  8. import { getCurrentCategory } from '../reducers/categoryReducer';
  9. const GoodsList = ({ goods, searchStr, fromPage = 0, pageSize = 5, loadData, loadGoodsCount, currentCategory }) => {
  10. useEffect(() => {
  11. let categoryFilter = currentCategory ? { "categories._id": currentCategory._id } : {};
  12. loadData(fromPage, pageSize, searchStr, categoryFilter);
  13. loadGoodsCount(searchStr, categoryFilter);
  14. }, [fromPage, pageSize, searchStr, currentCategory]);
  15. return (
  16. <Container maxWidth='lg'>
  17. <CGoodsSearchInput />
  18. <Box sx={{ display: 'flex', flexWrap: 'wrap' }}>
  19. {
  20. goods?.map(good => {
  21. return (
  22. <CGoodItem key={good._id} good={good} maxWidth='xs' />
  23. )
  24. })}
  25. </Box>
  26. <CGoodsPagination />
  27. </Container>
  28. )
  29. }
  30. const CGoodsList = connect(
  31. state => {
  32. return (
  33. {
  34. currentCategory: getCurrentCategory(state),
  35. goods: state.goods?.goods?.payload,
  36. searchStr: state.frontend.goodsSearchStr,
  37. fromPage: state.frontend.goodsPaging.fromPage,
  38. pageSize: state.frontend.goodsPaging.pageSize,
  39. })
  40. },
  41. { loadData: actionGoodFind, loadGoodsCount: actionGoodsCount })(GoodsList);
  42. export { CGoodsList };