-
Notifications
You must be signed in to change notification settings - Fork 5
/
cosmoz-omnitable-column-list-data.html
141 lines (122 loc) · 3.3 KB
/
cosmoz-omnitable-column-list-data.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
<link rel="import" href="../shadycss/apply-shim.html">
<link rel="import" href="../polymer/polymer-element.html"/>
<link rel="import" href="../polymer/lib/legacy/class.html"/>
<link rel="import" href="../cosmoz-i18next/cosmoz-i18next.html">
<link rel="import" href="../cosmoz-behaviors/cosmoz-templatehelper-behavior.html">
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
<dom-module id="cosmoz-omnitable-column-list-data">
<template>
<style>
:host {
display: block;
}
:host a {
color: var(--primary-link-color, inherit);
}
[hidden] {
display: none;
}
ul {
margin: 0.3em 0;
padding-left: 1em;
}
</style>
<ul hidden$="[[ isEmpty(items) ]]">
<li>
<span>[[ _firstItem(items) ]]</span>
</li>
<li class="see-more" hidden$="[[_hideExpand(items, _expanded)]]">
<a href="#" on-tap="_toggleExpand">[[ _('and {0} more', _othersCount, t) ]]</a>
</li>
<template is="dom-repeat" items="[[ _otherItems(items, _expanded) ]]" as="item">
<li>
<span class="item">[[ item ]]</span>
</li>
</template>
<li class="see-less" hidden$="[[ _hideCollapse(items, _expanded) ]]">
<a href="#" on-tap="_toggleExpand">[[ _('See less', t) ]]</a>
</li>
</ul>
</template>
<script>
window.Cosmoz = window.Cosmoz || {};
class OmnitableColumnListData extends Polymer.mixinBehaviors(
[
Cosmoz.TemplateHelperBehavior,
Cosmoz.TranslatableBehavior
],
Polymer.Element
) {
static get is() {
return 'cosmoz-omnitable-column-list-data';
}
static get properties() {
return {
items: {
type: Array
},
_expanded: {
type: Boolean,
value: false
},
_othersCount: {
type: Number,
computed: '_computeOthersCount(items)'
},
// FIXME: remove when TranslatableBehavior is a 2.x mixin
t: {
type: Object,
value() {
return {};
}
}
};
}
isEmpty() {
// FIXME: remove this when TemplateHelperBehavior is a 2.x mixin
return Cosmoz.TemplateHelperBehavior.isEmpty.apply(this, arguments);
}
_() {
// FIXME: remove this when TranslatableBehavior is a 2.x mixin
return Cosmoz.TranslatableBehavior._.apply(this, arguments);
}
_firstItem(items) {
if (items !== undefined && items !== null && items.length > 0) {
return items[0];
}
}
_hideExpand(items, expanded) {
if (items !== undefined && items.length !== null) {
return items.length <= 2 || expanded;
}
return true;
}
_hideCollapse(items, expanded) {
if (items !== undefined && items.length !== null) {
return items.length <= 2 || !expanded;
}
return true;
}
_otherItems(items, expanded) {
if (items !== undefined && items !== null) {
if (items.length <= 2 || expanded) {
return items.slice(1);
}
}
}
_computeOthersCount(items) {
if (items !== undefined && items !== null) {
return items.length - 1;
}
}
_toggleExpand(event) {
this._expanded = !this._expanded;
event.stopPropagation();
event.preventDefault();
this.dispatchEvent(new CustomEvent('iron-resize', {bubbles: true}));
}
}
customElements.define(OmnitableColumnListData.is, OmnitableColumnListData);
Cosmoz.OmnitableColumnListData = OmnitableColumnListData;
</script>
</dom-module>