forked from Neovici/cosmoz-omnitable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmoz-omnitable-column-list-data.html
108 lines (94 loc) · 2.46 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
<link rel="import" href="../cosmoz-i18next/cosmoz-i18next.html">
<link rel="import" href="../cosmoz-behaviors/cosmoz-templatehelper-behavior.html">
<link rel="import" href="../iron-resizable-behavior/iron-resizable-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;
}
[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>
Polymer({
is: 'cosmoz-omnitable-column-list-data',
properties: {
items: {
type: Array
},
_expanded: {
type: Boolean,
value: false
},
_othersCount: {
type: Number,
computed: '_computeOthersCount(items)'
}
},
behaviors: [
Cosmoz.TemplateHelperBehavior,
Cosmoz.TranslatableBehavior,
Polymer.IronResizableBehavior
],
_firstItem: function (items) {
if (items !== undefined && items !== null && items.length > 0) {
return items[0];
}
},
_hideExpand: function (items, expanded) {
if (items !== undefined && items.length !== null) {
return items.length <= 2 || expanded;
}
return true;
},
_hideCollapse: function (items, expanded) {
if (items !== undefined && items.length !== null) {
return items.length <= 2 || !expanded;
}
return true;
},
_otherItems: function (items, expanded) {
if (items !== undefined && items !== null) {
if (items.length <= 2 || expanded) {
return items.slice(1);
}
}
},
_computeOthersCount: function (items) {
if (items !== undefined && items !== null) {
return items.length - 1;
}
},
_toggleExpand: function (event) {
this._expanded = !this._expanded;
event.stopPropagation();
event.preventDefault();
this.fire('iron-resize');
}
});
</script>
</dom-module>