summaryrefslogtreecommitdiff
path: root/src-migrate/pages/shop/cart/index.tsx
blob: 0eb9c5545381514e7eb7f9d93016a0fcbe6e701c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import style from './cart.module.css';

import React, { useEffect, useMemo, useState } from 'react';
import Link from 'next/link';
import { Button, Checkbox, Tooltip } from '@chakra-ui/react';
import { toast } from 'react-hot-toast';
import { useRouter } from 'next/router';
import { getAuth } from '~/libs/auth';
import { useCartStore } from '~/modules/cart/stores/useCartStore';

import CartItemModule 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';
import { CartItem } from '~/types/cart'
import { upsertUserCart } from '~/services/cart'

const CartPage = () => {
  const router = useRouter();
  const auth = getAuth();
  const [isStepApproval, setIsStepApproval] = useState(false);
  const [isSelectedAll, setIsSelectedAll] = useState(false);
  const [isButtonChek, setIsButtonChek] = useState(false);
  const [buttonSelectNow, setButtonSelectNow] = useState(true);

  const { loadCart, cart, summary } = useCartStore();
  const useDivvice = useDevice();

  useEffect(() => {
    if (typeof auth === 'object' && !cart) {
      loadCart(auth.id);
      setIsStepApproval(auth?.feature?.soApproval);
    }
  }, [auth, loadCart, cart, isButtonChek]);

  const hasSelectedPromo = useMemo(() => {
    if (!cart) return false;
    return cart.products.some(item => item.cart_type === 'promotion' && item.selected);
  }, [cart]);

  const hasSelected = useMemo(() => {
    if (!cart) return false;
    return cart.products.some(item => item.selected);
  }, [cart]);

  const hasSelectNoPrice = useMemo(() => {
    if (!cart) return false;
    return cart.products.some(item => item.selected && item.price.price_discount === 0);
  }, [cart]);

  const hasSelectedAll = useMemo(() => {
    if (!cart || !Array.isArray(cart.products)) return false;
    return cart.products.every(item => item.selected);
  }, [cart]);

  const handleCheckout = () => {
    router.push('/shop/checkout');
  }

  const handleQuotation = () => {
    if (hasSelectedPromo || !hasSelected) {
      toast.error('Maaf, Barang promo tidak dapat dibuat quotation');
    } else {
      router.push('/shop/quotation');
    }
  }

  const handleChange = async (e: React.ChangeEvent<HTMLInputElement>) => {
    if (typeof auth !== 'object' || !cart) return;

    const newSelected = e.target.checked;
    setIsSelectedAll(newSelected);

    for (const item of cart.products) {
      await upsertUserCart({
        userId: auth.id,
        type: item.cart_type,
        id: item.id,
        qty: item.quantity,
        selected: newSelected
      });
    }
    await loadCart(auth.id);
  }

  return (
    <>
      <div className={style['title']}>Keranjang Belanja</div>
      <div className='h-2' />
      <div className='flex items-center object-center mt-2'>
        <Checkbox
          borderColor='gray.600'
          colorScheme='red'
          size='lg'
          isChecked={hasSelectedAll}
          onChange={handleChange}
        />
        <p className='p-2 text-caption-2'>
          {hasSelectedAll ? "Unchek all" : "Select all"}
        </p>
      </div>

      <div className={style['content']}>
        <div className={style['item-wrapper']}>
          <div className={style['item-skeleton']}>
            {!cart && <CartItemModule.Skeleton count={5} height='120px' />}
          </div>

          <div className={style['items']}>
            {cart?.products.map((item) => (
              <CartItemModule 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}
                  onClick={handleQuotation}
                >
                  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}
                    onClick={handleCheckout}
                  >
                    Checkout
                  </Button>
                </Tooltip>
              )}
            </div>
          </div>
        </div>
      </div>
    </>
  );
};

export default CartPage;