summaryrefslogtreecommitdiff
path: root/src-migrate/pages/shop
diff options
context:
space:
mode:
authortrisusilo48 <tri.susilo@altama.co.id>2024-07-10 15:58:51 +0700
committertrisusilo48 <tri.susilo@altama.co.id>2024-07-10 15:58:51 +0700
commit2e3c726bc8217f3960cfecec44b81303b03de72b (patch)
tree1b85ced7f61f3e4c3f1f27b577b37aa161615065 /src-migrate/pages/shop
parent2b3bd9c0a454dbad69ce29cee877bfb1fca5dfa6 (diff)
parenta99bf6480eea556e53b85e6db45f3b8c2361e693 (diff)
Merge branch 'release' into development
# Conflicts: # src/pages/shop/product/variant/[slug].jsx
Diffstat (limited to 'src-migrate/pages/shop')
-rw-r--r--src-migrate/pages/shop/cart/cart.module.css35
-rw-r--r--src-migrate/pages/shop/cart/index.tsx156
-rw-r--r--src-migrate/pages/shop/product/[slug].tsx83
3 files changed, 274 insertions, 0 deletions
diff --git a/src-migrate/pages/shop/cart/cart.module.css b/src-migrate/pages/shop/cart/cart.module.css
new file mode 100644
index 00000000..806104be
--- /dev/null
+++ b/src-migrate/pages/shop/cart/cart.module.css
@@ -0,0 +1,35 @@
+.title {
+ @apply text-h-lg font-semibold;
+}
+
+.content {
+ @apply flex flex-wrap ;
+}
+
+.item-wrapper {
+ @apply w-full md:w-3/4 min-h-screen;
+}
+
+.item-skeleton {
+ @apply grid grid-cols-1 gap-y-4;
+}
+
+.items {
+ @apply flex flex-col gap-y-6 border-t border-gray-300 pt-6;
+}
+
+.summary-wrapper {
+ @apply w-full md:w-1/4 md:pl-6 mt-6 md:mt-0 bottom-0 md:sticky sticky bg-white;
+}
+
+.summary {
+ @apply border border-gray-300 p-4 rounded-md sticky top-[180px];
+}
+
+.summary-buttons {
+ @apply grid grid-cols-2 gap-x-3 mt-6;
+}
+
+.summary-buttons-step-approval {
+ @apply grid grid-cols-1 gap-y-3 mt-6;
+}
diff --git a/src-migrate/pages/shop/cart/index.tsx b/src-migrate/pages/shop/cart/index.tsx
new file mode 100644
index 00000000..d89707d2
--- /dev/null
+++ b/src-migrate/pages/shop/cart/index.tsx
@@ -0,0 +1,156 @@
+import style from './cart.module.css';
+
+import React, { useEffect, useMemo } from 'react';
+import Link from 'next/link';
+import { Button, Tooltip } from '@chakra-ui/react';
+
+import { getAuth } from '~/libs/auth';
+import { useCartStore } from '~/modules/cart/stores/useCartStore';
+
+import CartItem from '~/modules/cart/components/Item';
+import CartSummary from '~/modules/cart/components/Summary';
+import clsxm from '~/libs/clsxm';
+import useDevice from '@/core/hooks/useDevice';
+import CartSummaryMobile from '~/modules/cart/components/CartSummaryMobile';
+import Image from '~/components/ui/image';
+
+const CartPage = () => {
+ const auth = getAuth();
+ const [isStepApproval, setIsStepApproval] = React.useState(false);
+
+ const { loadCart, cart, summary } = useCartStore();
+
+ const useDivvice = useDevice();
+
+ useEffect(() => {
+ if (typeof auth === 'object' && !cart) {
+ loadCart(auth.id);
+ setIsStepApproval(auth?.feature?.soApproval);
+ }
+ }, [auth, loadCart, cart]);
+
+ const hasSelectedPromo = useMemo(() => {
+ if (!cart) return false;
+ for (const item of cart.products) {
+ if (item.cart_type === 'promotion' && item.selected) return true;
+ }
+ return false;
+ }, [cart]);
+
+ const hasSelected = useMemo(() => {
+ if (!cart) return false;
+ for (const item of cart.products) {
+ if (item.selected) return true;
+ }
+ return false;
+ }, [cart]);
+
+ const hasSelectNoPrice = useMemo(() => {
+ if (!cart) return false;
+ for (const item of cart.products) {
+ if (item.selected && item.price.price_discount == 0) return true;
+ }
+ return false;
+ }, [cart]);
+
+ return (
+ <>
+ <div className={style['title']}>Keranjang Belanja</div>
+
+ <div className='h-6' />
+
+ <div className={style['content']}>
+ <div className={style['item-wrapper']}>
+ <div className={style['item-skeleton']}>
+ {!cart && <CartItem.Skeleton count={5} height='120px' />}
+ </div>
+
+ <div className={style['items']}>
+ {cart?.products.map((item) => (
+ <CartItem key={item.id} item={item} />
+ ))}
+
+ {cart?.products?.length === 0 && (
+ <div className='flex flex-col items-center'>
+ <Image
+ src='/images/empty_cart.svg'
+ alt='Empty Cart'
+ width={450}
+ height={450}
+ />
+ <div className='text-title-sm md:text-title-lg text-center font-semibold'>
+ Keranjangnya masih kosong nih
+ </div>
+ <div className='text-body-2 md:text-body-1 text-center mt-3'>
+ Yuk, tambahin barang-barang yang kamu mau ke keranjang
+ sekarang!
+ <br />
+ Ada banyak potongan belanjanya pakai kode voucher
+ </div>
+ <Link
+ href='/'
+ className='btn-solid-red rounded-full text-body-1 mt-6'
+ >
+ Mulai Belanja
+ </Link>
+ </div>
+ )}
+ </div>
+ </div>
+ <div
+ className={`${style['summary-wrapper']} ${
+ useDivvice.isMobile && cart?.product_total === 0 ? 'hidden' : ''
+ }`}
+ >
+ <div className={style['summary']}>
+ {useDivvice.isMobile && (
+ <CartSummaryMobile {...summary} isLoaded={!!cart} />
+ )}
+ {!useDivvice.isMobile && (
+ <CartSummary {...summary} isLoaded={!!cart} />
+ )}
+
+ <div className={isStepApproval ? style['summary-buttons-step-approval'] : style['summary-buttons'] }>
+ <Tooltip
+ label={
+ hasSelectedPromo &&
+ 'Barang promo tidak dapat dibuat quotation'
+ }
+ >
+ <Button
+ colorScheme='yellow'
+ w='full'
+ isDisabled={hasSelectedPromo || !hasSelected}
+ as={Link}
+ href='/shop/quotation'
+ >
+ Quotation
+ </Button>
+ </Tooltip>
+ {!isStepApproval && (
+ <Tooltip
+ label={clsxm({
+ 'Tidak ada item yang dipilih': !hasSelected,
+ 'Terdapat item yang tidak ada harga': hasSelectNoPrice,
+ })}
+ >
+ <Button
+ colorScheme='red'
+ w='full'
+ isDisabled={!hasSelected || hasSelectNoPrice}
+ as={Link}
+ href='/shop/checkout'
+ >
+ Checkout
+ </Button>
+ </Tooltip>
+ )}
+ </div>
+ </div>
+ </div>
+ </div>
+ </>
+ );
+};
+
+export default CartPage;
diff --git a/src-migrate/pages/shop/product/[slug].tsx b/src-migrate/pages/shop/product/[slug].tsx
new file mode 100644
index 00000000..fc72a6b0
--- /dev/null
+++ b/src-migrate/pages/shop/product/[slug].tsx
@@ -0,0 +1,83 @@
+import { GetServerSideProps, NextPage } from 'next'
+import React, { useEffect } from 'react'
+import dynamic from 'next/dynamic'
+import cookie from 'cookie'
+
+import { getProductById } from '~/services/product'
+import { getIdFromSlug } from '~/libs/slug'
+import { IProductDetail } from '~/types/product'
+
+import { Seo } from '~/components/seo'
+import { useRouter } from 'next/router'
+import { useProductContext } from '@/contexts/ProductContext'
+
+const BasicLayout = dynamic(() => import('@/core/components/layouts/BasicLayout'), { ssr: false })
+const ProductDetail = dynamic(() => import('~/modules/product-detail'), { ssr: false })
+
+type PageProps = {
+ product: IProductDetail
+}
+
+export const getServerSideProps: GetServerSideProps<PageProps> = (async (context) => {
+ const { slug } = context.query
+ const cookieString = context.req.headers.cookie;
+ const cookies = cookieString ? cookie.parse(cookieString) : {};
+ const auth = cookies?.auth ? JSON.parse(cookies.auth) : {};
+ const tier = auth?.pricelist || ''
+
+ const productId = getIdFromSlug(slug as string)
+
+ const product = await getProductById(productId, tier)
+
+ if (!product) return { notFound: true }
+
+ return {
+ props: { product }
+ }
+})
+
+const SELF_HOST = process.env.NEXT_PUBLIC_SELF_HOST
+
+const ProductDetailPage: NextPage<PageProps> = ({ product }) => {
+ const router = useRouter();
+
+ const { setProduct } = useProductContext();
+
+ useEffect(() => {
+ if (product) setProduct(product);
+ }, [product, setProduct]);
+
+ return (
+ <BasicLayout>
+ <Seo
+ title={`${product.name} - Indoteknik.com`}
+ description='Temukan pilihan produk B2B Industri &amp; Alat Teknik untuk Perusahaan, UMKM &amp; Pemerintah dengan lengkap, mudah dan transparan.'
+ openGraph={{
+ url: SELF_HOST + router.asPath,
+ images: [
+ {
+ url: product?.image,
+ width: 800,
+ height: 800,
+ alt: product?.name,
+ },
+ ],
+ type: 'product',
+ }}
+ additionalMetaTags={[
+ {
+ name: 'keywords',
+ content: `${product?.name}, Harga ${product?.name}, Beli ${product?.name}, Spesifikasi ${product?.name}`,
+ }
+ ]}
+ canonical={SELF_HOST + router.asPath}
+ />
+
+ <div className='md:container pt-4 md:pt-6'>
+ <ProductDetail product={product} />
+ </div>
+ </BasicLayout>
+ )
+}
+
+export default ProductDetailPage \ No newline at end of file