Category.js 2.8 KB

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