-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathSvelteTable.svelte
446 lines (389 loc) · 12.8 KB
/
SvelteTable.svelte
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<script>
import { createEventDispatcher } from "svelte";
/** @type {TableColumns<any>} */
export let columns;
/** @type {any[]} */
export let rows;
/** @type { any[] | undefined } rows that pass filter (exposed internal) */
export let c_rows = undefined;
export let sortOrders = [1, -1];
// READ AND WRITE
/** @type {string} */
export let sortBy = "";
/** @type {number} */
export let sortOrder = sortOrders?.[0] || 1;
/** @type {Object} */
export let filterSelections = {};
// expand
/** @type {(string | number)[]} */
export let expanded = [];
// selection
/** @type {(string | number)[]} */
export let selected = [];
// READ ONLY
// TODO: remove in some future release in favour of rowKey
/** @type {string | null} */
export let expandRowKey = null;
/** @type {string | null} */
export let rowKey = expandRowKey;
/** @type {Boolean} */
export let expandSingle = false;
/** @type {Boolean} */
export let selectSingle = false;
/** @type {Boolean} */
export let selectOnClick = false;
/** @type {string} */
export let iconAsc = "▲";
/** @type {string} */
export let iconDesc = "▼";
/** @type {string} */
export let iconSortable = "";
/** @type {string} */
export let iconExpand = "▼";
/** @type {string} */
export let iconExpanded = "▲";
/** @type {boolean} */
export let showExpandIcon = false;
/** @type {string} */
export let classNameTable = "";
/** @type {string} */
export let classNameThead = "";
/** @type {string} */
export let classNameTbody = "";
/** @type {string} */
export let classNameSelect = "";
/** @type {string} */
export let classNameInput = "";
/** @type {RowClassName<any>} */
export let classNameRow = null;
/** @type {string} */
export let classNameCell = "";
/** @type {string | null} class added to the selected row*/
export let classNameRowSelected = null;
/** @type {string | null} class added to the expanded row*/
export let classNameRowExpanded = null;
/** @type {string} class added to the expanded row*/
export let classNameExpandedContent = "";
/** @type {string} class added to the cell that allows expanding/closing */
export let classNameCellExpand = "";
const dispatch = createEventDispatcher();
/** @type {function}*/
let sortFunction = () => "";
// Validation
if (!Array.isArray(expanded)) throw "'expanded' needs to be an array";
if (!Array.isArray(selected)) throw "'selection' needs to be an array";
if (expandRowKey !== null) {
console.warn("'expandRowKey' is deprecated in favour of 'rowKey'");
}
if (classNameRowSelected && !rowKey) {
console.error("'rowKey' is needed to use 'classNameRowSelected'");
}
let showFilterHeader = columns.some(c => {
// check if there are any filter or search headers
return (
!c.hideFilterHeader &&
(c.filterOptions !== undefined || c.searchValue !== undefined)
);
});
let filterValues = {};
/** @type {Record<string | number | symbol, TableColumn<any>>}*/
let columnByKey;
$: {
columnByKey = {};
columns.forEach(col => {
columnByKey[col.key] = col;
});
}
$: colspan = (showExpandIcon ? 1 : 0) + columns.length;
$: c_rows = rows
.filter(r => {
// get search and filter results/matches
return Object.keys(filterSelections).every(f => {
/**
* @type {boolean}
* Determine whether search term matches a row.
* If the searchValue function has ONE parameter it expects to return a string value
* which will be compared to the search string. This should be depricated in a
* future release, since it's very limiting to search functionality.
* If the searchValue function has TWO parameters, pass the row and the search term
* and expect a boolean response.
*/
let resSearch = null;
if (columnByKey[f] === undefined) {
/**
* return `true` if the column doesn't exist, any value passed to it is ignored
* it effectively ignores the column if it's not defined
* this can happen if the column are changing at run-time
*/
return true;
} else if (!columnByKey[f]?.searchValue) {
// if no searchValue is defined, set to false for filter (resFilter) to handle it
resSearch = false;
} else if (filterSelections[f] === "") {
// if searchValue exists and the search string is empty, return true immediately
return true;
} else if (columnByKey[f].searchValue.length === 1) {
// does search comparison using string result
// TODO: DEPRECATE
resSearch =
(columnByKey[f].searchValue(r) + "")
.toLocaleLowerCase()
.indexOf((filterSelections[f] + "").toLocaleLowerCase()) >= 0;
} else if (columnByKey[f].searchValue.length === 2) {
// search using function (with 2 parameters)
resSearch = !!columnByKey[f].searchValue(r, filterSelections[f] + "");
}
// check filter (dropdown) matches
let resFilter =
resSearch ||
filterSelections[f] === undefined ||
// default to value() if filterValue() not provided in col
filterSelections[f] ===
(typeof columnByKey[f].filterValue === "function"
? columnByKey[f].filterValue(r)
: columnByKey[f].value(r));
return resFilter;
});
})
.map(r =>
Object.assign({}, r, {
// internal row property for sort order
$sortOn: sortFunction(r),
// internal row property for expanded rows
$expanded: rowKey !== null && expanded.indexOf(r[rowKey]) >= 0,
$selected: rowKey !== null && selected.indexOf(r[rowKey]) >= 0,
})
)
.sort((a, b) => {
if (!sortBy) return 0;
else if (a.$sortOn > b.$sortOn) return sortOrder;
else if (a.$sortOn < b.$sortOn) return -sortOrder;
return 0;
});
const asStringArray = v =>
[]
.concat(v)
.filter(v => v !== null && typeof v === "string" && v !== "")
.join(" ");
const calculateFilterValues = () => {
filterValues = {};
columns.forEach(c => {
if (typeof c.filterOptions === "function") {
filterValues[c.key] = c.filterOptions(rows);
} else if (Array.isArray(c.filterOptions)) {
// if array of strings is provided, use it for name and value
filterValues[c.key] = c.filterOptions.map(val => ({
name: val,
value: val,
}));
}
});
};
$: {
let col = columnByKey[sortBy];
if (
col !== undefined &&
col.sortable === true &&
typeof col.value === "function"
) {
sortFunction = r => col.value(r);
}
}
$: {
// if filters are enabled, watch rows and columns
if (showFilterHeader && columns && rows) {
calculateFilterValues();
}
}
const updateSortOrder = colKey => {
return colKey === sortBy
? sortOrders[
(sortOrders.findIndex(o => o === sortOrder) + 1) % sortOrders.length
]
: sortOrders[0];
};
const handleClickCol = (event, col) => {
if (col.sortable) {
sortOrder = updateSortOrder(col.key);
sortBy = sortOrder ? col.key : undefined;
}
dispatch("clickCol", { event, col, key: col.key });
};
const handleClickRow = (event, row) => {
if (selectOnClick) {
if (selectSingle) {
// replace selection is default behaviour
if (selected.includes(row[rowKey])) {
selected = [];
} else {
selected = [row[rowKey]];
}
} else {
if (selected.includes(row[rowKey])) {
selected = selected.filter(r => r != row[rowKey]);
} else {
selected = [...selected, row[rowKey]].sort();
}
}
}
dispatch("clickRow", { event, row });
};
const handleClickExpand = (event, row) => {
row.$expanded = !row.$expanded;
const keyVal = row[rowKey];
if (expandSingle && row.$expanded) {
expanded = [keyVal];
} else if (expandSingle) {
expanded = [];
} else if (!row.$expanded) {
expanded = expanded.filter(r => r != keyVal);
} else {
expanded = [...expanded, keyVal];
}
dispatch("clickExpand", { event, row });
};
const handleClickCell = (event, row, key) => {
dispatch("clickCell", { event, row, key });
};
</script>
<table class={asStringArray(classNameTable)}>
<thead class={asStringArray(classNameThead)}>
{#if showFilterHeader}
<tr>
{#each columns as col}
<th class={asStringArray([col.headerFilterClass])}>
{#if !col.hideFilterHeader && col.searchValue !== undefined}
<input
bind:value={filterSelections[col.key]}
class={asStringArray(classNameInput)}
placeholder={col.filterPlaceholder}
/>
{:else if !col.hideFilterHeader && filterValues[col.key] !== undefined}
<select
bind:value={filterSelections[col.key]}
class={asStringArray(classNameSelect)}
>
<option value={undefined}>{col.filterPlaceholder || ""}</option>
{#each filterValues[col.key] as option}
<option value={option.value}>{option.name}</option>
{/each}
</select>
{/if}
</th>
{/each}
{#if showExpandIcon}
<th />
{/if}
</tr>
{/if}
<slot name="header" {sortOrder} {sortBy}>
<tr>
{#each columns as col}
<th
on:click={e => handleClickCol(e, col)}
on:keypress={e => e.key === "Enter" && handleClickCol(e, col)}
class={asStringArray([
col.sortable ? "isSortable" : "",
col.headerClass,
])}
tabindex="0"
>
{col.title}
{#if sortBy === col.key}
{@html sortOrder === 1 ? iconAsc : iconDesc}
{:else if col.sortable}
{@html iconSortable}
{/if}
</th>
{/each}
{#if showExpandIcon}
<th />
{/if}
</tr>
</slot>
</thead>
<tbody class={asStringArray(classNameTbody)}>
{#each c_rows as row, n}
<slot name="row" {row} {n}>
<tr
on:click={e => handleClickRow(e, row)}
on:keypress={e => e.key === "Enter" && handleClickRow(e, row)}
class={asStringArray([
typeof classNameRow === "string" ? classNameRow : null,
typeof classNameRow === "function" ? classNameRow(row, n) : null,
row.$expanded && classNameRowExpanded,
row.$selected && classNameRowSelected,
])}
tabIndex={selectOnClick ? "0" : null}
>
{#each columns as col, colIndex}
<td
on:click={e => handleClickCell(e, row, col.key)}
on:keypress={e =>
e.key === "Enter" && handleClickCell(e, row, col.key)}
class={asStringArray([
typeof col.class === "string" ? col.class : null,
typeof col.class === "function"
? col.class(row, n, colIndex)
: null,
classNameCell,
])}
>
{#if col.renderComponent}
<svelte:component
this={col.renderComponent.component || col.renderComponent}
{...col.renderComponent.props || {}}
{row}
{col}
/>
{:else if col.parseHTML}
{@html col.renderValue
? col.renderValue(row, n, colIndex)
: col.value(row, n, colIndex)}
{:else}
{col.renderValue
? col.renderValue(row, n, colIndex)
: col.value(row, n, colIndex)}
{/if}
</td>
{/each}
{#if showExpandIcon}
<td class={asStringArray(classNameCellExpand)}>
<span
class="isClickable"
on:click={e => handleClickExpand(e, row)}
on:keypress={e =>
e.key === "Enter" && handleClickExpand(e, row)}
tabindex="0"
role="button"
>
{@html row.$expanded ? iconExpand : iconExpanded}
</span>
</td>
{/if}
</tr>
{#if row.$expanded}
<tr class={asStringArray(classNameExpandedContent)}
><td {colspan}>
<slot name="expanded" {row} {n} />
</td></tr
>
{/if}
</slot>
{/each}
</tbody>
</table>
<style>
table {
width: 100%;
}
.isSortable {
cursor: pointer;
}
.isClickable {
cursor: pointer;
}
tr th select {
width: 100%;
}
</style>