mango-ui-v3/components/UserInfo.tsx

87 lines
2.5 KiB
TypeScript
Raw Normal View History

import { useState } from 'react'
import FloatingElement from './FloatingElement'
2021-04-05 14:38:59 -07:00
import OpenOrdersTable from './OpenOrdersTable'
// import BalancesTable from './BalancesTable'
import TradeHistoryTable from './TradeHistoryTable'
// import FeeDiscountsTable from './FeeDiscountsTable'
2021-04-05 14:38:59 -07:00
// const TABS = ['Open Orders', 'Balances', 'Trade History', 'Fee Discounts']
const TABS = ['Open Orders', 'Trade History']
2021-04-05 14:38:59 -07:00
const UserInfoTabs = ({ activeTab, setActiveTab }) => {
const handleTabChange = (tabName) => {
setActiveTab(tabName)
}
return (
<div>
<div className={`sm:hidden`}>
<label htmlFor="tabs" className={`sr-only`}>
2021-04-05 14:38:59 -07:00
Select a tab
</label>
<select
id="tabs"
name="tabs"
2021-04-24 19:10:28 -07:00
className={`block w-full pl-3 pr-10 py-2 bg-th-bkg-2 border border-th-fgd-4 focus:outline-none sm:text-sm rounded-md`}
2021-04-05 14:38:59 -07:00
onChange={(e) => handleTabChange(e.target.value)}
>
{TABS.map((tabName) => (
<option key={tabName} value={tabName}>
{tabName}
</option>
))}
</select>
</div>
<div className={`hidden sm:block`}>
<div className={`border-b border-th-fgd-4`}>
<nav className={`-mb-px flex space-x-6`} aria-label="Tabs">
2021-04-05 14:38:59 -07:00
{TABS.map((tabName) => (
<a
key={tabName}
onClick={() => handleTabChange(tabName)}
className={`whitespace-nowrap py-4 px-1 border-b-2 font-semibold cursor-pointer default-transition hover:opacity-100
${
activeTab === tabName
2021-04-16 04:50:56 -07:00
? `border-th-primary text-th-primary`
2021-04-16 07:08:33 -07:00
: `border-transparent text-th-fgd-4 hover:text-th-primary`
}
`}
2021-04-05 14:38:59 -07:00
>
{tabName}
</a>
))}
</nav>
</div>
</div>
</div>
)
}
const TabContent = ({ activeTab }) => {
switch (activeTab) {
case 'Orders':
return <OpenOrdersTable />
// case 'Balances':
// return <BalancesTable />
case 'Trade History':
return <TradeHistoryTable />
// case 'Fee Discounts':
// return <FeeDiscountsTable />
default:
return <OpenOrdersTable />
}
}
const UserInfo = () => {
2021-04-05 14:38:59 -07:00
const [activeTab, setActiveTab] = useState(TABS[0])
return (
<FloatingElement>
2021-04-05 14:38:59 -07:00
<UserInfoTabs activeTab={activeTab} setActiveTab={setActiveTab} />
<TabContent activeTab={activeTab} />
</FloatingElement>
)
}
export default UserInfo