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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Checkout.jsx 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. import React, { useState } from 'react'
  2. import { Box, Typography, Link } from '@mui/material'
  3. import SocialMedia from '../components/SocialMedia'
  4. import Feature from '../components/Feature'
  5. import LoginForm from '../components/LoginForm'
  6. import SignUpForm from '../components/SignUpForm'
  7. import ShippingForm from '../components/ShippingForm'
  8. import BillingForm from '../components/BillingForm'
  9. import ConfirmOrder from '../components/ConfirmOrder'
  10. import Grid from '@mui/material/Grid2';
  11. const Checkout = () => {
  12. const [content, setContent] = useState(0);
  13. const [showLoginForm, setShowLoginForm] = useState(true);
  14. return (
  15. <Box sx={{
  16. px: {
  17. xs: 2,
  18. md: 5,
  19. lg: 5
  20. },
  21. mb: {
  22. xs: 0,
  23. md: 5,
  24. lg: 10
  25. },
  26. mt: 10
  27. }}>
  28. {/* Header */}
  29. <Grid container spacing={2} sx={{ mb: 5 }}>
  30. <Grid item size={4} sx={{ mx: "auto" }}>
  31. <Typography variant="h5" sx={{ fontWeight: "bold", textAlign: "center" }}>
  32. {[
  33. 'LOGIN',
  34. 'SHIPPING',
  35. 'BILLING',
  36. 'CONFIRMATION'
  37. ][content]}
  38. </Typography>
  39. </Grid>
  40. </Grid>
  41. {/* Navigation */}
  42. <Grid container>
  43. <Grid item size={12} sx={{ borderTop: "1px solid rgba(0,0,0,0.2)", borderBottom: "1px solid rgba(0,0,0,0.2)", display: "flex", justifyContent: "space-evenly", py: 1 }}>
  44. <Typography variant="body1" onClick={() => { setContent(0) }} sx={{ cursor: "pointer", color: (content == 0) ? "#93ABC7" : "black" }}>Login</Typography>
  45. <Typography variant="body1" onClick={() => { setContent(1) }} sx={{ cursor: "pointer", color: (content == 1) ? "#93ABC7" : "black" }}>Shipping</Typography>
  46. <Typography variant="body1" onClick={() => { setContent(2) }} sx={{ cursor: "pointer", color: (content == 2) ? "#93ABC7" : "black" }}>Billing</Typography>
  47. <Typography variant="body1" onClick={() => { setContent(3) }} sx={{ cursor: "pointer", color: (content == 3) ? "#93ABC7" : "black" }}>Confirmation</Typography>
  48. </Grid>
  49. </Grid>
  50. {/* Content */}
  51. {(content == 0) && <Grid container sx={{ mb: 5 }}>
  52. <Grid item size={{ xs: 12, md: 6 }} sx={{ borderRight: "1px solid rgba(0,0,0,0.2)", borderBottom: "1px solid rgba(0,0,0,0.2)", py: 4, textAlign: "center", display: { xs: "none", md: "block" } }}>
  53. <Typography variant="body1" sx={{ fontWeight: "500" }}>EXISTING CUSTOMER</Typography>
  54. </Grid>
  55. <Grid item size={{ xs: 12, md: 6 }} sx={{ textAlign: "center", py: 4, borderBottom: "1px solid rgba(0,0,0,0.2)", display: { xs: "none", md: "block" } }}>
  56. <Typography variant="body1" sx={{ fontWeight: "500" }}>NEW CUSTOMER</Typography>
  57. </Grid>
  58. <Grid
  59. item
  60. size={{ xs: 12, md: 6 }}
  61. sx={{
  62. borderRight: { xs: "none", md: "1px solid rgba(0,0,0,0.2)" },
  63. py: 4,
  64. textAlign: "center",
  65. px: 8,
  66. display: {
  67. xs: showLoginForm ? "block" : "none",
  68. md: "block"
  69. }
  70. }}>
  71. <Typography variant="h6" sx={{ fontWeight: "500", mb: 3, display: { xs: "block", md: "none" } }}>EXISTING CUSTOMER</Typography>
  72. <Typography variant="body2">Make purchases faster using previously saved details. Track previous orders and easily request returns from the website.</Typography>
  73. <LoginForm />
  74. <Typography variant="body1" sx={{ fontWeight: "400", mt: 5, display: { xs: "block", md: "none" } }}>Didnt have any Account? <Link onClick={() => { setShowLoginForm(false) }} sx={{ textDecoration: "underline" }}> here</Link> to subcribe now.</Typography>
  75. </Grid>
  76. <Grid
  77. item
  78. size={{ xs: 12, md: 6 }}
  79. sx={{
  80. textAlign: "center",
  81. py: 4,
  82. px: 8,
  83. display: {
  84. xs: showLoginForm ? "none" : "block",
  85. md: "block"
  86. }
  87. }}>
  88. <Typography variant="h6" sx={{ fontWeight: "500", mb: 3, display: { xs: "block", md: "none" } }}>NEW CUSTOMER</Typography>
  89. <Typography variant="body2">You’ll need an account to purchase watches, track and review orders, and manage your personal details.</Typography>
  90. <SignUpForm />
  91. <Typography variant="body1" sx={{ fontWeight: "400", mt: 5, display: { xs: "block", md: "none" } }}>Already have an Account? <Link onClick={() => { setShowLoginForm(true) }} sx={{ textDecoration: "underline" }}> here</Link> to subcribe now.</Typography>
  92. </Grid>
  93. </Grid>}
  94. {(content == 1) && <Grid container sx={{ mb: 5 }}>
  95. <Grid item size={12}>
  96. <ShippingForm />
  97. </Grid>
  98. </Grid>}
  99. {(content == 2) && <Grid container sx={{ mb: 5 }}>
  100. <Grid item size={12}>
  101. <BillingForm />
  102. </Grid>
  103. </Grid>}
  104. {(content == 3) && <Grid container sx={{ mb: 5 }}>
  105. <Grid item size={12}>
  106. <ConfirmOrder />
  107. </Grid>
  108. </Grid>}
  109. <Box sx={{display: {xs:"none", md:"block"} }}>
  110. <SocialMedia />
  111. <Feature />
  112. </Box>
  113. </Box>
  114. )
  115. }
  116. export default Checkout