forked from Neovici/cosmoz-omnitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmoz-omnitable-item-row.html
130 lines (107 loc) · 3.29 KB
/
cosmoz-omnitable-item-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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<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-item-row">
<template>
<style>
:host {
@apply --layout-horizontal;
@apply --layout-flex;
@apply --layout-center;
min-width: 0;
}
:host > ::slotted(*) {
flex: 1 0 auto;
padding: 0 3px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
:host > ::slotted([hidden]),:host [hidden] {
display: none !important;
}
</style>
<slot name="item-cell"></slot>
</template>
</dom-module>
<script>
(function () {
'use strict';
Polymer({
is: 'cosmoz-omnitable-item-row',
behaviors: [
Cosmoz.OmnitableRepeaterBehavior
],
properties: {
item: {
type: Object
},
selected: {
type: Boolean,
observer: '_selectedChanged'
},
expanded: {
type: Boolean,
observer: '_expandedChanged'
},
},
observers: [
'_itemUpdated(item.*)',
],
_elementType: 'div',
_slotName: 'item-cell',
_getTemplateInstance: function (column) {
return column.dataTemplatizer.getInstance();
},
_detachTemplateInstance: function (instance, column, element) {
column.dataTemplatizer.detachInstance(instance, element);
},
_configureElement: function (element, column) {
element.style.flexBasis = column.editable ? column.editWidth : column.width;
element.style.minWidth = column.editable ? column.editMinWidth : column.minWidth;
element.style.flexGrow = column.flex;
element.setAttribute('title', this._getCellTitle(column, this.item));
element.setAttribute('class', this._computeItemRowCellClasses(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);
}
},
_computeItemRowCellClasses: function (column) {
var originalIndex = column.__index;
return 'itemRow-cell'
+ (column.cellClass ? ' ' + column.cellClass + ' ' : '')
+ ' cosmoz-omnitable-column-' + originalIndex;
},
_itemUpdated: function (itemChange) {
if (itemChange.path === 'item') {
this.elements.forEach(function (element) {
this._forwardProperty(this.getElementTemplateInstance(element), 'item', itemChange.value, true);
element.setAttribute('title', this._getCellTitle(this.getElementColumn(element), this.item));
}, 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);
});
},
_getCellTitle: function (column, item) {
return column && column.getString(item, column.valuePath);
},
});
}());
</script>