-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-table-client-side.stories.tsx
More file actions
249 lines (222 loc) · 7.17 KB
/
data-table-client-side.stories.tsx
File metadata and controls
249 lines (222 loc) · 7.17 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import type { Meta, StoryObj } from '@storybook/react';
import { useMemo, useState } from 'react';
import { columnConfigs, columns } from './data-table-stories.components';
import {
DataTable,
DataTableFilter,
getCoreRowModel,
getPaginationRowModel,
getSortedRowModel,
type MockIssue,
mockDatabase,
type OnChangeFn,
type PaginationState,
type SortingState,
useDataTableFilters,
useFilterSync,
useReactTable,
withReactRouterStubDecorator,
} from './data-table-stories.helpers';
import { testFiltering, testInitialRender, testPagination } from './data-table-stories.test-utils';
// --- Main Component ---
function DataTableWithClientSideFilters() {
// --- Client-side data state ---
const [data] = useState<MockIssue[]>(mockDatabase);
// --- Bazza UI Filter Setup ---
const [filters, setFilters] = useFilterSync();
// --- Pagination and Sorting State ---
const [pagination, setPagination] = useState<PaginationState>({
pageIndex: 0,
pageSize: 10,
});
const [sorting, setSorting] = useState<SortingState>([]);
// --- Event Handlers ---
const handlePaginationChange: OnChangeFn<PaginationState> = (updaterOrValue) => {
setPagination(typeof updaterOrValue === 'function' ? updaterOrValue(pagination) : updaterOrValue);
};
// --- Wrapper for DataTable pagination handler ---
const handleDataTablePagination = (pageIndex: number, pageSize: number) => {
setPagination({ pageIndex, pageSize });
};
const handleSortingChange: OnChangeFn<SortingState> = (updaterOrValue) => {
setSorting(typeof updaterOrValue === 'function' ? updaterOrValue(sorting) : updaterOrValue);
};
// --- Bazza UI Filter Setup ---
const bazzaProcessedColumns = useMemo(() => columnConfigs, []);
// Define a filter strategy for client-side filtering
const filterStrategy = 'client' as const;
// Setup filter actions and strategy (controlled mode)
const {
columns: filterColumns,
actions,
strategy,
data: filteredData,
} = useDataTableFilters({
columnsConfig: bazzaProcessedColumns,
filters,
onFiltersChange: setFilters,
strategy: filterStrategy,
data,
});
// --- TanStack Table Setup ---
const table = useReactTable({
data: filteredData,
columns,
state: {
pagination,
sorting,
},
onPaginationChange: handlePaginationChange,
onSortingChange: handleSortingChange,
getCoreRowModel: getCoreRowModel(),
getPaginationRowModel: getPaginationRowModel(),
getSortedRowModel: getSortedRowModel(),
manualPagination: false, // Client-side pagination
manualSorting: false, // Client-side sorting
});
return (
<div className="space-y-4">
<div>
<h1 className="text-2xl font-bold mb-4">Issues Table (Bazza UI Client-Side Filters)</h1>
<p className="text-gray-600 mb-6">
This demonstrates client-side filtering using Bazza UI components and real-time filtering without server
requests. All filtering happens in the browser for immediate response.
</p>
</div>
{/* Bazza UI Filter Interface */}
<DataTableFilter columns={filterColumns} filters={filters} actions={actions} strategy={strategy} />
{/* Data Table */}
<DataTable
table={table}
columns={columns.length}
pageCount={table.getPageCount()}
onPaginationChange={handleDataTablePagination}
/>
</div>
);
}
// --- Test Functions ---
const testInitialRenderClientSide = testInitialRender('Issues Table (Bazza UI Client-Side Filters)');
const testPaginationClientSide = testPagination({ serverSide: false });
// --- Story Configuration ---
const meta: Meta<typeof DataTableWithClientSideFilters> = {
title: 'Data Table/Client Side Filters',
component: DataTableWithClientSideFilters,
parameters: {
layout: 'fullscreen',
docs: {
description: {
component: 'Client-side filtering with Bazza UI components and real-time filtering without server requests.',
},
},
},
tags: ['autodocs'],
};
export default meta;
type Story = StoryObj<typeof meta>;
export const ClientSide: Story = {
args: {},
parameters: {
docs: {
description: {
story:
'Demonstrates client-side filtering using Bazza UI components and real-time filtering without server requests. All filtering happens in the browser for immediate response.',
},
source: {
code: `
import { useMemo, useState } from 'react';
import {
DataTable,
DataTableFilter,
useDataTableFilters,
useFilterSync,
useReactTable,
getCoreRowModel,
getPaginationRowModel,
getSortedRowModel,
} from './data-table-stories.helpers';
function DataTableWithClientSideFilters() {
// --- Client-side data state ---
const [data] = useState<MockIssue[]>(mockDatabase);
// --- Bazza UI Filter Setup ---
const [filters, setFilters] = useFilterSync();
// --- Pagination and Sorting State ---
const [pagination, setPagination] = useState<PaginationState>({
pageIndex: 0,
pageSize: 10,
});
const [sorting, setSorting] = useState<SortingState>([]);
// --- Event Handlers ---
const handlePaginationChange: OnChangeFn<PaginationState> = (updaterOrValue) => {
setPagination(typeof updaterOrValue === 'function' ? updaterOrValue(pagination) : updaterOrValue);
};
const handleSortingChange: OnChangeFn<SortingState> = (updaterOrValue) => {
setSorting(typeof updaterOrValue === 'function' ? updaterOrValue(sorting) : updaterOrValue);
};
// --- Bazza UI Filter Setup ---
const bazzaProcessedColumns = useMemo(() => columnConfigs, []);
const filterStrategy = 'client' as const;
// Setup filter actions and strategy (controlled mode)
const {
columns: filterColumns,
actions,
strategy,
data: filteredData,
} = useDataTableFilters({
columnsConfig: bazzaProcessedColumns,
filters,
onFiltersChange: setFilters,
strategy: filterStrategy,
data,
});
// --- TanStack Table Setup ---
const table = useReactTable({
data: filteredData,
columns,
state: {
pagination,
sorting,
},
onPaginationChange: handlePaginationChange,
onSortingChange: handleSortingChange,
getCoreRowModel: getCoreRowModel(),
getPaginationRowModel: getPaginationRowModel(),
getSortedRowModel: getSortedRowModel(),
manualPagination: false, // Client-side pagination
manualSorting: false, // Client-side sorting
});
return (
<div className="space-y-4">
{/* Bazza UI Filter Interface */}
<DataTableFilter columns={filterColumns} filters={filters} actions={actions} strategy={strategy} />
{/* Data Table */}
<DataTable
table={table}
columns={columns.length}
pageCount={table.getPageCount()}
onPaginationChange={handleDataTablePagination}
/>
</div>
);
}`,
},
},
},
decorators: [
withReactRouterStubDecorator({
routes: [
{
path: '/',
Component: DataTableWithClientSideFilters,
},
],
}),
],
render: () => <DataTableWithClientSideFilters />,
play: async (context) => {
// Run the tests in sequence
await testInitialRenderClientSide(context);
await testPaginationClientSide(context);
await testFiltering(context);
},
};