mango-ui-v2/components/TradeHistoryTable.tsx

130 lines
4.7 KiB
TypeScript
Raw Normal View History

import xw from 'xwind'
import { useOpenOrders } from '../hooks/useOpenOrders'
const TradeHistoryTable = () => {
const openOrders = useOpenOrders()
return (
<div css={xw`flex flex-col py-6`}>
<div css={xw`-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8`}>
<div css={xw`align-middle inline-block min-w-full sm:px-6 lg:px-8`}>
{openOrders ? (
<div
css={xw`shadow overflow-hidden border-b border-mango-dark-light sm:rounded-md`}
>
<table css={xw`min-w-full divide-y divide-mango-dark-light`}>
<thead>
<tr>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Coin
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Wallet Balance
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Deposits
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Borrows
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
In Orders
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Unsettled
</th>
<th
scope="col"
css={xw`px-6 py-3 text-left text-base font-medium text-gray-300 tracking-wider`}
>
Net
</th>
</tr>
</thead>
<tbody>
{openOrders.map((order, index) => (
<tr
key={`${order.orderId}${order.side}`}
css={
index % 2 === 0
? xw`bg-mango-dark-light`
: xw`bg-mango-dark-lighter`
}
>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.marketName}
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
<div
css={xw`rounded inline-block bg-mango-green px-2 py-1 text-mango-dark font-bold`}
>
{order.side.toUpperCase()}
</div>
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.size}
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.price}
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.price}
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.price}
</td>
<td
css={xw`px-6 py-4 whitespace-nowrap text-sm text-gray-300 font-light`}
>
{order.price}
</td>
</tr>
))}
</tbody>
</table>
</div>
) : (
<div
css={xw`w-full text-center py-6 text-lg bg-mango-dark-light font-light text-mango-med`}
>
No open orders
</div>
)}
</div>
</div>
</div>
)
}
export default TradeHistoryTable