Files
2026-01-21 11:18:02 +07:00

66 lines
1.8 KiB
TypeScript

import React, { useState } from "react";
import { Amount } from "./Amount";
import { Address } from "@scaffold-ui/components";
import { Address as AddressType, formatEther } from "viem";
export type Winner = {
address: AddressType;
amount: bigint;
};
export type WinnerEventsProps = {
winners: Winner[];
};
export const WinnerEvents = ({ winners }: WinnerEventsProps) => {
const [showUsdPrice, setShowUsdPrice] = useState(true);
return (
<div className="mx-10">
<div className="flex w-auto justify-center h-10">
<p className="flex justify-center text-lg font-bold">Winner Events</p>
</div>
<table className="mt-4 p-2 bg-base-100 table table-zebra shadow-lg w-full overflow-hidden">
<thead className="text-accent text-lg">
<tr>
<th className="bg-primary" colSpan={3}>
Address
</th>
<th
className="bg-primary"
colSpan={2}
onClick={() => {
setShowUsdPrice(!showUsdPrice);
}}
>
Won
</th>
</tr>
</thead>
<tbody>
{winners.map(({ address, amount }, i) => (
<tr key={i}>
<td colSpan={3}>
<Address address={address} size="lg" />
</td>
<td
colSpan={2}
onClick={() => {
setShowUsdPrice(!showUsdPrice);
}}
>
<Amount
showUsdPrice={showUsdPrice}
amount={Number(formatEther(amount))}
disableToggle
className="text-lg"
/>
</td>
</tr>
))}
</tbody>
</table>
</div>
);
};