-
Notifications
You must be signed in to change notification settings - Fork 2
/
HistoryTable.tsx
265 lines (250 loc) · 8.44 KB
/
HistoryTable.tsx
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
'use client'
import {
ColumnDef,
flexRender,
getCoreRowModel,
useReactTable,
getPaginationRowModel,
VisibilityState,
} from "@tanstack/react-table"
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table"
import {
DropdownMenu,
DropdownMenuCheckboxItem,
DropdownMenuContent,
DropdownMenuLabel,
DropdownMenuRadioGroup,
DropdownMenuRadioItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { Button } from "@/components/ui/button"
import { useEffect, useState } from "react"
import { ChevronDown, ChevronLeft, ChevronRight } from "lucide-react"
import { useWallet } from "@aptos-labs/wallet-adapter-react"
interface HistoryTableProps<TData, TValue> {
columns: ColumnDef<TData, TValue>[]
data: TData[]
}
/*
Component to display the history of events in a table.
*/
export function HistoryTable<TData, TValue>({
columns,
data,
}: HistoryTableProps<TData, TValue>) {
// wallet adapter state
const { isLoading, connected } = useWallet();
/*
Table configuration state
*/
const [columnVisibility, setColumnVisibility] = useState<VisibilityState>({})
const [pageNumber, setPageNumber] = useState(1);
const [pageSize, setPageSize] = useState(5);
/*
Sets the page size of the table in the first render.
*/
useEffect(() => {
table.setPageSize(pageSize);
}, []);
/*
Table object
*/
const table = useReactTable({
data,
columns,
getCoreRowModel: getCoreRowModel(),
getPaginationRowModel: getPaginationRowModel(),
onColumnVisibilityChange: setColumnVisibility,
state: {
columnVisibility,
},
});
return (
<div>
<div className="flex items-center py-4">
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="outline" className="ml-auto">
Columns
<ChevronDown className="ml-2" size={16} />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
{table
.getAllColumns()
.filter(
(column) => column.getCanHide()
)
.map((column) => {
return (
<DropdownMenuCheckboxItem
key={column.id}
className="capitalize"
checked={column.getIsVisible()}
onCheckedChange={(value) =>
column.toggleVisibility(!!value)
}
>
{column.id}
</DropdownMenuCheckboxItem>
)
})}
</DropdownMenuContent>
</DropdownMenu>
</div>
<div className="rounded-md border">
<Table>
<TableHeader>
{table.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id}>
{headerGroup.headers.map((header) => {
return (
<TableHead key={header.id}>
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
)
})}
</TableRow>
))}
</TableHeader>
<TableBody>
{
/*
TODO #1: Show a loading indicator when the wallet is loading. Use the provided component.
-- Loading Component --
<TableRow>
<TableCell colSpan={columns.length} className="h-24 text-center">
Loading...
</TableCell>
</TableRow>
*/
}
{
/*
TODO #2: Show a message when the wallet is not connected. Use the provided component.
HINT:
- Use the `connected` variable to check if the wallet is connected.
- Use the `isLoading` variable to check if the wallet is loading. Do not show the
message if the wallet is loading.
-- Not Connected Component --
<TableRow>
<TableCell colSpan={columns.length} className="h-24 text-center">
Connect your wallet to view your history.
</TableCell>
</TableRow>
*/
}
{
/*
TODO #3: Show a message when the wallet is connected but there is no history. Use the provided component.
HINT:
- Use the `connected` variable to check if the wallet is connected.
- Use the `isLoading` variable to check if the wallet is loading. Do not show the
message if the wallet is loading.
- Use the `table.getRowModel().rows?.length` variable to get the number of rows.
-- No Data Component --
<TableRow>
<TableCell colSpan={columns.length} className="h-24 text-center">
No data.
</TableCell>
</TableRow>
*/
}
{
/*
TODO #4: Show the table rows when the wallet is connected and there is history. Use the provided component.
HINT:
- Use the `connected` variable to check if the wallet is connected.
- Use the `isLoading` variable to check if the wallet is loading. Do not show the
table rows if the wallet is loading.
- Use the `table.getRowModel().rows` variable to get the rows.
- Use the `table.getRowModel().rows?.length` variable to get the number of rows.
- Use the `table.getRowModel().rows?.map()` function to iterate over the rows.
-- Table Row Component --
<TableRow
key={row.id}
data-state={row.getIsSelected() && "selected"}
>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>
*/
}
</TableBody>
</Table>
</div>
<div className="flex items-center justify-end space-x-2 py-4">
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button size="sm" variant="outline">
{pageSize}
<ChevronDown className="ml-2" size={14} />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent>
<DropdownMenuLabel>Page Size</DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuRadioGroup value={pageSize.toString()} onValueChange={
(value) => {
if (value === `${data.length}`) {
setPageSize(data.length)
table.setPageSize(data.length)
} else {
setPageSize(parseInt(value))
table.setPageSize(parseInt(value))
}
setPageNumber(1)
table.setPageIndex(0)
}
}>
<DropdownMenuRadioItem value="5">5</DropdownMenuRadioItem>
<DropdownMenuRadioItem value="15">15</DropdownMenuRadioItem>
<DropdownMenuRadioItem value={`${data.length}`}>All</DropdownMenuRadioItem>
</DropdownMenuRadioGroup>
</DropdownMenuContent>
</DropdownMenu>
<Button
variant="outline"
size="icon"
onClick={() => {
table.previousPage()
setPageNumber(pageNumber - 1)
}}
disabled={!table.getCanPreviousPage()}
>
<ChevronLeft size={14} />
</Button>
<span>
Page {pageNumber} of {table.getPageCount()}
</span>
<Button
variant="outline"
size="icon"
onClick={() => {
table.nextPage()
setPageNumber(pageNumber + 1)
}}
disabled={!table.getCanNextPage()}
>
<ChevronRight size={14} />
</Button>
</div>
</div>
)
}