-
Notifications
You must be signed in to change notification settings - Fork 20
/
px-data-grid-header-cell.html
287 lines (246 loc) · 7.82 KB
/
px-data-grid-header-cell.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
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
<!--
Copyright (c) 2018, General Electric
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<link rel="import" href="../polymer/polymer-element.html">
<link rel="import" href="../polymer/lib/mixins/gesture-event-listeners.html">
<link rel="import" href="../px-dropdown/px-dropdown.html"/>
<link rel="import" href="../px-icon-set/px-icon.html"/>
<link rel="import" href="css/px-data-grid-header-cell-styles.html">
<dom-module id="px-data-grid-header-cell">
<template>
<style include="px-data-grid-header-cell-styles"></style>
<px-dropdown
allow-outside-scroll
button-style="icon"
icon="px-nav:menu"
items="{{_dropdownItems}}"
opened="{{dropdownOpened}}"
hidden$="[[_dropdownHidden]]"
on-px-dropdown-click="_dropdownItemClick"
on-click="_dropdownClick"
on-tap="_dropdownClick"
hoist>
<px-icon slot="trigger" icon="px-nav:menu"></px-icon>
</px-dropdown>
<slot></slot>
</template>
<script>
{
class DataGridHeaderCellElement extends Polymer.GestureEventListeners(Polymer.Element) {
static get is() {
return 'px-data-grid-header-cell';
}
static get properties() {
return {
/**
* If true, opens nested dropdown.
*/
dropdownOpened: {
type: Boolean,
observer: '_dropdownOpenedChanged'
},
groupByColumnAllowed: {
type: Boolean,
value: true
},
_dropdownHidden: {
type: Boolean,
value: true
},
_mouseover: {
type: Boolean,
value: false
},
_column: {
type: Object
},
_dropdownItems: {
type: Array
},
localize: Function
};
}
static get observers() {
return [
'_setDropdownItems(localize, _column.*, groupByColumnAllowed)'
];
}
ready() {
super.ready();
this.addEventListener('mouseenter', () => {
this._dropdownHidden = false;
this._mouseover = true;
});
this.addEventListener('mouseleave', () => {
this._mouseover = false;
if (!this.dropdownOpened) {
this._dropdownHidden = true;
}
});
this.addEventListener('click', (e) => {
this.querySelector('px-data-grid-sorter').click();
});
}
_freezeColumn() {
this._column.frozen = true;
this.dispatchEvent(new CustomEvent('column-froze', {
bubbles: true,
composed: true,
detail: {
column: this._column
}
}));
}
_unfreezeColumn() {
this._column.frozen = false;
this.dispatchEvent(new CustomEvent('column-unfroze', {
bubbles: true,
composed: true,
detail: {
column: this._column
}
}));
}
_hideColumn() {
this._column.hidden = true;
}
_groupByColumn() {
this._column.grouped = true;
this.dispatchEvent(new CustomEvent('group-by-column', {
bubbles: true,
composed: true,
detail: {
column: this._column
}
}));
}
_ungroup() {
this._column.grouped = false;
this.dispatchEvent(new CustomEvent('ungroup', {
bubbles: true,
composed: true,
detail: {
column: this._column
}
}));
}
_setDropdownItems() {
if (this._column) {
// First construct all items, only then apply to dropdownItems
// px-dropdown has issues noticing changes inside array
const newItems = [];
if (this._column.frozen) {
newItems.push(
{
key: {
action: () => this._unfreezeColumn()
},
val: this.localize('Unfreeze column'),
disableSelect: true
}
);
} else {
newItems.push(
{
key: {
action: () => this._freezeColumn()
},
val: this.localize('Freeze column'),
disableSelect: true
}
);
}
if (this._canBeHidden()) {
newItems.push(
{
key: {
action: () => this._hideColumn()
},
val: this.localize('Hide column'),
disableSelect: true
}
);
}
if (this.groupByColumnAllowed) {
if (this._column.grouped) {
newItems.push(
{
key: {
action: () => this._ungroup()
},
val: this.localize('Ungroup'),
disableSelect: true
}
);
} else {
newItems.push(
{
key: {
action: () => this._groupByColumn()
},
val: this.localize('Group by column'),
disableSelect: true
}
);
}
}
this._dropdownItems = newItems;
}
}
_dropdownOpenedChanged(dropdownOpened) {
if (!dropdownOpened && !this._mouseover) {
this._dropdownHidden = true;
}
// This hack is needed because each column has its own stacking context
// and when the drop-down of the pinned column opens,
// it is overlapped by the next pinned column.
const rowStyle = this.parentElement.assignedSlot.parentElement.style;
if (dropdownOpened) {
rowStyle.zIndex = '3';
} else {
rowStyle.zIndex = '';
}
// Just make sure menu is up to date
if (dropdownOpened) {
this._setDropdownItems();
}
}
_dropdownItemClick(e) {
const item = e.detail.detail.item;
if (item && item.key) {
item.key.action();
}
}
_dropdownClick(e) {
e.stopPropagation();
e.preventDefault();
}
_canBeHidden() {
if (this._column && this._column._grid && this._column._grid._pxDataGrid) {
const pxDataGrid = this._column._grid._pxDataGrid;
const groupedByThis = pxDataGrid._groupByColumn == this._column;
return !groupedByThis && pxDataGrid.getVisibleColumns().length > 1;
} else {
console.warn('Failed to resolve if column can be hidden');
return true;
}
}
}
customElements.define(DataGridHeaderCellElement.is, DataGridHeaderCellElement);
/**
* @namespace Predix
*/
window.Predix = window.Predix || {};
Predix.DataGridHeaderCellElement = DataGridHeaderCellElement;
}
</script>
</dom-module>