diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-21 07:54:26 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-21 07:54:26 +0000 |
| commit | 14f61e24947fb92dd71ec0a7196a6e815f8e66da (patch) | |
| tree | 317c501d64662d05914330628f867467fba78132 /lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx | |
| parent | 194bd4bd7e6144d5c09c5e3f5476d254234dce72 (diff) | |
(최겸)기술영업 RFQ 담당자 초대, 요구사항 반영
Diffstat (limited to 'lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx')
| -rw-r--r-- | lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx | 158 |
1 files changed, 79 insertions, 79 deletions
diff --git a/lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx b/lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx index a8c2d08c..3ccca4eb 100644 --- a/lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx +++ b/lib/techsales-rfq/table/rfq-table-toolbar-actions.tsx @@ -1,80 +1,80 @@ -"use client" - -import * as React from "react" -import { Download, RefreshCw } from "lucide-react" -import { toast } from "sonner" - -import { exportTableToExcel } from "@/lib/export" -import { Button } from "@/components/ui/button" -import { type Table } from "@tanstack/react-table" -import { CreateShipRfqDialog } from "./create-rfq-ship-dialog" -import { CreateTopRfqDialog } from "./create-rfq-top-dialog" -import { CreateHullRfqDialog } from "./create-rfq-hull-dialog" - -interface RFQTableToolbarActionsProps<TData> { - selection: Table<TData>; - onRefresh?: () => void; - rfqType?: "SHIP" | "TOP" | "HULL"; -} - -export function RFQTableToolbarActions<TData>({ - selection, - onRefresh, - rfqType = "SHIP" -}: RFQTableToolbarActionsProps<TData>) { - - // 데이터 새로고침 - const handleRefresh = () => { - if (onRefresh) { - onRefresh(); - toast.success("데이터를 새로고침했습니다"); - } - } - - // RFQ 타입에 따른 다이얼로그 렌더링 - const renderRfqDialog = () => { - switch (rfqType) { - case "TOP": - return <CreateTopRfqDialog onCreated={onRefresh} />; - case "HULL": - return <CreateHullRfqDialog onCreated={onRefresh} />; - case "SHIP": - default: - return <CreateShipRfqDialog onCreated={onRefresh} />; - } - } - - return ( - <div className="flex items-center gap-2"> - {/* RFQ 생성 다이얼로그 */} - {renderRfqDialog()} - - {/* 새로고침 버튼 */} - <Button - variant="outline" - size="sm" - onClick={handleRefresh} - className="gap-2" - > - <RefreshCw className="size-4" aria-hidden="true" /> - <span className="hidden sm:inline">새로고침</span> - </Button> - - {/* 내보내기 버튼 */} - <Button - variant="outline" - size="sm" - onClick={() => - exportTableToExcel(selection, { - filename: "tech_sales_rfq", - excludeColumns: ["select", "actions"], - }) - } - className="gap-2" - > - <Download className="size-4" aria-hidden="true" /> - <span className="hidden sm:inline">내보내기</span> - </Button> - </div> - ) +"use client"
+
+import * as React from "react"
+import { Download, RefreshCw } from "lucide-react"
+import { toast } from "sonner"
+
+import { exportTableToExcel } from "@/lib/export"
+import { Button } from "@/components/ui/button"
+import { type Table } from "@tanstack/react-table"
+import { CreateShipRfqDialog } from "./create-rfq-ship-dialog"
+import { CreateTopRfqDialog } from "./create-rfq-top-dialog"
+import { CreateHullRfqDialog } from "./create-rfq-hull-dialog"
+
+interface RFQTableToolbarActionsProps<TData> {
+ selection: Table<TData>;
+ onRefresh?: () => void;
+ rfqType?: "SHIP" | "TOP" | "HULL";
+}
+
+export function RFQTableToolbarActions<TData>({
+ selection,
+ onRefresh,
+ rfqType = "SHIP"
+}: RFQTableToolbarActionsProps<TData>) {
+
+ // 데이터 새로고침
+ const handleRefresh = () => {
+ if (onRefresh) {
+ onRefresh();
+ toast.success("데이터를 새로고침했습니다");
+ }
+ }
+
+ // RFQ 타입에 따른 다이얼로그 렌더링
+ const renderRfqDialog = () => {
+ switch (rfqType) {
+ case "TOP":
+ return <CreateTopRfqDialog onCreated={onRefresh} />;
+ case "HULL":
+ return <CreateHullRfqDialog onCreated={onRefresh} />;
+ case "SHIP":
+ default:
+ return <CreateShipRfqDialog onCreated={onRefresh} />;
+ }
+ }
+
+ return (
+ <div className="flex items-center gap-2">
+ {/* RFQ 생성 다이얼로그 */}
+ {renderRfqDialog()}
+
+ {/* 새로고침 버튼 */}
+ <Button
+ variant="outline"
+ size="sm"
+ onClick={handleRefresh}
+ className="gap-2"
+ >
+ <RefreshCw className="size-4" aria-hidden="true" />
+ <span className="hidden sm:inline">새로고침</span>
+ </Button>
+
+ {/* 내보내기 버튼 */}
+ <Button
+ variant="outline"
+ size="sm"
+ onClick={() =>
+ exportTableToExcel(selection, {
+ filename: "tech_sales_rfq",
+ excludeColumns: ["select", "actions"],
+ })
+ }
+ className="gap-2"
+ >
+ <Download className="size-4" aria-hidden="true" />
+ <span className="hidden sm:inline">내보내기</span>
+ </Button>
+ </div>
+ )
}
\ No newline at end of file |
