forked from Neovici/cosmoz-omnitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmoz-omnitable-group-row.html
109 lines (90 loc) · 2.52 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
106
107
108
109
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="cosmoz-omnitable-repeater-behavior.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>
(function () {
Polymer({
is: 'cosmoz-omnitable-group-row',
behaviors: [
Cosmoz.OmnitableRepeaterBehavior
],
properties: {
column: {
type: Object,
observer: '_columnChanged'
},
item: {
type: Object
},
selected: {
type: Boolean,
observer: '_selectedChanged'
},
folded: {
type: Boolean,
observer: '_foldedChanged'
},
},
observers: [
'_itemUpdated(item.*)',
],
_elementType: 'div',
_slotName: 'group-row',
_columnChanged: function (newColumn) {
if (!newColumn) {
return;
}
if (this.columns && this.columns.length > 0) {
this.splice('columns', 0, 1, newColumn);
return;
}
this.columns = [newColumn];
},
_getTemplateInstance: function (column) {
return column.dataTemplatizer.getInstance();
},
_detachTemplateInstance: function (instance, column, element) {
column.dataTemplatizer.detachInstance(instance, element);
},
_configureTemplateInstance: function (instance) {
if (instance.item !== this.item && this.item !== undefined) {
this._forwardProperty(instance, 'item', this.item);
this._forwardProperty(instance, 'selected', this.selected);
this._forwardProperty(instance, 'folded', this.folded);
this._forwardPropertiesFlush(instance);
}
},
_itemUpdated: function (itemChange) {
if (itemChange.path === 'item') {
this.elements.forEach(function (element) {
this._forwardProperty(this.getElementTemplateInstance(element), 'item', itemChange.value, true);
}, this);
} else {
this.elements.forEach(function (element) {
this._forwardNotifyPath(this.getElementTemplateInstance(element), itemChange.path, itemChange.value, true, true);
}, this);
}
},
_selectedChanged: function (selected) {
this.templateInstances.forEach(instance => {
this._forwardProperty(instance, 'selected', selected, true);
});
},
_expandedChanged: function (expanded) {
this.templateInstances.forEach(instance => {
this._forwardProperty(instance, 'expanded', expanded, true);
});
},
_foldedChanged: function (folded) {
this.templateInstances.forEach(instance => {
this._forwardProperty(instance, 'folded', folded, true);
});
},
});
}());
</script>
</dom-module>