-
Notifications
You must be signed in to change notification settings - Fork 1
/
etools-table.js
438 lines (396 loc) · 13.2 KB
/
etools-table.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
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
import '@polymer/iron-icons/iron-icons.js';
import '@polymer/paper-icon-button/paper-icon-button.js';
import '@polymer/paper-checkbox/paper-checkbox.js';
import {LitElement, html, css} from 'lit-element/lit-element.js';
import {etoolsTableStyles} from './styles/etools-table-styles.js';
import {etoolsTableResponsiveStyles} from './styles/etools-table-responsive-styles.js';
import {gridLayoutStylesLit} from './styles/grid-layout-styles.js';
import {fireEvent, toggleAttributeValue} from './utils/utils.js';
import {prettyDate} from './utils/date-utility.js';
import './pagination/etools-pagination.js';
import get from 'lodash-es/get';
export const EtoolsTableColumn = {
label: 'label', // column header label
name: 'name', // property name from item object
type: 'type',
sort: 'sort',
/**
* used only for EtoolsTableColumnType.Link to specify url template (route with a single param)
* ex: `${ROOT_PATH}assessments/:id/details`
* - id will be replaced with item object id property
*/
link_tmpl: 'link_tmpl',
isExternalLink: 'isExternalLink',
capitalize: 'capitalize',
placeholder: 'placeholder',
customMethod: 'customMethod',
sortMethod: 'sortMethod',
cssClass: ''
};
export const EtoolsTableChildRow = {
rowHTML: '',
showExpanded: false
};
export const EtoolsTableColumnType = {
Text: 'Text',
Date: 'Date',
Link: 'Link',
Number: 'Number',
Checkbox: 'Checkbox',
Custom: 'Custom'
};
export const EtoolsTableColumnSort = {
Asc: 'asc',
Desc: 'desc'
};
export const EtoolsTableActionType = {
Edit: 'Edit',
Delete: 'Delete',
Copy: 'Copy',
View: 'View'
};
class EtoolsTable extends LitElement {
static get styles() {
return [etoolsTableResponsiveStyles, etoolsTableStyles, gridLayoutStylesLit];
}
static get properties() {
return {
dateFormat: {type: String, value: 'D MMM YYYY'},
showEdit: {type: Boolean, reflect: true},
showDelete: {type: Boolean, reflect: true},
showCopy: {type: Boolean, reflect: true},
showView: {type: Boolean, reflect: true},
caption: {type: String},
actionsLabel: {type: String},
columns: {type: Array},
items: {type: Array},
paginator: {type: Object},
defaultPlaceholder: {type: String},
getChildRowTemplateMethod: {type: Function},
setRowActionsVisibility: {type: Function},
customData: {type: Object},
showChildRows: {type: Boolean},
extraCSS: {type: Object},
singleSort: {type: Boolean, value: false}
};
}
constructor() {
super();
this.initializeProperties();
}
initializeProperties() {
this.columns = [];
this.items = [];
this.actionsLabel = 'Actions';
this.caption = '';
this.defaultPlaceholder = '—';
this.extraCSS = css``;
this.singleSort = false;
}
render() {
this.showChildRows = !!this.getChildRowTemplateMethod;
return html`
<style>
${this
.extraCSS}
/*
* Do not use transparent colors here, it will make the chk border darker.
* rgba(117, 117, 117) is the equivalent of --secondary-text-color
*/
paper-checkbox[readonly] {
--paper-checkbox-checked-color: rgba(117, 117, 117);
}
table td {
line-height: 24px;
}
</style>
<table>
<caption ?hidden="${this.showCaption(this.caption)}">
${this.caption}
</caption>
<thead>
<tr>
${this.showChildRows ? html`<th class="expand-cell"></th>` : ''}
${this.columns.map((column) => this.getColumnHtml(column))} ${this.showRowActions() ? html`<th></th>` : ''}
</tr>
</thead>
<tbody>
${this.items.map((item) => this.getRowDataHtml(item, this.showEdit, this.customData))}
${this.paginator ? this.paginationHtml : ''}
</tbody>
</table>
`;
}
getColumnHtml(column) {
if (!Object.prototype.hasOwnProperty.call(column, 'sort')) {
return html` <th class="${this.getColumnClassList(column)}">${column.label}</th> `;
} else {
return this.getColumnHtmlWithSort(column);
}
}
getColumnHtmlWithSort(column) {
return html`
<th class="${this.getColumnClassList(column)}" @tap="${() => this.toggleAndSortBy(column)}">
${column.label}
${this.columnHasSort(column.sort)
? html`<iron-icon .icon="${this.getSortIcon(column.sort)}"> </iron-icon>`
: ''}
</th>
`;
}
getLinkTmpl(pathTmpl, item, key, isExternalLink) {
if (!pathTmpl) {
throw new Error(`[EtoolsTable.getLinkTmpl]: column "${item[key]}" has no link tmpl defined`);
}
const path = pathTmpl.split('/');
path.forEach((p, index) => {
if (p.slice(0, 1) === ':') {
const param = p.slice(1);
path[index] = item[param];
}
});
const aHref = path.join('/');
return isExternalLink
? html`<a class="" @click="${() => (window.location.href = aHref)}" href="#">${item[key]}</a>`
: html`<a class="" href="${aHref}">${item[key]}</a>`;
}
getRowDataHtml(item, showEdit, customData) {
let childRow;
if (this.showChildRows) {
childRow = this.getChildRowTemplate(item);
}
const rowClass = this.showRowActions() ? 'row-editable' : 'row-non-editable';
return html`
<tr class="${rowClass}">
${this.showChildRows
? html`<td class="expand-cell">
<iron-icon
@keydown="${this.callClickOnSpace}"
expanded="${childRow.showExpanded}"
@tap="${this.toggleChildRow}"
icon="${this.getExpandIcon(childRow.showExpanded)}"
tabindex="0"
></iron-icon>
</td>`
: ''}
${this.columns.map(
(col) => html`<td data-label="${col.label}" class="${this.getRowDataColumnClassList(col)}">
${this.getItemValue(item, col, showEdit, customData)}
</td>`
)}
${this.showRowActions()
? html`<td data-label="${this.actionsLabel}" class="row-actions"> ${this.getRowActionsTmpl(item)}</td>`
: ''}
</tr>
${childRow !== undefined ? childRow.rowHTML : ''}
`;
}
getChildRowTemplate(item) {
let childRow;
try {
childRow = this.getChildRowTemplateMethod(item) || {};
} catch (err) {
console.log(err);
childRow = {};
}
childRow.rowHTML = html`
<tr class="child-row${childRow.showExpanded ? '' : ' display-none'}">
${childRow.rowHTML}
</tr>
`;
return childRow;
}
getRowActionsTmpl(item) {
const rowActionsVisibility = this.setRowActionsVisibility ? this.setRowActionsVisibility(item) : {};
const {
showEdit = this.showEdit,
showDelete = this.showDelete,
showCopy = this.showCopy,
showView = this.showView
} = rowActionsVisibility;
return html`
<div class="actions">
<paper-icon-button
?hidden="${!showEdit}"
icon="create"
@tap="${() => this.triggerAction(EtoolsTableActionType.Edit, item)}"
tabindex="0"
></paper-icon-button>
<paper-icon-button
?hidden="${!showDelete}"
icon="delete"
@tap="${() => this.triggerAction(EtoolsTableActionType.Delete, item)}"
tabindex="0"
></paper-icon-button>
<paper-icon-button
?hidden="${!showCopy}"
icon="content-copy"
@tap="${() => this.triggerAction(EtoolsTableActionType.Copy, item)}"
tabindex="0"
></paper-icon-button>
<paper-icon-button
?hidden="${!showView}"
icon="icons:visibility"
@tap="${() => this.triggerAction(EtoolsTableActionType.View, item)}"
tabindex="0"
></paper-icon-button>
</div>
`;
}
get paginationHtml() {
const extraColsNo = this.showChildRows ? (this.showRowActions ? 2 : 1) : this.showRowActions ? 1 : 0;
return html` <tr>
<td class="pagination" colspan="${this.columns.length + extraColsNo}">
<etools-pagination .paginator="${this.paginator}"></etools-pagination>
</td>
</tr>`;
}
showCaption(caption) {
return !caption;
}
// Columns
getColumnClassList(column) {
const classList = [];
if (column.type === EtoolsTableColumnType.Number) {
classList.push('align-right');
}
if (Object.prototype.hasOwnProperty.call(column, 'sort')) {
classList.push('sort');
}
if (column.cssClass) {
classList.push(column.cssClass);
}
return classList.join(' ');
}
columnHasSort(sort) {
return sort === EtoolsTableColumnSort.Asc || sort === EtoolsTableColumnSort.Desc;
}
getSortIcon(sort) {
return sort === EtoolsTableColumnSort.Asc ? 'arrow-upward' : 'arrow-downward';
}
getExpandIcon(expanded) {
return expanded === true ? 'expand-more' : 'chevron-right';
}
toggleChildRow(ev) {
const nextRow = ev.target.closest('tr').nextElementSibling;
if (nextRow) {
nextRow.classList.toggle('display-none');
}
toggleAttributeValue(ev.target, 'icon', 'expand-more', 'chevron-right');
}
callClickOnSpace(event) {
if (event.key === ' ' && !event.ctrlKey) {
// Cancel the default action, if needed
event.preventDefault();
// Trigger the button element with a click
event.target.click();
return false;
}
}
getColumnDetails(name) {
const column = this.columns.find((c) => c.name === name);
if (!column) {
throw new Error(`[EtoolsTable.getColumnDetails]: column "${name}" not found`);
}
return column;
}
// Rows
getRowDataColumnClassList(column) {
let cssClass = column.cssClass ? column.cssClass : '';
if (column.capitalize) {
cssClass = `${cssClass} capitalize`;
}
switch (column.type) {
case EtoolsTableColumnType.Number:
return `${cssClass} align-right`;
default:
return cssClass;
}
}
getColumnsKeys() {
return this.columns.map((c) => c.name);
}
getItemValue(item, column, showEdit, customData) {
// get column object to determine how data should be displayed (date, string, link, number...)
const key = column.name;
switch (column.type) {
case EtoolsTableColumnType.Date:
return item[key]
? prettyDate(item[key], this.dateFormat)
: column.placeholder
? column.placeholder
: this.defaultPlaceholder;
case EtoolsTableColumnType.Link:
return this.getLinkTmpl(column.link_tmpl, item, key, column.isExternalLink);
case EtoolsTableColumnType.Checkbox:
return this._getCheckbox(item, key, showEdit);
case EtoolsTableColumnType.Custom:
return column.customMethod
? column.customMethod(item, key, customData)
: this._getValueByKey(item, key, column.placeholder);
default:
return this._getValueByKey(item, key, column.placeholder);
}
}
_getCheckbox(item, key, showEdit) {
return html` <paper-checkbox
?checked="${this._getValueByKey(item, key, '', true)}"
?readonly="${!showEdit}"
@change="${(e) => this.triggerItemChanged(item, key, e.currentTarget.checked)}"
>
</paper-checkbox>`;
}
_getValueByKey(item, key, placeholder, ignorePlaceholder = false) {
const value = get(item, key, '');
if (!ignorePlaceholder && (!value || value === '')) {
return placeholder ? placeholder : this.defaultPlaceholder;
}
return value;
}
// row actions
showRowActions() {
return this.setRowActionsVisibility || this.showDelete || this.showEdit || this.showView;
}
triggerAction(type, item) {
if (!this.showRowActions()) {
return;
}
switch (type) {
case EtoolsTableActionType.Edit:
fireEvent(this, 'edit-item', item);
break;
case EtoolsTableActionType.Delete:
fireEvent(this, 'delete-item', item);
break;
case EtoolsTableActionType.Copy:
fireEvent(this, 'copy-item', item);
break;
case EtoolsTableActionType.View:
fireEvent(this, 'view-item', item);
break;
}
}
toggleAndSortBy(column) {
if (column.sort === undefined) {
return;
}
column.sort = this.toggleColumnSort(column.sort);
if (this.singleSort) {
this.columns.forEach((columnData) => {
if (Object.prototype.hasOwnProperty.call(columnData, 'sort') && columnData.name !== column.name) {
columnData.sort = null;
}
});
}
fireEvent(this, 'sort-change', [...this.columns]);
}
toggleColumnSort(sort) {
return sort === EtoolsTableColumnSort.Asc ? EtoolsTableColumnSort.Desc : EtoolsTableColumnSort.Asc;
}
triggerItemChanged(item, field, filedValue) {
const changedItem = Object.assign({}, item);
changedItem[field] = filedValue;
fireEvent(this, 'item-changed', changedItem);
}
}
window.customElements.define('etools-table', EtoolsTable);