mango-ui-v3/components/TableElements.tsx

118 lines
3.0 KiB
TypeScript

import { Disclosure } from '@headlessui/react'
import { ChevronDownIcon } from '@heroicons/react/outline'
export const Table = ({ children }) => (
<table className="min-w-full divide-y divide-th-bkg-2">{children}</table>
)
export const TrHead = ({ children }) => (
<tr className="text-th-fgd-3 text-xs">{children}</tr>
)
export const Th = ({ children }) => (
<th className="px-4 pb-2 text-left font-normal" scope="col">
{children}
</th>
)
export const TrBody = ({ children, index }) => (
<tr
className={`border-b border-th-bkg-3
${
index % 2 === 0
? `bg-[rgba(255,255,255,0.03)]`
: `bg-[rgba(255,255,255,0.07)]`
}
`}
>
{children}
</tr>
)
export const Td = ({ children }) => (
<td className="px-4 py-3.5 whitespace-nowrap text-sm text-th-fgd-1">
{children}
</td>
)
type ExpandableRowProps = {
buttonTemplate: React.ReactNode
index: number
panelTemplate: React.ReactNode
rounded?: boolean
}
export const ExpandableRow = ({
buttonTemplate,
index,
panelTemplate,
rounded,
}: ExpandableRowProps) => {
return (
<Disclosure>
{({ open }) => (
<>
<Disclosure.Button
className={`${
index % 2 === 0 ? `bg-th-bkg-3` : `bg-th-bkg-4`
} default-transition font-normal p-4 text-th-fgd-1 w-full hover:filter hover:brightness-90 focus:outline-none ${
rounded
? open
? 'rounded-b-none'
: 'rounded-md'
: 'rounded-none'
}`}
>
<div className="grid grid-cols-12 grid-rows-1">
{buttonTemplate}
<div className="flex items-center justify-end">
<ChevronDownIcon
className={`${
open ? 'transform rotate-180' : 'transform rotate-360'
} default-transition h-5 flex-shrink-0 w-5 text-th-primary`}
/>
</div>
</div>
</Disclosure.Button>
<Disclosure.Panel
className={`${
index % 2 === 0
? `bg-[rgba(255,255,255,0.03)]`
: `bg-[rgba(255,255,255,0.07)]`
} px-4 ${
rounded
? open
? 'rounded-b-md'
: 'rounded-none'
: 'rounded-none'
}`}
>
<div className="grid grid-cols-2 grid-rows-1 gap-4 py-4">
{panelTemplate}
</div>
</Disclosure.Panel>
</>
)}
</Disclosure>
)
}
type RowProps = {
children: React.ReactNode
index: number
}
export const Row = ({ children, index }: RowProps) => {
return (
<div
className={`${
index % 2 === 0
? `bg-[rgba(255,255,255,0.03)]`
: `bg-[rgba(255,255,255,0.07)]`
} default-transition font-normal p-4 rounded-none text-th-fgd-1 w-full`}
>
<div className="grid grid-cols-12 grid-rows-1 gap-4">{children}</div>
</div>
)
}