146 lines
3.3 KiB
TypeScript
Vendored
146 lines
3.3 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
'use client'
|
|
|
|
import * as React from 'react'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
type TableProps = React.ComponentProps<'table'> & {
|
|
containerClassName?: string
|
|
containerProps?: Omit<React.ComponentProps<'div'>, 'children' | 'className'>
|
|
}
|
|
|
|
function Table({
|
|
className,
|
|
containerClassName,
|
|
containerProps,
|
|
...props
|
|
}: TableProps) {
|
|
return (
|
|
<div
|
|
data-slot='table-container'
|
|
className={cn('relative w-full overflow-x-auto', containerClassName)}
|
|
{...containerProps}
|
|
>
|
|
<table
|
|
data-slot='table'
|
|
className={cn('w-full caption-bottom text-sm', className)}
|
|
{...props}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function TableHeader({ className, ...props }: React.ComponentProps<'thead'>) {
|
|
return (
|
|
<thead
|
|
data-slot='table-header'
|
|
className={cn('[&_tr]:border-b', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableBody({ className, ...props }: React.ComponentProps<'tbody'>) {
|
|
return (
|
|
<tbody
|
|
data-slot='table-body'
|
|
className={cn('[&_tr:last-child]:border-0', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableFooter({ className, ...props }: React.ComponentProps<'tfoot'>) {
|
|
return (
|
|
<tfoot
|
|
data-slot='table-footer'
|
|
className={cn(
|
|
'border-t bg-muted/50 font-medium [&>tr]:last:border-b-0',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableRow({ className, ...props }: React.ComponentProps<'tr'>) {
|
|
return (
|
|
<tr
|
|
data-slot='table-row'
|
|
className={cn(
|
|
'border-b transition-colors hover:bg-muted/50 has-aria-expanded:bg-muted/50 data-[state=selected]:bg-muted',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableHead({ className, ...props }: React.ComponentProps<'th'>) {
|
|
return (
|
|
<th
|
|
data-slot='table-head'
|
|
className={cn(
|
|
'h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableCell({ className, ...props }: React.ComponentProps<'td'>) {
|
|
return (
|
|
<td
|
|
data-slot='table-cell'
|
|
className={cn(
|
|
'p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableCaption({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'caption'>) {
|
|
return (
|
|
<caption
|
|
data-slot='table-caption'
|
|
className={cn('mt-4 text-sm text-muted-foreground', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
Table,
|
|
TableHeader,
|
|
TableBody,
|
|
TableFooter,
|
|
TableHead,
|
|
TableRow,
|
|
TableCell,
|
|
TableCaption,
|
|
}
|