summaryrefslogtreecommitdiff
path: root/components/data-table/data-table-advanced-toolbar.tsx
blob: 256dc125784a3625f1a3ec9944dbb85d48d1996e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
"use client"

import * as React from "react"
import type { DataTableAdvancedFilterField } from "@/types/table"
import { type Table } from "@tanstack/react-table"
import { LayoutGrid, TableIcon } from "lucide-react" 
import { Button } from "@/components/ui/button"

import { cn } from "@/lib/utils"
import { DataTableFilterList } from "@/components/data-table/data-table-filter-list"
import { DataTableSortList } from "@/components/data-table/data-table-sort-list"
import { DataTableViewOptions } from "@/components/data-table/data-table-view-options"
import { DataTablePinList } from "./data-table-pin"
import { PinLeftButton } from "./data-table-pin-left"
import { PinRightButton } from "./data-table-pin-right"
import { DataTableGlobalFilter } from "./data-table-grobal-filter"
import { DataTableGroupList } from "./data-table-group-list"

// 로컬 스토리지 사용을 위한 훅
const useLocalStorage = <T,>(key: string, initialValue: T): [T, (value: T | ((val: T) => T)) => void] => {
  const [storedValue, setStoredValue] = React.useState<T>(() => {
    if (typeof window === "undefined") {
      return initialValue
    }
    try {
      const item = window.localStorage.getItem(key)
      return item ? JSON.parse(item) : initialValue
    } catch (error) {
      console.error(error)
      return initialValue
    }
  })

  const setValue = (value: T | ((val: T) => T)) => {
    try {
      const valueToStore = value instanceof Function ? value(storedValue) : value
      setStoredValue(valueToStore)
      if (typeof window !== "undefined") {
        window.localStorage.setItem(key, JSON.stringify(valueToStore))
      }
    } catch (error) {
      console.error(error)
    }
  }

  return [storedValue, setValue]
}

interface DataTableAdvancedToolbarProps<TData>
  extends React.HTMLAttributes<HTMLDivElement> {
  /**
   * The table instance returned from useDataTable hook with pagination, sorting, filtering, etc.
   * @type Table<TData>
   */
  table: Table<TData>

  /**
   * An array of filter field configurations for the data table.
   * @type DataTableAdvancedFilterField<TData>[]
   * @example
   * const filterFields = [
   *   {
   *     id: 'name',
   *     label: 'Name',
   *     type: 'text',
   *     placeholder: 'Filter by name...'
   *   },
   *   {
   *     id: 'status',
   *     label: 'Status',
   *     type: 'select',
   *     options: [
   *       { label: 'Active', value: 'active', count: 10 },
   *       { label: 'Inactive', value: 'inactive', count: 5 }
   *     ]
   *   }
   * ]
   */
  filterFields: DataTableAdvancedFilterField<TData>[]

  /**
   * Debounce time (ms) for filter updates to enhance performance during rapid input.
   * @default 300
   */
  debounceMs?: number

  /**
   * Shallow mode keeps query states client-side, avoiding server calls.
   * Setting to `false` triggers a network request with the updated querystring.
   * @default true
   */
  shallow?: boolean

  /**
   * 컴팩트 모드를 사용할지 여부 (토글 버튼을 숨기려면 null)
   * @default true
   */
  enableCompactToggle?: boolean | null

  /**
   * 초기 컴팩트 모드 상태
   * @default false
   */
  initialCompact?: boolean

  /**
   * 컴팩트 모드가 변경될 때 호출될 콜백 함수
   */
  onCompactChange?: (isCompact: boolean) => void

  /**
   * 컴팩트 모드 상태를 저장할 로컬 스토리지 키
   * @default "dataTableCompact"
   */
  compactStorageKey?: string
}

export function DataTableAdvancedToolbar<TData>({
  table,
  filterFields = [],
  debounceMs = 300,
  shallow = true,
  enableCompactToggle = true,
  initialCompact = false,
  onCompactChange,
  compactStorageKey = "dataTableCompact",
  children,
  className,
  ...props
}: DataTableAdvancedToolbarProps<TData>) {
  // 컴팩트 모드 상태 관리
  const [isCompact, setIsCompact] = useLocalStorage<boolean>(
    compactStorageKey,
    initialCompact
  )

  // 컴팩트 모드 변경 시 콜백 호출
  React.useEffect(() => {
    onCompactChange?.(isCompact)
  }, [isCompact, onCompactChange])

  // 컴팩트 모드 토글 핸들러
  const handleToggleCompact = React.useCallback(() => {
    setIsCompact(prev => !prev)
  }, [setIsCompact])

  return (
    <div
      className={cn(
        "flex w-full items-center justify-between gap-2 overflow-auto p-1",
        className
      )}
      {...props}
    >
      <div className="flex items-center gap-2">
      {enableCompactToggle && (
          <Button
            variant="outline"
            size="sm"
            onClick={handleToggleCompact}
            title={isCompact ? "확장 보기로 전환" : "컴팩트 보기로 전환"}
            className="h-8 px-2"
          >
            {isCompact ? <LayoutGrid size={16} /> : <TableIcon size={16} />}
            {/* <span className="ml-2 text-xs">{isCompact ? "확장 보기" : "컴팩트 보기"}</span> */}
          </Button>
        )}
        <DataTableViewOptions table={table} />
        <DataTableFilterList
          table={table}
          filterFields={filterFields}
          debounceMs={debounceMs}
          shallow={shallow}
        />
        <DataTableSortList
          table={table}
          debounceMs={debounceMs}
          shallow={shallow}
        />
        <DataTableGroupList table={table} debounceMs={debounceMs} />
        <PinLeftButton table={table} />
        <PinRightButton table={table} />
        <DataTableGlobalFilter />
      </div>
      <div className="flex items-center gap-2">
        {/* 컴팩트 모드 토글 버튼 */}

        {children}
      </div>
    </div>
  )
}