mango-ui-v3/components/MarketMenuItem.tsx

79 lines
2.5 KiB
TypeScript

import { useState } from 'react'
import { useRouter } from 'next/router'
import { QuestionMarkCircleIcon } from '@heroicons/react/outline'
import Link from 'next/link'
import * as MonoIcons from './icons'
import { initialMarket } from './SettingsModal'
// const isMarketSelected = ()
export default function MarketMenuItem({ menuTitle = '', linksArray = [] }) {
const { asPath } = useRouter()
const [openState, setOpenState] = useState(false)
const iconName = `${menuTitle.slice(0, 1)}${menuTitle
.slice(1, 4)
.toLowerCase()}MonoIcon`
const SymbolIcon = MonoIcons[iconName] || QuestionMarkCircleIcon
const onHover = (open, action) => {
if (
(!open && action === 'onMouseEnter') ||
(open && action === 'onMouseLeave')
) {
setOpenState((openState) => !openState)
}
}
const isSelected =
asPath.includes(`=${menuTitle}`) ||
(asPath === '/' && initialMarket.name.includes(menuTitle))
return (
<div className="relative">
<div
onMouseEnter={() => onHover(openState, 'onMouseEnter')}
onMouseLeave={() => onHover(openState, 'onMouseLeave')}
className="cursor-pointer flex flex-col h-10 px-3"
>
<div
className={`default-transition flex items-center h-10 text-th-fgd-3 hover:text-th-primary focus:outline-none ${
isSelected ? 'text-th-primary' : ''
}`}
>
<SymbolIcon className={`hidden lg:block h-3.5 w-auto mr-1.5 `} />
<span className={`font-normal text-xs`}>{menuTitle}</span>
</div>
{openState ? (
<div className="absolute top-10 z-10">
<div className="relative bg-th-bkg-3 divide-y divide-th-fgd-4 px-3 rounded rounded-t-none">
{linksArray.map((m) => (
<Link
href={{
pathname: '/',
query: { name: m.name },
}}
key={m.name}
shallow={true}
>
<a
className={`block py-2 text-xs hover:text-th-primary whitespace-nowrap ${
asPath.includes(m.name) ||
(asPath === '/' && initialMarket.name === m.name)
? 'text-th-primary'
: 'text-th-fgd-1'
}`}
>
{m.name}
</a>
</Link>
))}
</div>
</div>
) : null}
</div>
</div>
)
}