175 lines
6.2 KiB
TypeScript
175 lines
6.2 KiB
TypeScript
import { Fragment, useCallback, useMemo, useRef, useState } from 'react'
|
|
import useMangoGroupConfig from '../hooks/useMangoGroupConfig'
|
|
import { Popover, Transition } from '@headlessui/react'
|
|
import { SearchIcon } from '@heroicons/react/outline'
|
|
import { ChevronDownIcon } from '@heroicons/react/solid'
|
|
import Input from './Input'
|
|
import { useTranslation } from 'next-i18next'
|
|
import MarketNavItem from './MarketNavItem'
|
|
import useMangoStore from '../stores/useMangoStore'
|
|
|
|
const SwitchMarketDropdown = () => {
|
|
const groupConfig = useMangoGroupConfig()
|
|
const marketConfig = useMangoStore((s) => s.selectedMarket.config)
|
|
const baseSymbol = marketConfig.baseSymbol
|
|
const isPerpMarket = marketConfig.kind === 'perp'
|
|
|
|
const marketsInfo = useMangoStore((s) => s.marketsInfo)
|
|
|
|
const perpMarketsInfo = useMemo(
|
|
() =>
|
|
marketsInfo
|
|
.filter((mkt) => mkt?.name.includes('PERP'))
|
|
.sort((a, b) => b.volumeUsd24h - a.volumeUsd24h),
|
|
[marketsInfo]
|
|
)
|
|
|
|
const spotMarketsInfo = useMemo(
|
|
() =>
|
|
marketsInfo
|
|
.filter((mkt) => mkt?.name.includes('USDC'))
|
|
.sort((a, b) => b.volumeUsd24h - a.volumeUsd24h),
|
|
[marketsInfo]
|
|
)
|
|
|
|
const [suggestions, setSuggestions] = useState([])
|
|
const [searchString, setSearchString] = useState('')
|
|
const buttonRef = useRef(null)
|
|
const { t } = useTranslation('common')
|
|
const filteredMarkets = marketsInfo
|
|
.filter((m) => m.name.toLowerCase().includes(searchString.toLowerCase()))
|
|
.sort((a, b) => a.name.localeCompare(b.name))
|
|
|
|
const onSearch = (searchString) => {
|
|
if (searchString.length > 0) {
|
|
const newSuggestions = suggestions.filter((v) =>
|
|
v.name.toLowerCase().includes(searchString.toLowerCase())
|
|
)
|
|
setSuggestions(newSuggestions)
|
|
}
|
|
setSearchString(searchString)
|
|
}
|
|
|
|
const callbackRef = useCallback((inputElement) => {
|
|
if (inputElement) {
|
|
const timer = setTimeout(() => inputElement.focus(), 200)
|
|
return () => clearTimeout(timer)
|
|
}
|
|
}, [])
|
|
|
|
return (
|
|
<Popover>
|
|
{({ open }) => (
|
|
<div className="relative flex flex-col">
|
|
<Popover.Button
|
|
className={`border border-th-bkg-3 p-0.5 transition-none hover:border-th-bkg-4 focus:border-th-bkg-4 focus:outline-none ${
|
|
open && 'border-th-fgd-4'
|
|
}`}
|
|
ref={buttonRef}
|
|
>
|
|
<div className="flex items-center pl-2">
|
|
<img
|
|
alt=""
|
|
width="24"
|
|
height="24"
|
|
src={`/assets/icons/${baseSymbol?.toLowerCase()}.svg`}
|
|
className={`mr-2.5`}
|
|
/>
|
|
|
|
<div className="pr-0.5 text-xl font-semibold">{baseSymbol}</div>
|
|
<span className="text-xl text-th-fgd-4">
|
|
{isPerpMarket ? '-' : '/'}
|
|
</span>
|
|
<div className="pl-0.5 text-xl font-semibold">
|
|
{isPerpMarket ? 'PERP' : groupConfig.quoteSymbol}
|
|
</div>
|
|
<div
|
|
className={`flex h-10 w-8 items-center justify-center rounded-none`}
|
|
>
|
|
<ChevronDownIcon
|
|
className={`default-transition h-6 w-6 ${
|
|
open ? 'rotate-180 transform' : 'rotate-360 transform'
|
|
}`}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Popover.Button>
|
|
<Transition
|
|
as={Fragment}
|
|
enter="transition-all ease-in duration-200"
|
|
enterFrom="opacity-0 transform scale-75"
|
|
enterTo="opacity-100 transform scale-100"
|
|
leave="transition ease-out duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Popover.Panel
|
|
className="thin-scroll absolute left-0 top-14 z-10 max-h-[75vh] w-72 transform overflow-y-auto rounded-b-md rounded-tl-md bg-th-bkg-3 p-4"
|
|
tabIndex={-1}
|
|
>
|
|
<div className="pb-2.5">
|
|
<Input
|
|
onChange={(e) => onSearch(e.target.value)}
|
|
prefix={<SearchIcon className="h-4 w-4 text-th-fgd-3" />}
|
|
ref={callbackRef}
|
|
type="text"
|
|
value={searchString}
|
|
/>
|
|
</div>
|
|
{searchString.length > 0 ? (
|
|
<div className="pt-1.5">
|
|
{filteredMarkets.length > 0 ? (
|
|
filteredMarkets.map((mkt) => (
|
|
<MarketNavItem
|
|
buttonRef={buttonRef}
|
|
onClick={() => setSearchString('')}
|
|
market={mkt}
|
|
key={mkt.name}
|
|
/>
|
|
))
|
|
) : (
|
|
<p className="mb-0 text-center">{t('no-markets')}</p>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<div className="">
|
|
<div className="flex justify-between py-1.5">
|
|
<h4 className="text-xs font-normal">{t('futures')}</h4>
|
|
<p className="mb-0 text-xs text-th-fgd-3">
|
|
{t('favorite')}
|
|
</p>
|
|
</div>
|
|
{perpMarketsInfo.map((mkt) => (
|
|
<MarketNavItem
|
|
buttonRef={buttonRef}
|
|
onClick={() => setSearchString('')}
|
|
market={mkt}
|
|
key={mkt.name}
|
|
/>
|
|
))}
|
|
<div className="flex justify-between py-1.5">
|
|
<h4 className="text-xs font-normal">{t('spot')}</h4>
|
|
<p className="mb-0 text-xs text-th-fgd-3">
|
|
{t('favorite')}
|
|
</p>
|
|
</div>
|
|
{spotMarketsInfo.map((mkt) => (
|
|
<MarketNavItem
|
|
buttonRef={buttonRef}
|
|
onClick={() => setSearchString('')}
|
|
market={mkt}
|
|
key={mkt.name}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</div>
|
|
)}
|
|
</Popover>
|
|
)
|
|
}
|
|
|
|
export default SwitchMarketDropdown
|