Good.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. import React, { useState } from 'react';
  2. import Button from '@mui/material/Button';
  3. import { styled } from '@mui/material/styles';
  4. import { Container, Typography, Grid, CardActionArea, Card, CardContent, CardMedia, AvatarGroup, CardActions, Collapse, IconButton } from '@mui/material';
  5. import { getFullImageUrl } from "./../utills";
  6. import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
  7. import { AvatarAnimated } from './AvatarAnimated';
  8. import { actionAddGoodToCart } from '../reducers';
  9. import { connect, useDispatch } from 'react-redux';
  10. import { useGetGoodByIdQuery } from '../reducers';
  11. import { useParams } from 'react-router-dom';
  12. import { actionSetCurrentGood } from '../reducers/frontEndReducer';
  13. export const ExpandMore = styled(props => {
  14. const { expand, ...other } = props;
  15. return <IconButton {...other} />;
  16. })(({ theme, expand }) => ({
  17. transform: !expand ? 'rotate(0deg)' : 'rotate(180deg)',
  18. marginLeft: 'auto',
  19. transition: theme.transitions.create('transform', { duration: theme.transitions.duration.shortest })
  20. }))
  21. export const AvatarGroupOriented = styled((props) => {
  22. const { vertical, ...other } = props;
  23. return <AvatarGroup {...other} />;
  24. })(({ theme, vertical }) => (vertical && {
  25. display: 'flex',
  26. flexDirection: 'column',
  27. marginLeft: 10,
  28. '& >:first-child': {
  29. marginTop: 10,
  30. },
  31. '& >*': {
  32. marginLeft: 1,
  33. marginTop: theme.spacing(1),
  34. },
  35. ".MuiAvatar-root": { /*width: 20, height: 20,*/ marginLeft: 1 }
  36. }));
  37. const Good = ({ /*good = {},*/ maxWidth = 'md', showAddToCard = true, addToCart = undefined }) => {
  38. const { _id } = useParams();
  39. const { isLoading, data } = useGetGoodByIdQuery(_id);
  40. let good = isLoading ? { name: 'loading', goods: [] } : data?.GoodFindOne;
  41. const dispatch = useDispatch();
  42. dispatch(actionSetCurrentGood(_id));
  43. let [currentImageIndex, setCurrentImageIndex] = useState(0);
  44. let [expanded, setExpanded] = useState(false);
  45. const handleExpandClick = () => setExpanded(!expanded);
  46. return good && (
  47. <Container maxWidth={maxWidth}>
  48. <Card variant='outlined'>
  49. <Grid container spacing={maxWidth === 'xs' ? 7 : 5}>
  50. <Grid item xs={1}>
  51. <AvatarGroupOriented variant='rounded' vertical>
  52. {
  53. good.images?.map((image, index) => (
  54. <AvatarAnimated selected={index === currentImageIndex} variant='rounded' key={index} src={getFullImageUrl(image)}
  55. onClick={() => {
  56. setCurrentImageIndex(index)
  57. }} />
  58. ))
  59. }
  60. </AvatarGroupOriented>
  61. </Grid>
  62. <Grid item xs>
  63. <CardActionArea>
  64. <Grid container spacing={2}>
  65. <Grid item xs={4}>
  66. <CardMedia
  67. component="img"
  68. sx={{ height: 300, padding: "1em 1em 0 1em", objectFit: "contain" }}
  69. image={good.images?.length > 0 ? getFullImageUrl(good.images[currentImageIndex]) : ''}
  70. title={good.name}
  71. />
  72. </Grid>
  73. <Grid item xs={8}>
  74. <CardContent>
  75. <Typography gutterBottom variant='h5' component='h2'>
  76. {good.name}
  77. </Typography>
  78. <Typography gutterBottom variant='body2' color='textSecondary' component='p'>
  79. {`Price: $${good.price}`}
  80. </Typography>
  81. </CardContent>
  82. </Grid>
  83. </Grid>
  84. </CardActionArea>
  85. </Grid>
  86. </Grid>
  87. <CardActions>
  88. <ExpandMore
  89. expand={expanded}
  90. onClick={handleExpandClick}
  91. aria-expanded={expanded}
  92. aria-label='showMore'
  93. >
  94. <ExpandMoreIcon />
  95. </ExpandMore>
  96. {
  97. showAddToCard && (
  98. <Button size='small' color='primary'
  99. onClick={() => addToCart(good)}
  100. >
  101. Add to cart
  102. </Button>
  103. )
  104. }
  105. </CardActions>
  106. <Collapse in={expanded} timeout='auto' unmountOnExit>
  107. <Typography paragraph sx={{ marginLeft: 1 }}>
  108. Description:
  109. </Typography>
  110. <Typography paragraph align='justify' sx={{ marginLeft: 2, marginRight: 2 }}>
  111. {good.description}
  112. </Typography>
  113. </Collapse>
  114. </Card>
  115. </Container>
  116. )
  117. }
  118. const CGood = connect(state => ({}),
  119. { addToCart: actionAddGoodToCart })(Good);
  120. export { CGood };