Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CollectionList.jsx 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import { useEffect, useState } from "react";
  2. import { Box, Typography, Button } from "@mui/material";
  3. import ProductService from "../../services/ProductService";
  4. import Grid from '@mui/material/Grid2';
  5. const CollectionList = ({ productType }) => {
  6. const [collections, setCollections] = useState([])
  7. useEffect(() => {
  8. ProductService.getCollections(productType).then((data) => {
  9. setCollections(data)
  10. })
  11. }, [])
  12. return (
  13. <Box sx={{ flexGrow: 1, mt: 10 }}>
  14. { collections.length > 0 && <Typography variant="h4" sx={{textAlign:"center", mb:5, fontWeight:"bolder"}}>COLLECTIONS</Typography>}
  15. <Grid container spacing={2}>
  16. {collections.map(({id, name, src}) => {
  17. return (<Grid size={12}>
  18. <Box
  19. sx={{
  20. position: 'relative',
  21. width: '100%',
  22. height: 0,
  23. backgroundImage: `url("${src}")`,
  24. backgroundSize: "cover",
  25. backgroundPosition: "top center",
  26. paddingTop: '600px', // This sets the height based on top padding
  27. overflow: 'hidden',
  28. }}
  29. >
  30. <Box
  31. sx={{
  32. position: 'absolute',
  33. top: 0,
  34. left: 0,
  35. width: '100%',
  36. height: '100%',
  37. backgroundColor: 'rgba(0, 0, 0, 0.5)', // Filter overlay
  38. display: 'flex',
  39. flexDirection: 'column',
  40. justifyContent: 'center',
  41. alignItems: 'center',
  42. color: '#fff', // Text and button color for visibility
  43. }}
  44. >
  45. <Typography variant="h4" gutterBottom>
  46. {name}
  47. </Typography>
  48. <Button onClick={()=>{
  49. sessionStorage.removeItem('amber-select-category')
  50. sessionStorage.setItem('amber-select-collection', JSON.stringify({id, name, src}))
  51. window.location.href = "/products"
  52. }} variant="contained" color="primary">
  53. SHOP NOW
  54. </Button>
  55. </Box>
  56. </Box>
  57. </Grid>)
  58. })}
  59. </Grid>
  60. </Box>
  61. );
  62. };
  63. export default CollectionList;