diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-04-12 14:06:38 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-04-12 14:06:38 +0700 |
| commit | 15b6d6dc4d87ffa782d39a1fb7c6f75798217736 (patch) | |
| tree | 3dd59cdae45f409f6ff10cb43519dba351a8ff95 /src/core/components/elements/Navbar/NavbarDesktop.jsx | |
| parent | 5de7459174ca226be99900958aa82523cac5fef2 (diff) | |
| parent | b42f03ff7b8f8da403b83aa676328533564b928e (diff) | |
Merge branch 'master' into development_tri/feedback_UAT
Diffstat (limited to 'src/core/components/elements/Navbar/NavbarDesktop.jsx')
| -rw-r--r-- | src/core/components/elements/Navbar/NavbarDesktop.jsx | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/src/core/components/elements/Navbar/NavbarDesktop.jsx b/src/core/components/elements/Navbar/NavbarDesktop.jsx index fcb54802..837d436c 100644 --- a/src/core/components/elements/Navbar/NavbarDesktop.jsx +++ b/src/core/components/elements/Navbar/NavbarDesktop.jsx @@ -10,9 +10,10 @@ import DesktopView from '../../views/DesktopView' import dynamic from 'next/dynamic' import IndoteknikLogo from '@/images/logo.png' import Category from '@/lib/category/components/Category' -import { useState } from 'react' +import { useEffect, useState } from 'react' import useAuth from '@/core/hooks/useAuth' import NavbarUserDropdown from './NavbarUserDropdown' +import { getCart } from '@/core/utils/cart' const Search = dynamic(() => import('./Search')) @@ -20,6 +21,21 @@ const NavbarDesktop = () => { const [isOpenCategory, setIsOpenCategory] = useState(false) const auth = useAuth() + const [cartCount, setCartCount] = useState(0) + + useEffect(() => { + const handleCartChange = () => { + setCartCount(Object.keys(getCart()).length) + } + handleCartChange() + + window.addEventListener('localStorageChange', handleCartChange) + + return () => { + window.removeEventListener('localStorageChange', handleCartChange) + } + }, []) + return ( <DesktopView> <div className='py-3 bg-warning-400' id='desktop-nav-top'> @@ -57,10 +73,17 @@ const NavbarDesktop = () => { Quotation </Link> <Link href='/shop/cart' className='flex items-center gap-x-2 !text-gray_r-12/80'> - <ShoppingCartIcon className='w-7' /> - Keranjang - <br /> - Belanja + <div className='relative mr-2'> + <ShoppingCartIcon className='w-7' /> + <span className='absolute -top-2 -right-2 badge-solid-red rounded-full w-5 h-5 flex items-center justify-center'> + {cartCount} + </span> + </div> + <span> + Keranjang + <br /> + Belanja + </span> </Link> <Link href='/my/wishlist' className='flex items-center gap-x-2 !text-gray_r-12/80'> <HeartIcon className='w-7' /> |
