-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
lazyloaddoc.js
336 lines (290 loc) · 11.1 KB
/
lazyloaddoc.js
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { Column } from '@/components/lib/column/Column';
import { TreeTable } from '@/components/lib/treetable/TreeTable';
import { useEffect, useState } from 'react';
export function LazyLoadDoc(props) {
const [nodes, setNodes] = useState([]);
const [first, setFirst] = useState(0);
const [rows, setRows] = useState(10);
const [totalRecords, setTotalRecords] = useState(0);
const [loading, setLoading] = useState(true);
useEffect(() => {
setTimeout(() => {
setLoading(false);
setNodes(loadNodes(first, rows));
setTotalRecords(1000);
}, 500);
}, []); // eslint-disable-line react-hooks/exhaustive-deps
const loadNodes = (first, rows) => {
let nodes = [];
for (let i = 0; i < rows; i++) {
let node = {
key: first + i,
data: {
name: 'Item ' + (first + i),
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'Type ' + (first + i)
},
leaf: false
};
nodes.push(node);
}
return nodes;
};
const onExpand = (event) => {
if (!event.node.children) {
setLoading(true);
setTimeout(() => {
setLoading(false);
let lazyNode = { ...event.node };
lazyNode.children = [
{
data: {
name: lazyNode.data.name + ' - 0',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
},
{
data: {
name: lazyNode.data.name + ' - 1',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
}
];
let _nodes = nodes.map((node) => {
if (node.key === event.node.key) {
node = lazyNode;
}
return node;
});
setLoading(false);
setNodes(_nodes);
}, 250);
}
};
const onPage = (event) => {
setLoading(true);
//imitate delay of a backend call
setTimeout(() => {
setFirst(event.first);
setRows(event.rows);
setNodes(loadNodes(event.first, event.rows));
setLoading(false);
}, 500);
};
const code = {
basic: `
<TreeTable value={nodes} lazy paginator totalRecords={totalRecords}
first={first} rows={rows} onPage={onPage} onExpand={onExpand} loading={loading} tableStyle={{ minWidth: '50rem' }}>
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
`,
javascript: `
import React, { useState, useEffect } from 'react';
import { TreeTable } from 'primereact/treetable';
import { Column } from 'primereact/column';
export default function LazyLoadDemo() {
const [nodes, setNodes] = useState([]);
const [first, setFirst] = useState(0);
const [rows, setRows] = useState(10);
const [totalRecords, setTotalRecords] = useState(0);
const [loading, setLoading] = useState(true);
useEffect(() => {
setTimeout(() => {
setLoading(false);
setNodes(loadNodes(first, rows));
setTotalRecords(1000);
}, 500);
}, []);
const loadNodes = (first, rows) => {
let nodes = [];
for (let i = 0; i < rows; i++) {
let node = {
key: first + i,
data: {
name: 'Item ' + (first + i),
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'Type ' + (first + i)
},
leaf: false
};
nodes.push(node);
}
return nodes;
};
const onExpand = (event) => {
if (!event.node.children) {
setLoading(true);
setTimeout(() => {
setLoading(false);
let lazyNode = { ...event.node };
lazyNode.children = [
{
data: {
name: lazyNode.data.name + ' - 0',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
},
{
data: {
name: lazyNode.data.name + ' - 1',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
}
];
let _nodes = nodes.map((node) => {
if (node.key === event.node.key) {
node = lazyNode;
}
return node;
});
setLoading(false);
setNodes(_nodes);
}, 250);
}
};
const onPage = (event) => {
setLoading(true);
//imitate delay of a backend call
setTimeout(() => {
setFirst(event.first);
setRows(event.rows);
setNodes(loadNodes(event.first, event.rows));
setLoading(false);
}, 500);
};
return (
<div className="card">
<TreeTable value={nodes} lazy paginator totalRecords={totalRecords}
first={first} rows={rows} onPage={onPage} onExpand={onExpand} loading={loading} tableStyle={{ minWidth: '50rem' }}>
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
</div>
);
}
`,
typescript: `
import React, { useState, useEffect } from 'react';
import { TreeTable, TreeTableEvent, TreeTablePageEvent } from 'primereact/treetable';
import { Column } from 'primereact/column';
import { TreeNode } from 'primereact/treenode';
export default function LazyLoadDemo() {
const [nodes, setNodes] = useState<TreeNode[]>([]);
const [first, setFirst] = useState<number>(0);
const [rows, setRows] = useState<number>(10);
const [totalRecords, setTotalRecords] = useState<number>(0);
const [loading, setLoading] = useState<loading>(true);
useEffect(() => {
setTimeout(() => {
setLoading(false);
setNodes(loadNodes(first, rows));
setTotalRecords(1000);
}, 500);
}, []);
const loadNodes = (first: number, rows: number) => {
let nodes = [];
for (let i = 0; i < rows; i++) {
let node = {
key: first + i,
data: {
name: 'Item ' + (first + i),
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'Type ' + (first + i)
},
leaf: false
};
nodes.push(node);
}
return nodes;
};
const onExpand = (event: TreeTableEvent) => {
if (!event.node.children) {
setLoading(true);
setTimeout(() => {
setLoading(false);
let lazyNode = { ...event.node };
lazyNode.children = [
{
data: {
name: lazyNode.data.name + ' - 0',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
},
{
data: {
name: lazyNode.data.name + ' - 1',
size: Math.floor(Math.random() * 1000) + 1 + 'kb',
type: 'File'
}
}
];
let _nodes = nodes.map((node) => {
if (node.key === event.node.key) {
node = lazyNode;
}
return node;
});
setLoading(false);
setNodes(_nodes);
}, 250);
}
};
const onPage = (event: TreeTablePageEvent) => {
setLoading(true);
//imitate delay of a backend call
setTimeout(() => {
setFirst(event.first);
setRows(event.rows);
setNodes(loadNodes(event.first, event.rows));
setLoading(false);
}, 500);
};
return (
<div className="card">
<TreeTable value={nodes} lazy paginator totalRecords={totalRecords}
first={first} rows={rows} onPage={onPage} onExpand={onExpand} loading={loading} tableStyle={{ minWidth: '50rem' }}>
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
</div>
);
}
`
};
return (
<>
<DocSectionText {...props}>
<p>
Lazy mode is handy to deal with large datasets, instead of loading the entire data, small chunks of data is loaded by invoking corresponding callbacks everytime <i>paging</i>, <i>sorting</i> and <i>filtering</i> occurs. Sample
below imitates lazy loading data from a remote datasource using an in-memory list and timeouts to mimic network connection.
</p>
<p>
Enabling the <i>lazy</i> property and assigning the logical number of rows to <i>totalRecords</i> by doing a projection query are the key elements of the implementation so that paginator displays the UI assuming there are actually
records of totalRecords size although in reality they are not present on page, only the records that are displayed on the current page exist.
</p>
<p>
In addition, only the root elements should be loaded, children can be loaded on demand using <i>onExpand</i> callback.
</p>
</DocSectionText>
<div className="card">
<TreeTable value={nodes} lazy paginator totalRecords={totalRecords} first={first} rows={rows} onPage={onPage} onExpand={onExpand} loading={loading} tableStyle={{ minWidth: '50rem' }}>
<Column field="name" header="Name" expander />
<Column field="size" header="Size" />
<Column field="type" header="Type" />
</TreeTable>
</div>
<DocSectionCode code={code} />
</>
);
}