summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/NavbarUserDropdown.jsx
blob: 2a345341ba18f22970083fa4462f3a1929090eb5 (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
import { deleteAuth } from '@/core/utils/auth'
import Link from '../Link/Link'
import { useRouter } from 'next/router'
import { signOut, useSession } from 'next-auth/react'
import useAuth from '@/core/hooks/useAuth'

const NavbarUserDropdown = () => {
  const router = useRouter()
  const atuh = useAuth()

  const logout = async () => {
    deleteAuth().then(() => {
      router.push('/login')
    })
  }

  return (
    <div className='navbar-user-dropdown-wrapper'>
      <div className='navbar-user-dropdown'>
        <Link href='/my/quotations'>Daftar Quotation</Link>
        <Link href='/my/transactions'>Daftar Transaksi</Link>
        <Link href='/my/shipments'>Daftar Pengiriman</Link>
        <Link href='/my/invoices'>Invoice & Faktur Pajak</Link>
        <Link href='/my/wishlist'>Wishlist</Link>
        <Link href='/my/address'>Daftar Alamat</Link>
        <Link href='/my/profile'>Profil Saya</Link>
        {!atuh?.external &&
          <Link href='/my/recomendation'>Dashboard Recomendation</Link>
        }
        <button type='button' onClick={logout}>
          Keluar Akun
        </button>
      </div>
    </div>
  )
}

export default NavbarUserDropdown