Category.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import { List, ListItem, ListItemButton, ListItemText, Breadcrumbs } from "@mui/material"
  2. import { Typography } from "@mui/material"
  3. import { Box, Container } from "@mui/system"
  4. import { useEffect } from "react"
  5. import { connect } from "react-redux"
  6. import { useParams } from "react-router-dom"
  7. import { MyLink } from "."
  8. import { actionCategoryFindOne } from "../reducers"
  9. import { GoodsList } from "./GoodsList"
  10. import { CatsList } from "./RootCats"
  11. const CSubCategories = connect(state => ({ cats: state.category.catFindOne?.payload?.subCategories }),
  12. { loadData: actionCategoryFindOne })(CatsList);
  13. const Category = (props) => {
  14. let { loadData, cat = { name: 'loading', goods: [] } } = props;
  15. const { _id } = useParams();
  16. useEffect(() => {
  17. loadData(_id)
  18. }, [_id, loadData]);
  19. let csubCats = false;
  20. return (
  21. <>
  22. <Container>
  23. <Box>
  24. <Breadcrumbs aria-label="breadcrumb">
  25. <MyLink underline="hover" color="inherit" to="/">
  26. Home
  27. </MyLink>
  28. {cat.parent?._id && (
  29. <MyLink
  30. underline="hover"
  31. color="inherit"
  32. to={`/category/${cat.parent?._id}`}
  33. >
  34. {cat.parent?.name}
  35. </MyLink>
  36. )}
  37. <Typography color="text.primary">{cat.name}</Typography>
  38. </Breadcrumbs>
  39. <Typography paragraph gutterBottom component={'h3'} variant={'h3'}>
  40. {cat.name}
  41. </Typography>
  42. {csubCats && <CSubCategories />}
  43. {!csubCats && cat.subCategories?.length > 0 && (
  44. <List>
  45. {cat.subCategories.map(scat => (
  46. <ListItem key={scat._id} disablePadding>
  47. <ListItemButton>
  48. <MyLink to={`/category/${scat._id}`}>
  49. <ListItemText primary={scat.name} />
  50. </MyLink>
  51. </ListItemButton>
  52. </ListItem>
  53. ))}
  54. </List>
  55. )
  56. }
  57. <GoodsList goods={cat.goods} />
  58. </Box>
  59. </Container>
  60. </>
  61. )
  62. }
  63. const CCategory = connect(state => ({ cat: state.category.catFindOne?.payload }),
  64. { loadData: actionCategoryFindOne })(Category);
  65. export { CCategory };