summaryrefslogtreecommitdiff
path: root/src/lib/cart/components/Cart.jsx
blob: d0685fe348586cf7ed787ba5fb500fd698e26f84 (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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
import Link from '@/core/components/elements/Link/Link'
import useCart from '../hooks/useCart'
import Image from '@/core/components/elements/Image/Image'
import NextImage from 'next/image'
import currencyFormat from '@/core/utils/currencyFormat'
import { useEffect, useState } from 'react'
import { deleteItemCart, getItemCart, updateItemCart } from '@/core/utils/cart'
import { CheckIcon, TrashIcon } from '@heroicons/react/24/outline'
import { createSlug } from '@/core/utils/slug'
import { useRouter } from 'next/router'
import BottomPopup from '@/core/components/elements/Popup/BottomPopup'
import { toast } from 'react-hot-toast'
import Spinner from '@/core/components/elements/Spinner/Spinner'
import Alert from '@/core/components/elements/Alert/Alert'
import MobileView from '@/core/components/views/MobileView'
import DesktopView from '@/core/components/views/DesktopView'
import ProductCard from '@/lib/product/components/ProductCard'
import productSearchApi from '@/lib/product/api/productSearchApi'

const Cart = () => {
  const router = useRouter()
  const [products, setProducts] = useState(null)
  const { cart } = useCart({ enabled: !products })

  const [totalPriceBeforeTax, setTotalPriceBeforeTax] = useState(0)
  const [totalTaxAmount, setTotalTaxAmount] = useState(0)
  const [totalDiscountAmount, setTotalDiscountAmount] = useState(0)

  const [deleteConfirmation, setDeleteConfirmation] = useState(null)

  const [productRecomendation, setProductRecomendation] = useState(null)

  useEffect(() => {
    if (cart.data && !products) {
      const productsWithQuantity = cart.data.map((product) => {
        const productInCart = getItemCart({ productId: product.id })
        if (!productInCart) return
        return {
          ...product,
          quantity: productInCart.quantity,
          selected: productInCart.selected
        }
      })
      setProducts(productsWithQuantity)
    }
  }, [cart, products])

  useEffect(() => {
    if (!products) return

    let calculateTotalPriceBeforeTax = 0
    let calculateTotalTaxAmount = 0
    let calculateTotalDiscountAmount = 0
    for (const product of products) {
      if (product.quantity == '') continue
      updateItemCart({
        productId: product.id,
        quantity: product.quantity,
        selected: product.selected
      })

      if (!product.selected) continue
      let priceBeforeTax = product.price.price / 1.11
      calculateTotalPriceBeforeTax += priceBeforeTax * product.quantity
      calculateTotalTaxAmount += (product.price.price - priceBeforeTax) * product.quantity
      calculateTotalDiscountAmount +=
        (product.price.price - product.price.priceDiscount) * product.quantity
    }
    setTotalPriceBeforeTax(calculateTotalPriceBeforeTax)
    setTotalTaxAmount(calculateTotalTaxAmount)
    setTotalDiscountAmount(calculateTotalDiscountAmount)
  }, [products])

  useEffect(() => {
    const LoadProductSImilar = async () => {
      const randProductIndex = Math.floor(Math.random() * products.length)
      const productLoad = await productSearchApi({
        query: `q=${products?.[randProductIndex].parent.name}&limit=10`
      })

      setProductRecomendation(productLoad)
    }
    if (products?.length > 0) LoadProductSImilar()
  }, [products])

  const updateQuantity = (value, productId, operation = '') => {
    let productIndex = products.findIndex((product) => product.id == productId)
    if (productIndex < 0) return

    let productsToUpdate = products
    let quantity = productsToUpdate[productIndex].quantity
    if (value != '' && isNaN(parseInt(value))) return
    value = value != '' ? parseInt(value) : ''
    switch (operation) {
      case 'PLUS':
        quantity += value
        break
      case 'MINUS':
        if (quantity - value < 1) return
        quantity -= value
        break
      case 'BLUR':
        if (value != '' && value > 0) return
        quantity = 1
        break
      default:
        quantity = value != '' && value < 1 ? 1 : value
        break
    }
    productsToUpdate[productIndex].quantity = quantity
    setProducts([...productsToUpdate])
  }

  const toggleSelected = (productId) => {
    let productIndex = products.findIndex((product) => product.id == productId)
    if (productIndex < 0) return

    let productsToUpdate = products
    productsToUpdate[productIndex].selected = !productsToUpdate[productIndex].selected
    setProducts([...productsToUpdate])
  }

  const selectedProduct = () => {
    if (!products) return []
    return products?.filter((product) => product?.selected == true)
  }

  const deleteProduct = (productId) => {
    const productsToUpdate = products.filter((product) => product.id != productId)
    deleteItemCart({ productId })
    setDeleteConfirmation(null)
    setProducts([...productsToUpdate])
    toast.success('Berhasil menghapus barang dari keranjang')
  }

  return (
    <>
      <BottomPopup
        active={deleteConfirmation}
        close={() => setDeleteConfirmation(null)}
        title='Hapus dari Keranjang'
      >
        <div className='leading-7 text-gray_r-12/80'>
          Apakah anda yakin menghapus barang{' '}
          <span className='underline'>{deleteConfirmation?.name}</span> dari keranjang?
        </div>
        <div className='flex mt-6 gap-x-4 md:justify-end'>
          <button
            className='btn-solid-red flex-1 md:flex-none'
            type='button'
            onClick={() => deleteProduct(deleteConfirmation?.id)}
          >
            Ya, Hapus
          </button>
          <button
            className='btn-light flex-1 md:flex-none'
            type='button'
            onClick={() => setDeleteConfirmation(null)}
          >
            Batal
          </button>
        </div>
      </BottomPopup>

      <MobileView>
        <div className='pt-4'>
          <div className='flex justify-between mb-4 px-4'>
            <h1 className='font-semibold'>Keranjang</h1>
            <Link href='/'>Cari Produk Lain</Link>
          </div>

          <div className='flex flex-col gap-y-4 h-screen'>
            {cart.isLoading && (
              <div className='flex justify-center my-4'>
                <Spinner className='w-6 text-gray_r-12/50 fill-gray_r-12' />
              </div>
            )}

            {!cart.isLoading && (!products || products?.length == 0) && (
              <div className='px-4'>
                <Alert className='text-center my-2' type='info'>
                  Keranjang belanja anda masih kosong
                </Alert>
              </div>
            )}

            {products?.map((product) => (
              <div key={product?.id} className='flex mx-4'>
                <input
                  type='checkbox'
                  onClick={() => toggleSelected(product.id)}
                  checked={product?.selected}
                  className='mr-2 accent-danger-500 w-4'
                />

                <Link
                  href={createSlug('/shop/product/', product?.parent.name, product?.parent.id)}
                  className='w-[30%] flex-shrink-0'
                >
                  <Image
                    src={product?.parent?.image}
                    alt={product?.name}
                    className='object-contain object-center border border-gray_r-6 h-40 w-full rounded-md'
                  />
                </Link>
                <div className='flex-1 px-2 text-caption-2'>
                  <Link
                    href={createSlug('/shop/product/', product?.parent.name, product?.parent.id)}
                    className='line-clamp-2 leading-6 !text-gray_r-12 font-normal'
                  >
                    {product?.parent?.name}
                  </Link>
                  <div className='text-gray_r-11 mt-1'>
                    {product?.code}{' '}
                    {product?.attributes.length > 0 ? `| ${product?.attributes.join(', ')}` : ''}
                  </div>
                  {product?.price?.discountPercentage > 0 && (
                    <div className='flex gap-x-1 items-center mt-3'>
                      <div className='text-gray_r-11 line-through text-caption-2'>
                        {currencyFormat(product?.price?.price)}
                      </div>
                      <div className='badge-solid-red'>{product?.price?.discountPercentage}%</div>
                    </div>
                  )}
                  <div className='font-normal mt-1'>
                    {currencyFormat(product?.price?.priceDiscount)}
                  </div>
                  <div className='flex justify-between items-center mt-1'>
                    <div className='text-danger-500 font-medium'>
                      {currencyFormat(product?.price?.priceDiscount * product?.quantity)}
                    </div>
                    <div className='flex gap-x-1'>
                      <button
                        type='button'
                        className='btn-light px-2 py-1'
                        onClick={() => updateQuantity(1, product?.id, 'MINUS')}
                        disabled={product?.quantity == 1}
                      >
                        -
                      </button>
                      <input
                        className='form-input w-6 border-0 border-b rounded-none py-1 px-0 text-center'
                        type='number'
                        value={product?.quantity}
                        onChange={(e) => updateQuantity(e.target.value, product?.id)}
                        onBlur={(e) => updateQuantity(e.target.value, product?.id, 'BLUR')}
                      />
                      <button
                        type='button'
                        className='btn-light px-2 py-1'
                        onClick={() => updateQuantity(1, product?.id, 'PLUS')}
                      >
                        +
                      </button>
                      <button
                        className='btn-red p-1 ml-1'
                        onClick={() => setDeleteConfirmation(product)}
                      >
                        <TrashIcon className='w-4' />
                      </button>
                    </div>
                  </div>
                </div>
              </div>
            ))}

            <div className='sticky bottom-0 left-0 w-full p-4 mt-auto border-t border-gray_r-6 bg-white'>
              <div className='flex justify-between mb-4'>
                <div className='text-gray_r-11'>
                  Total:
                  <span className='text-danger-500 font-semibold'>
                    &nbsp;
                    {selectedProduct().length > 0
                      ? currencyFormat(totalPriceBeforeTax - totalDiscountAmount + totalTaxAmount)
                      : '-'}
                  </span>
                </div>
              </div>
              <div className='flex gap-x-3'>
                <button
                  type='button'
                  className='btn-yellow flex-1'
                  disabled={selectedProduct().length == 0}
                  onClick={() => router.push('/shop/quotation')}
                >
                  Quotation
                </button>
                <button
                  type='button'
                  className='btn-solid-red flex-1'
                  disabled={selectedProduct().length == 0}
                  onClick={() => router.push('/shop/checkout')}
                >
                  Checkout
                </button>
              </div>
            </div>
          </div>
        </div>
      </MobileView>

      <DesktopView>
        <div className='container mx-auto py-10 grid grid-cols-12'>
          <div className='col-span-9 border border-gray_r-6 rounded bg-white p-4 pt-6'>
            <h1 className='text-title-sm font-semibold mb-6'>Keranjang</h1>

            <table className='table-cart'>
              <thead>
                <tr>
                  <th colSpan={2}>Nama Produk</th>
                  <th>Jumlah</th>
                  <th>Harga</th>
                  <th>Subtotal</th>
                  <th>Action</th>
                </tr>
              </thead>
              <tbody>
                {cart.isLoading && (
                  <tr>
                    <td colSpan={6}>
                      <div className='flex justify-center my-2'>
                        <Spinner className='w-6 text-gray_r-12/50 fill-gray_r-12' />
                      </div>
                    </td>
                  </tr>
                )}
                {!cart.isLoading && (!products || products?.length == 0) && (
                  <tr>
                    <td colSpan={6}>Keranjang belanja anda masih kosong</td>
                  </tr>
                )}
                {products && products?.map((product) => (
                  <tr key={product.id}>
                    <td>
                      <input
                        type='checkbox'
                        onClick={() => toggleSelected(product.id)}
                        checked={product?.selected}
                        className='accent-danger-500 w-4'
                      />
                    </td>
                    <td className='flex'>
                      <Link
                        href={createSlug(
                          '/shop/product/',
                          product?.parent.name,
                          product?.parent.id
                        )}
                        className='w-[20%] flex-shrink-0'
                      >
                        <Image
                          src={product?.parent?.image}
                          alt={product?.name}
                          className='object-contain object-center border border-gray_r-6 h-28 w-full rounded-md'
                        />
                      </Link>
                      <div className='px-2 text-left'>
                        <Link
                          href={createSlug(
                            '/shop/product/',
                            product?.parent.name,
                            product?.parent.id
                          )}
                          className='line-clamp-2 leading-6 !text-gray_r-12 font-normal'
                        >
                          {product?.parent?.name}
                        </Link>
                        <div className='text-gray_r-11 mt-2'>
                          {product?.code}{' '}
                          {product?.attributes.length > 0
                            ? `| ${product?.attributes.join(', ')}`
                            : ''}
                        </div>
                      </div>
                    </td>
                    <td>
                      <input
                        className='form-input w-16 py-2 text-center bg-gray_r-1'
                        type='number'
                        value={product?.quantity}
                        onChange={(e) => updateQuantity(e.target.value, product?.id)}
                        onBlur={(e) => updateQuantity(e.target.value, product?.id, 'BLUR')}
                      />
                    </td>
                    <td>
                      {product?.price?.discountPercentage > 0 && (
                        <div className='flex gap-x-1 items-center justify-center mt-3'>
                          <div className='text-gray_r-11 line-through text-caption-1'>
                            {currencyFormat(product?.price?.price)}
                          </div>
                          <div className='badge-solid-red'>
                            {product?.price?.discountPercentage}%
                          </div>
                        </div>
                      )}
                      <div className='font-normal mt-1'>
                        {currencyFormat(product?.price?.priceDiscount)}
                      </div>
                    </td>
                    <td>
                      <div className='text-danger-500 font-medium'>
                        {currencyFormat(product?.price?.priceDiscount * product?.quantity)}
                      </div>
                    </td>
                    <td>
                      <div className='flex justify-center items-center h-full'>
                        <button
                          className='btn-red p-1 ml-1'
                          onClick={() => setDeleteConfirmation(product)}
                        >
                          <TrashIcon className='w-4' />
                        </button>
                      </div>
                    </td>
                  </tr>
                ))}
              </tbody>
            </table>

            <div className='pt-2 pb-6 flex items-center gap-x-3'>
              <NextImage
                src='/images/logo-question.png'
                alt='Logo Question Indoteknik'
                width={60}
                height={60}
              />
              <div className='text-gray_r-12/90'>
                Tanya stock untuk pembelian anda sebelum melanjutkan pembayaran!
                <span>
                  {' '}
                  <a href='https://wa.me/628128080622' className='text-danger-500'>
                    Hubungi Kami
                  </a>
                </span>
              </div>
            </div>
          </div>

          <div className='col-span-3 pl-4'>
            <div className='sticky top-48 w-full p-4 rounded border border-gray_r-6 bg-white'>
              <h1 className='text-title-sm font-semibold mb-6'>Ringkasan Belanja</h1>
              <div className='flex justify-between mb-4'>
                <div className='text-gray_r-11'>
                  Total:
                  <span className='text-danger-500 font-semibold'>
                    &nbsp;
                    {selectedProduct().length > 0
                      ? currencyFormat(totalPriceBeforeTax - totalDiscountAmount + totalTaxAmount)
                      : '-'}
                  </span>
                </div>
              </div>
              <div className='flex gap-x-3'>
                <button
                  type='button'
                  className='btn-yellow flex-1'
                  disabled={selectedProduct().length == 0}
                  onClick={() => router.push('/shop/quotation')}
                >
                  Quotation
                </button>
                <button
                  type='button'
                  className='btn-solid-red flex-1'
                  disabled={selectedProduct().length == 0}
                  onClick={() => router.push('/shop/checkout')}
                >
                  Checkout
                </button>
              </div>
            </div>
          </div>

          <div className='col-span-9 pt-2 pb-6 mt-6'>
            <h1 className='text-title-sm font-semibold mb-6'>Product Yang Mungkin Kamu Suka</h1>
            <div className='grid grid-cols-5 gap-x-3 gap-y-6'>
              {productRecomendation &&
                productRecomendation.response.products.map((product) => (
                  <ProductCard product={product} key={product.id} />
                ))}
            </div>
          </div>
        </div>
      </DesktopView>
    </>
  )
}

export default Cart