diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:17:17 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:17:17 +0700 |
| commit | 4ee24671bc23979d7ac18a5390082c0007928540 (patch) | |
| tree | 670db89c4d31b5e6094f1c36e72ca246c0d4ed49 /src-migrate/pages | |
| parent | 7bec0ceaa7de91f1ba1c9ef18fca3c53d9a7155a (diff) | |
<iman> add select all cart
Diffstat (limited to 'src-migrate/pages')
| -rw-r--r-- | src-migrate/pages/shop/cart/index.tsx | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/src-migrate/pages/shop/cart/index.tsx b/src-migrate/pages/shop/cart/index.tsx index 7de96425..1f89c7a3 100644 --- a/src-migrate/pages/shop/cart/index.tsx +++ b/src-migrate/pages/shop/cart/index.tsx @@ -1,8 +1,8 @@ import style from './cart.module.css'; -import React, { useEffect, useMemo } from 'react'; +import React, { useEffect, useMemo, useState } from 'react'; import Link from 'next/link'; -import { Button, Toast, Tooltip } from '@chakra-ui/react'; +import { Button, Checkbox, Toast, Tooltip } from '@chakra-ui/react'; import { toast } from 'react-hot-toast'; import { useRouter } from 'next/router'; import { getAuth } from '~/libs/auth'; @@ -19,6 +19,9 @@ const CartPage = () => { const router = useRouter(); const auth = getAuth(); const [isStepApproval, setIsStepApproval] = React.useState(false); + const [isSelectedAll, setIsSelectedAll] = useState<boolean>(false); + const [isButtonChek, setIsButtonChek] = useState<boolean>(false); + const [buttonSelectNow, setButtonSelectNow] = useState<boolean>(true); const { loadCart, cart, summary } = useCartStore(); @@ -29,8 +32,9 @@ const CartPage = () => { loadCart(auth.id); setIsStepApproval(auth?.feature?.soApproval); } - }, [auth, loadCart, cart]); - + }, [auth, loadCart, cart, isButtonChek, ]); + + const hasSelectedPromo = useMemo(() => { if (!cart) return false; for (const item of cart.products) { @@ -67,10 +71,26 @@ const CartPage = () => { } }) + const handleChange = (()=>{ + setButtonSelectNow(!buttonSelectNow) + setIsSelectedAll(!isSelectedAll) + setIsButtonChek(!isButtonChek) + }) + return ( <> <div className={style['title']}>Keranjang Belanja</div> - + <div className='flex items-center object-center mt-2'> + <Checkbox + borderColor='gray.600' + colorScheme='red' + size='lg' + isChecked={isButtonChek} + onChange={handleChange} + /> <p className='p-2 text-caption-2'> + {buttonSelectNow? "Select all" : "Unchek all" } + </p> + </div> <div className='h-6' /> <div className={style['content']}> @@ -81,8 +101,9 @@ const CartPage = () => { <div className={style['items']}> {cart?.products.map((item) => ( - <CartItem key={item.id} item={item} /> + <CartItem key={item.id} item={item} pilihSemuaCart={isSelectedAll} /> ))} + {cart?.products?.length === 0 && ( <div className='flex flex-col items-center'> |
