- Updated the BOM management page to streamline the layout by moving the edit button to the top right for better accessibility. - Enhanced the DataGrid and EDataTable components to support a no-wrapper option, allowing for sticky headers to function correctly with parent overflow settings. - Adjusted the Sales Order page to utilize the new noWrapper feature for the table, ensuring consistent styling and behavior. - Enabled sticky headers in the V2 table list definition for improved data visibility during scrolling. These changes aim to enhance the user experience by providing a more intuitive and organized interface for managing BOM and sales order data across multiple companies.
79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
interface TableProps extends React.ComponentProps<"table"> {
|
|
noWrapper?: boolean;
|
|
divClassName?: string;
|
|
}
|
|
|
|
function Table({ className, noWrapper, divClassName, ...props }: TableProps) {
|
|
// noWrapper 여부 관계없이 wrapper를 제거하여 sticky header가 부모 overflow-auto 기준으로 동작하도록 함
|
|
// 가로 스크롤은 부모의 overflow-auto에서 처리
|
|
return <table data-slot="table" className={cn("w-full caption-bottom text-sm", className)} {...props} />;
|
|
}
|
|
|
|
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(className)} {...props} />;
|
|
}
|
|
|
|
function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
|
|
return (
|
|
<tfoot
|
|
data-slot="table-footer"
|
|
className={cn("bg-muted/50 font-medium", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
|
|
return (
|
|
<tr
|
|
data-slot="table-row"
|
|
className={cn("hover:bg-muted/50 data-[state=selected]:bg-muted border-b border-border/60 transition-colors", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function TableHead({ className, ...props }: React.ComponentProps<"th">) {
|
|
return (
|
|
<th
|
|
data-slot="table-head"
|
|
className={cn(
|
|
"text-foreground h-10 px-3.5 text-left align-middle font-medium whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function TableCell({ className, ...props }: React.ComponentProps<"td">) {
|
|
return (
|
|
<td
|
|
data-slot="table-cell"
|
|
className={cn(
|
|
"px-3.5 py-2.5 align-middle whitespace-nowrap text-[13px] [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function TableCaption({ className, ...props }: React.ComponentProps<"caption">) {
|
|
return (
|
|
<caption data-slot="table-caption" className={cn("text-muted-foreground mt-4 text-sm", className)} {...props} />
|
|
);
|
|
}
|
|
|
|
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };
|