From e0dfb55c5457aec489fc084c4567e791b4c65eb1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 26 Mar 2025 00:37:41 +0000 Subject: 3/25 까지의 대표님 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tasks/table/tasks-table.tsx | 197 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 lib/tasks/table/tasks-table.tsx (limited to 'lib/tasks/table/tasks-table.tsx') diff --git a/lib/tasks/table/tasks-table.tsx b/lib/tasks/table/tasks-table.tsx new file mode 100644 index 00000000..ab448a7b --- /dev/null +++ b/lib/tasks/table/tasks-table.tsx @@ -0,0 +1,197 @@ +"use client" + +import * as React from "react" +import { tasks, type Task } from "@/db/schema/tasks" +import type { + DataTableAdvancedFilterField, + DataTableFilterField, + DataTableRowAction, +} from "@/types/table" + +import { toSentenceCase } from "@/lib/utils" +import { useDataTable } from "@/hooks/use-data-table" +import { DataTable } from "@/components/data-table/data-table" +import { DataTableAdvancedToolbar } from "@/components/data-table/data-table-advanced-toolbar" +import { DataTableToolbar } from "@/components/data-table/data-table-toolbar" + +import type { + getTaskPriorityCounts, + getTasks, + getTaskStatusCounts, +} from "@/lib//tasks/service" +import { getPriorityIcon, getStatusIcon } from "@/lib/tasks/utils" +import { DeleteTasksDialog } from "./delete-tasks-dialog" +import { useFeatureFlags } from "./feature-flags-provider" +import { getColumns } from "./tasks-table-columns" +import { TasksTableFloatingBar } from "./tasks-table-floating-bar" +import { TasksTableToolbarActions } from "./tasks-table-toolbar-actions" +import { UpdateTaskSheet } from "./update-task-sheet" + +interface TasksTableProps { + promises: Promise< + [ + Awaited>, + Awaited>, + Awaited>, + ] + > +} + +export function TasksTable({ promises }: TasksTableProps) { + const { featureFlags } = useFeatureFlags() + + const [{ data, pageCount }, statusCounts, priorityCounts] = + React.use(promises) + + + + const [rowAction, setRowAction] = + React.useState | null>(null) + + const columns = React.useMemo( + () => getColumns({ setRowAction }), + [setRowAction] + ) + + /** + * This component can render either a faceted filter or a search filter based on the `options` prop. + * + * @prop options - An array of objects, each representing a filter option. If provided, a faceted filter is rendered. If not, a search filter is rendered. + * + * Each `option` object has the following properties: + * @prop {string} label - The label for the filter option. + * @prop {string} value - The value for the filter option. + * @prop {React.ReactNode} [icon] - An optional icon to display next to the label. + * @prop {boolean} [withCount] - An optional boolean to display the count of the filter option. + */ + const filterFields: DataTableFilterField[] = [ + { + id: "title", + label: "Title", + placeholder: "Filter titles...", + }, + { + id: "status", + label: "Status", + options: tasks.status.enumValues.map((status) => ({ + label: toSentenceCase(status), + value: status, + icon: getStatusIcon(status), + count: statusCounts[status], + })), + }, + { + id: "priority", + label: "Priority", + options: tasks.priority.enumValues.map((priority) => ({ + label: toSentenceCase(priority), + value: priority, + icon: getPriorityIcon(priority), + count: priorityCounts[priority], + })), + }, + ] + + /** + * Advanced filter fields for the data table. + * These fields provide more complex filtering options compared to the regular filterFields. + * + * Key differences from regular filterFields: + * 1. More field types: Includes 'text', 'multi-select', 'date', and 'boolean'. + * 2. Enhanced flexibility: Allows for more precise and varied filtering options. + * 3. Used with DataTableAdvancedToolbar: Enables a more sophisticated filtering UI. + * 4. Date and boolean types: Adds support for filtering by date ranges and boolean values. + */ + const advancedFilterFields: DataTableAdvancedFilterField[] = [ + { + id: "code", + label: "Task", + type: "text", + }, + { + id: "title", + label: "Title", + type: "text", + }, + { + id: "label", + label: "Label", + type: "text", + }, + { + id: "status", + label: "Status", + type: "multi-select", + options: tasks.status.enumValues.map((status) => ({ + label: toSentenceCase(status), + value: status, + icon: getStatusIcon(status), + count: statusCounts[status], + })), + }, + { + id: "priority", + label: "Priority", + type: "multi-select", + options: tasks.priority.enumValues.map((priority) => ({ + label: toSentenceCase(priority), + value: priority, + icon: getPriorityIcon(priority), + count: priorityCounts[priority], + })), + }, + { + id: "createdAt", + label: "Created at", + type: "date", + }, + ] + + + const { table } = useDataTable({ + data, + columns, + pageCount, + filterFields, + enablePinning: true, + enableAdvancedFilter: true, + initialState: { + sorting: [{ id: "createdAt", desc: true }], + columnPinning: { right: ["actions"] }, + }, + getRowId: (originalRow) => originalRow.id, + shallow: false, + clearOnDefault: true, + }) + + return ( + <> + } + > + + + + + + + setRowAction(null)} + task={rowAction?.row.original ?? null} + /> + setRowAction(null)} + tasks={rowAction?.row.original ? [rowAction?.row.original] : []} + showTrigger={false} + onSuccess={() => rowAction?.row.toggleSelected(false)} + /> + + ) +} -- cgit v1.2.3