-
Notifications
You must be signed in to change notification settings - Fork 5
/
cosmoz-omnitable-group-row.html
105 lines (88 loc) · 2.04 KB
/
cosmoz-omnitable-group-row.html
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
<link rel="import" href="../shadycss/apply-shim.html">
<link rel="import" href="../polymer/polymer-element.html"/>
<link rel="import" href="cosmoz-omnitable-repeater-mixin.html" />
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html" />
<dom-module id="cosmoz-omnitable-group-row">
<template>
<slot name="group-row"></slot>
</template>
<script>
window.Cosmoz = window.Cosmoz || {};
/**
* @polymer
* @customElement
* @appliesMixin Cosmoz.OmnitableRepeaterMixin
*/
class OmnitableGroupRow extends Cosmoz.OmnitableRepeaterMixin(
Polymer.Element
) {
static get is() {
return 'cosmoz-omnitable-group-row';
}
static get properties() {
return {
column: {
type: Object,
observer: '_columnChanged'
},
item: {
type: Object
},
selected: {
type: Boolean,
observer: '_selectedChanged'
},
folded: {
type: Boolean,
observer: '_foldedChanged'
}
};
}
static get observers() {
return [
'_itemUpdated(item.*)'
];
}
get _elementType() {
return 'div';
}
get _slotName() {
return 'group-row';
}
constructor() {
super();
this.trackColumns();
}
_columnChanged(newColumn) {
if (!newColumn) {
return;
}
if (this.columns && this.columns.length > 0) {
this.splice('columns', 0, 1, newColumn);
return;
}
this.columns = [newColumn];
}
/**
* @inheritdoc
*/
_getTemplateInstance(column) {
return column.getTemplateInstance(
Cosmoz.OmnitableTemplatizeMixin.CELL_TEMPLATE,
{item: this.item, selected: this.selected, expanded: this.expanded}
);
}
_itemUpdated(changeRecord) {
this.forwardPathChange(changeRecord);
}
_selectedChanged(selected) {
this.forwardChange('selected', selected);
}
_foldedChanged(folded) {
this.forwardChange('folded', folded);
}
}
customElements.define(OmnitableGroupRow.is, OmnitableGroupRow);
Cosmoz.OmnitableGroupRow = OmnitableGroupRow;
</script>
</dom-module>