forked from Neovici/cosmoz-omnitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmoz-omnitable-item-expand.html
129 lines (105 loc) · 3.02 KB
/
cosmoz-omnitable-item-expand.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="cosmoz-omnitable-repeater-behavior.html">
<link rel="import" href="cosmoz-omnitable-item-expand-line.html">
<dom-module id="cosmoz-omnitable-item-expand">
<template>
<style>
:host([expanded]) {
@apply --layout-vertical;
padding: 5px 4%;
line-height: 1.3em;
border-bottom: solid 1px #e2e2e2;
background-color: #fafafa;
@apply --cosmoz-omnitable-item-expand;
}
:host(:not([expanded])) {
display: none !important;
}
:host([hidden]), :host > ::slotted([hidden]), :host [hidden] {
display: none !important;
}
</style>
<slot name="item-expand-line"></slot>
</template>
</dom-module>
<script>
(function () {
'use strict';
Polymer({
is: 'cosmoz-omnitable-item-expand',
behaviors: [
Cosmoz.OmnitableRepeaterBehavior
],
properties: {
item: {
type: Object
},
selected: {
type: Boolean,
observer: '_selectedChanged'
},
expanded: {
type: Boolean,
value: false,
reflectToAttribute: true,
observer: '_expandedChanged'
},
hidden: {
type: Boolean,
reflectToAttribute: true,
}
},
observers: [
'_updateSize(columns.length)',
'_itemUpdated(item.*)'
],
_elementType: 'cosmoz-omnitable-item-expand-line',
_slotName: 'item-expand-line',
_getTemplateInstance: function (column) {
return column.dataTemplatizer.getInstance();
},
_detachTemplateInstance: function (instance, column, element) {
column.dataTemplatizer.detachInstance(instance, element);
},
_configureElement: function (element, column) {
element.column = column;
},
_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, 'expanded', this.expanded);
this._forwardPropertiesFlush(instance);
}
},
_updateSize: function (columnsCount) {
this.hidden = columnsCount === 0;
if (this.expanded) {
// Notify omnitable that this item is expanded and my need individual resize
this.fire('update-item-size', { item: this.item }, { bubbles: true});
}
},
_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);
});
}
});
}());
</script>