2021-03-30 15:47:08 -07:00
|
|
|
import { useState } from 'react'
|
|
|
|
import xw from 'xwind'
|
2021-04-05 07:32:11 -07:00
|
|
|
import styled from '@emotion/styled'
|
2021-04-12 06:32:01 -07:00
|
|
|
// import { useTheme } from 'next-themes'
|
2021-04-11 14:25:01 -07:00
|
|
|
import { SunIcon, MoonIcon, MenuIcon, XIcon } from '@heroicons/react/outline'
|
2021-03-30 15:47:08 -07:00
|
|
|
import MenuItem from './MenuItem'
|
2021-04-02 11:26:21 -07:00
|
|
|
import useWallet from '../hooks/useWallet'
|
2021-04-12 06:32:01 -07:00
|
|
|
import ThemeSwitch from './ThemeSwitch'
|
2021-03-30 15:47:08 -07:00
|
|
|
|
2021-04-05 07:32:11 -07:00
|
|
|
const Code = styled.code`
|
|
|
|
border: 1px solid hsla(0, 0%, 39.2%, 0.2);
|
|
|
|
border-radius: 3px;
|
|
|
|
background: hsla(0, 0%, 58.8%, 0.1);
|
|
|
|
`
|
2021-04-02 11:26:21 -07:00
|
|
|
|
2021-04-05 07:32:11 -07:00
|
|
|
const TopBar = () => {
|
2021-04-02 11:26:21 -07:00
|
|
|
const { connected, wallet } = useWallet()
|
2021-03-30 15:47:08 -07:00
|
|
|
const [showMenu, setShowMenu] = useState(false)
|
2021-04-12 06:32:01 -07:00
|
|
|
// const { theme, setTheme } = useTheme()
|
2021-03-30 15:47:08 -07:00
|
|
|
|
2021-04-02 11:26:21 -07:00
|
|
|
const handleConnectDisconnect = () => {
|
2021-03-30 15:47:08 -07:00
|
|
|
connected ? wallet.disconnect() : wallet.connect()
|
2021-04-02 11:26:21 -07:00
|
|
|
}
|
2021-03-30 15:47:08 -07:00
|
|
|
|
|
|
|
return (
|
2021-04-12 06:32:01 -07:00
|
|
|
<nav css={xw`bg-th-bkg-1`}>
|
2021-03-30 15:47:08 -07:00
|
|
|
<div css={xw`px-4 sm:px-6 lg:px-8`}>
|
|
|
|
<div css={xw`flex justify-between h-16`}>
|
|
|
|
<div css={xw`flex`}>
|
|
|
|
<div css={xw`flex-shrink-0 flex items-center`}>
|
|
|
|
<img
|
|
|
|
css={xw`h-8 w-auto`}
|
|
|
|
src="/assets/icons/logo.svg"
|
|
|
|
alt="next"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-04-11 14:25:01 -07:00
|
|
|
<div css={xw`hidden sm:flex sm:space-x-8 sm:ml-4`}>
|
2021-03-30 15:47:08 -07:00
|
|
|
<MenuItem href="/">Trade</MenuItem>
|
|
|
|
<MenuItem href="/stats">Stats</MenuItem>
|
|
|
|
<MenuItem href="https://docs.mango.markets/">Learn</MenuItem>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div css={xw`flex`}>
|
2021-04-11 14:25:01 -07:00
|
|
|
<div css={xw`flex items-center pr-1`}>
|
2021-04-12 06:32:01 -07:00
|
|
|
<ThemeSwitch />
|
|
|
|
{/*<button
|
2021-04-11 14:25:01 -07:00
|
|
|
type="button"
|
|
|
|
css={xw`inline-flex items-center justify-center p-2 rounded-md text-black dark:text-white hover:text-gray-400 focus:outline-none`}
|
|
|
|
onClick={() => setTheme(theme === 'dark' ? 'light' : 'dark')}
|
2021-03-30 15:47:08 -07:00
|
|
|
>
|
2021-04-11 14:25:01 -07:00
|
|
|
{theme === 'light' ? (
|
|
|
|
<MoonIcon css={xw`h-5 w-5`} />
|
|
|
|
) : (
|
|
|
|
<SunIcon css={xw`h-5 w-5`} />
|
|
|
|
)}
|
2021-04-12 06:32:01 -07:00
|
|
|
</button>*/}
|
2021-04-11 14:25:01 -07:00
|
|
|
<div css={xw`hidden sm:ml-4 sm:flex sm:items-center`}>
|
|
|
|
<button
|
|
|
|
onClick={handleConnectDisconnect}
|
2021-04-12 06:32:01 -07:00
|
|
|
css={xw`border border-th-primary hover:bg-th-primary rounded-md px-4 py-2 focus:outline-none text-base text-th-primary hover:text-th-fgd-1 font-semibold`}
|
2021-04-11 14:25:01 -07:00
|
|
|
>
|
2021-04-12 06:32:01 -07:00
|
|
|
<div>
|
2021-04-11 14:25:01 -07:00
|
|
|
{connected ? (
|
|
|
|
<div onClick={wallet.disconnect}>
|
|
|
|
<span>Disconnect: </span>
|
2021-04-12 06:32:01 -07:00
|
|
|
<Code
|
|
|
|
css={xw`text-xs p-1 text-th-fgd-1 font-extralight`}
|
|
|
|
>
|
2021-04-11 14:25:01 -07:00
|
|
|
{wallet.publicKey.toString().substr(0, 4) +
|
|
|
|
'...' +
|
|
|
|
wallet.publicKey.toString().substr(-4)}
|
|
|
|
</Code>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
'Connect Wallet'
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-03-30 15:47:08 -07:00
|
|
|
</div>
|
2021-04-11 14:25:01 -07:00
|
|
|
<div css={xw`-mr-2 flex items-center sm:hidden`}>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
css={xw`inline-flex items-center justify-center p-2 rounded-md text-black dark:text-white hover:text-gray-400 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-mango-orange`}
|
|
|
|
aria-controls="mobile-menu"
|
|
|
|
aria-expanded="false"
|
|
|
|
onClick={() => setShowMenu((showMenu) => !showMenu)}
|
2021-03-30 15:47:08 -07:00
|
|
|
>
|
2021-04-11 14:25:01 -07:00
|
|
|
<span css={xw`sr-only`}>Open main menu</span>
|
|
|
|
{showMenu ? (
|
|
|
|
<XIcon css={xw`h-5 w-5`} />
|
|
|
|
) : (
|
|
|
|
<MenuIcon css={xw`h-5 w-5`} />
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-03-30 15:47:08 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
css={[showMenu ? xw`visible` : xw`hidden`, xw`sm:hidden`]}
|
|
|
|
id="mobile-menu"
|
|
|
|
>
|
2021-04-11 14:25:01 -07:00
|
|
|
<div css={xw`bg-mango-grey-dark pt-2 pb-3 space-y-1`}>
|
2021-03-30 15:47:08 -07:00
|
|
|
<MenuItem href="/">Trade</MenuItem>
|
|
|
|
<MenuItem href="/stats">Stats</MenuItem>
|
|
|
|
<MenuItem href="https://docs.mango.markets/">Learn</MenuItem>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TopBar
|