358 lines
10 KiB
TypeScript
358 lines
10 KiB
TypeScript
import Link from 'next/link'
|
|
import TradeIcon from './icons/TradeIcon'
|
|
import {
|
|
DotsHorizontalIcon,
|
|
LibraryIcon,
|
|
LightBulbIcon,
|
|
ExternalLinkIcon,
|
|
ChevronDownIcon,
|
|
CogIcon,
|
|
CurrencyDollarIcon,
|
|
ChartBarIcon,
|
|
} from '@heroicons/react/solid'
|
|
import { useRouter } from 'next/router'
|
|
import { useTranslation } from 'next-i18next'
|
|
import { Fragment, ReactNode, useEffect, useState } from 'react'
|
|
import { Disclosure, Popover, Transition } from '@headlessui/react'
|
|
import MangoAccountSummary from './account/MangoAccountSummary'
|
|
import HealthHeart from './account/HealthHeart'
|
|
import mangoStore from '../store/mangoStore'
|
|
|
|
const SideNav = ({ collapsed }: { collapsed: boolean }) => {
|
|
const { t } = useTranslation('common')
|
|
const mangoAccount = mangoStore((s) => s.mangoAccount.current)
|
|
const router = useRouter()
|
|
const { pathname } = router
|
|
|
|
return (
|
|
<div
|
|
className={`flex flex-col justify-between transition-all duration-500 ease-in-out ${
|
|
collapsed ? 'w-[64px]' : 'w-44 lg:w-56'
|
|
} min-h-screen border-r border-th-bkg-3 bg-th-bkg-1`}
|
|
>
|
|
<div className="my-2">
|
|
<Link href={'/'} shallow={true} passHref>
|
|
<div
|
|
className={`h-14 items-center transition-all duration-500 ease-in-out ${
|
|
collapsed ? '' : 'justify-start'
|
|
} pb-1 pt-2 pl-4`}
|
|
>
|
|
<div className={`flex flex-shrink-0 cursor-pointer items-center`}>
|
|
<img
|
|
className={`h-8 w-8 flex-shrink-0`}
|
|
src="/logos/logo-mark.svg"
|
|
alt="next"
|
|
/>
|
|
<Transition
|
|
show={!collapsed}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-200"
|
|
enterFrom="opacity-50"
|
|
enterTo="opacity-100"
|
|
leave="transition ease-out duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<span className="ml-3 text-lg font-bold text-th-fgd-1">
|
|
Mango
|
|
</span>
|
|
</Transition>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
<div className="flex flex-col items-start">
|
|
<MenuItem
|
|
active={pathname === '/'}
|
|
collapsed={collapsed}
|
|
icon={<CurrencyDollarIcon className="h-5 w-5" />}
|
|
title={t('portfolio')}
|
|
pagePath="/"
|
|
/>
|
|
<MenuItem
|
|
active={pathname === '/trade'}
|
|
collapsed={collapsed}
|
|
icon={<TradeIcon className="h-5 w-5" />}
|
|
title={t('trade')}
|
|
pagePath="/trade"
|
|
/>
|
|
<MenuItem
|
|
active={pathname === '/stats'}
|
|
collapsed={collapsed}
|
|
icon={<ChartBarIcon className="h-5 w-5" />}
|
|
title={t('stats')}
|
|
pagePath="/stats"
|
|
/>
|
|
<MenuItem
|
|
active={pathname === '/settings'}
|
|
collapsed={collapsed}
|
|
icon={<CogIcon className="h-5 w-5" />}
|
|
title={t('settings')}
|
|
pagePath="/settings"
|
|
/>
|
|
<ExpandableMenuItem
|
|
collapsed={collapsed}
|
|
icon={<DotsHorizontalIcon className="h-5 w-5" />}
|
|
title={t('more')}
|
|
>
|
|
{/* <MenuItem
|
|
active={pathname === '/fees'}
|
|
collapsed={false}
|
|
icon={<ReceiptTaxIcon className="h-5 w-5" />}
|
|
title={t('fees')}
|
|
pagePath="/fees"
|
|
hideIconBg
|
|
/> */}
|
|
<MenuItem
|
|
collapsed={false}
|
|
icon={<LightBulbIcon className="h-5 w-5" />}
|
|
title={t('learn')}
|
|
pagePath="https://docs.mango.markets"
|
|
hideIconBg
|
|
isExternal
|
|
/>
|
|
<MenuItem
|
|
collapsed={false}
|
|
icon={<LibraryIcon className="h-5 w-5" />}
|
|
title={t('governance')}
|
|
pagePath="https://dao.mango.markets"
|
|
hideIconBg
|
|
isExternal
|
|
/>
|
|
</ExpandableMenuItem>
|
|
</div>
|
|
</div>
|
|
{mangoAccount ? (
|
|
<div className="border-t border-th-bkg-3">
|
|
<ExpandableMenuItem
|
|
collapsed={collapsed}
|
|
icon={<HealthHeart health={50} size={32} />}
|
|
title={
|
|
<div className="text-left">
|
|
<p className="mb-0.5 whitespace-nowrap text-xs">
|
|
Account Summary
|
|
</p>
|
|
<p className="text-sm font-bold text-th-fgd-1">
|
|
{mangoAccount.name}
|
|
</p>
|
|
</div>
|
|
}
|
|
alignBottom
|
|
hideIconBg
|
|
>
|
|
<div className="px-4 pb-4 pt-2">
|
|
<MangoAccountSummary />
|
|
</div>
|
|
</ExpandableMenuItem>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SideNav
|
|
|
|
const MenuItem = ({
|
|
active,
|
|
collapsed,
|
|
icon,
|
|
title,
|
|
pagePath,
|
|
hideIconBg,
|
|
isExternal,
|
|
}: {
|
|
active?: boolean
|
|
collapsed: boolean
|
|
icon: ReactNode
|
|
title: string
|
|
pagePath: string
|
|
hideIconBg?: boolean
|
|
isExternal?: boolean
|
|
}) => {
|
|
return (
|
|
<Link href={pagePath} shallow={true}>
|
|
<a
|
|
className={`default-transition flex cursor-pointer px-4 md:hover:text-th-primary ${
|
|
active ? 'text-th-primary' : 'text-th-fgd-1'
|
|
} ${hideIconBg ? 'py-1' : 'py-2'}`}
|
|
>
|
|
<div className="flex w-full items-center justify-between">
|
|
<div className="flex items-center">
|
|
<div
|
|
className={
|
|
hideIconBg
|
|
? ''
|
|
: 'flex h-8 w-8 items-center justify-center rounded-full bg-th-bkg-3'
|
|
}
|
|
>
|
|
{icon}
|
|
</div>
|
|
<Transition
|
|
show={!collapsed}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-300"
|
|
enterFrom="opacity-50"
|
|
enterTo="opacity-100"
|
|
leave="transition ease-out duration-300"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<span className="ml-3 lg:text-base">{title}</span>
|
|
</Transition>
|
|
</div>
|
|
{isExternal ? <ExternalLinkIcon className="h-4 w-4" /> : null}
|
|
</div>
|
|
</a>
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
const ExpandableMenuItem = ({
|
|
alignBottom,
|
|
children,
|
|
collapsed,
|
|
hideIconBg,
|
|
icon,
|
|
title,
|
|
}: {
|
|
alignBottom?: boolean
|
|
children: ReactNode
|
|
collapsed: boolean
|
|
hideIconBg?: boolean
|
|
icon: ReactNode
|
|
title: string | ReactNode
|
|
}) => {
|
|
const [showMenu, setShowMenu] = useState(false)
|
|
|
|
const onHoverMenu = (open: boolean, action: string) => {
|
|
if (
|
|
(!open && action === 'onMouseEnter') ||
|
|
(open && action === 'onMouseLeave')
|
|
) {
|
|
setShowMenu(!open)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (collapsed) {
|
|
setShowMenu(false)
|
|
}
|
|
}, [collapsed])
|
|
|
|
const toggleMenu = () => {
|
|
setShowMenu(!showMenu)
|
|
}
|
|
|
|
return collapsed ? (
|
|
<Popover>
|
|
<div
|
|
onMouseEnter={
|
|
!alignBottom ? () => onHoverMenu(showMenu, 'onMouseEnter') : undefined
|
|
}
|
|
onMouseLeave={
|
|
!alignBottom ? () => onHoverMenu(showMenu, 'onMouseLeave') : undefined
|
|
}
|
|
className={`relative z-30 ${alignBottom ? '' : 'px-4 py-2'}`}
|
|
role="button"
|
|
>
|
|
<Popover.Button
|
|
className="md:hover:text-th-primary"
|
|
onClick={() => toggleMenu()}
|
|
>
|
|
<div
|
|
className={` ${
|
|
hideIconBg
|
|
? ''
|
|
: 'flex h-8 w-8 items-center justify-center rounded-full bg-th-bkg-3'
|
|
} ${
|
|
alignBottom
|
|
? 'flex h-[64px] w-[64px] items-center justify-center hover:bg-th-bkg-2'
|
|
: ''
|
|
}`}
|
|
>
|
|
{icon}
|
|
</div>
|
|
</Popover.Button>
|
|
<Transition
|
|
show={showMenu}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-300"
|
|
enterFrom="opacity-0 scale-90"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="transition ease-out duration-300"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Popover.Panel
|
|
className={`absolute z-20 rounded-md rounded-l-none border border-th-bkg-3 bg-th-bkg-1 py-2 ${
|
|
alignBottom
|
|
? 'bottom-0 left-[63px] w-72 rounded-b-none p-0'
|
|
: 'top-1/2 left-[63px] w-56 -translate-y-1/2'
|
|
}`}
|
|
>
|
|
{children}
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</div>
|
|
</Popover>
|
|
) : (
|
|
<Disclosure>
|
|
<div
|
|
onClick={() => setShowMenu(!showMenu)}
|
|
role="button"
|
|
className={`w-full px-4 py-2 ${
|
|
alignBottom ? 'h-[64px] hover:bg-th-bkg-2' : ''
|
|
}`}
|
|
>
|
|
<Disclosure.Button
|
|
className={`flex h-full w-full items-center justify-between rounded-none md:hover:text-th-primary`}
|
|
>
|
|
<div className="flex items-center">
|
|
<div
|
|
className={
|
|
hideIconBg
|
|
? ''
|
|
: 'flex h-8 w-8 items-center justify-center rounded-full bg-th-bkg-3'
|
|
}
|
|
>
|
|
{icon}
|
|
</div>
|
|
<Transition
|
|
appear={true}
|
|
show={!collapsed}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-300"
|
|
enterFrom="opacity-50"
|
|
enterTo="opacity-100"
|
|
leave="transition ease-out duration-300"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<span className="ml-3 lg:text-base">{title}</span>
|
|
</Transition>
|
|
</div>
|
|
<ChevronDownIcon
|
|
className={`${
|
|
showMenu ? 'rotate-180' : 'rotate-360'
|
|
} h-5 w-5 flex-shrink-0`}
|
|
/>
|
|
</Disclosure.Button>
|
|
</div>
|
|
<Transition
|
|
appear={true}
|
|
show={showMenu}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-500"
|
|
enterFrom="opacity-100 max-h-0"
|
|
enterTo="opacity-100 max-h-80"
|
|
leave="transition ease-out duration-500"
|
|
leaveFrom="opacity-100 max-h-80"
|
|
leaveTo="opacity-0 max-h-0"
|
|
>
|
|
<Disclosure.Panel className="w-full overflow-hidden">
|
|
<div className={`${!alignBottom ? 'ml-2.5' : ''}`}>{children}</div>
|
|
</Disclosure.Panel>
|
|
</Transition>
|
|
</Disclosure>
|
|
)
|
|
}
|