f748e9cf
Luigi Serra
new controllet an...
|
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
|
<!--
@license
The MIT License (MIT)
Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!--
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
*
-->
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/paper-styles/color.html">
<link rel="import" href="../../bower_components/paper-material">
<link rel="import" href="../../bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../bower_components/iron-icons/iron-icons.html">
<link rel="import" href="../../bower_components/iron-flex-layout/iron-flex-layout.html">
<!--
`items-slider-controllet` is a carousel of cards with a title and an image. Pass to it an array of objects with name and image fields and
a responsive slider will be created. Every time the user click on a card an event will be generate in order to get the card clicked information to
the component that use the slider.
Example:
<items-slider-controllet items='[{name : "myObject1", image : "pathToMyImage1"},...,{name : "myObjectN", image : "pathToMyImageN"}]' \>
</items-slider-controllet>
@element items-slider-controllet
@status beta
@homepage index.html
@group controllets
-->
<dom-module id="items-list-controllet">
<template>
<style is="custom-style">
.content-card{
position: relative;
float: left;
margin : .5em;
width: 80px;
height: 72px;
background: #fff;
padding: 1em;
}
#container{
|
31d9a4f6
Luigi Serra
updates
|
74
75
|
/*position: relative;
overflow: auto;*/
|
f748e9cf
Luigi Serra
new controllet an...
|
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
|
}
img{
height: 100%;
width: 100%;
}
.legend {
position: absolute;
/*background: rgba(0,0,0,0.8);*/
background: #9e9e9e;
color: #ffffff;
height: 30px;
padding: 0 16px;
left: 0;
bottom: 7px;
z-index: 1;
opacity: 0.87;
width: 80px;
font-size: 11px;
}
.legend span{
position: relative;
top: 8px;
}
.grid{
margin: auto;
padding: 5%;
}
</style>
<div id="container" class="layout vertical">
<div class="grid">
<template is="dom-repeat" items="{{items}}" as="item">
<template is="dom-if" if="{{_checkCard(item.name)}}">
<paper-material elevation="5" class='content-card' id="{{_replaceString(item.name)}}" on-click="_cardClick">
|
67b280f4
Luigi Serra
search feature
|
115
|
<div id="title" class="legend"><span>{{_replaceString(item.name)}}</span></div>
|
f748e9cf
Luigi Serra
new controllet an...
|
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<div class="card-content-image">
<img src="{{item.image}}">
</div>
</paper-material>
</template>
<template is="dom-if" if="{{!_checkCard(item.name)}}">
<paper-material elevation="1" class='content-card' id="{{_replaceString(item.name)}}" on-click="_cardClick">
<div class="legend"><span>{{_replaceString(item.name)}}</span></div>
<div class="card-content-image">
<img src="{{item.image}}">
</div>
</paper-material>
</template>
</template>
</div>
</div>
</template>
|
f748e9cf
Luigi Serra
new controllet an...
|
134
135
136
137
138
139
140
141
142
|
<script>
Polymer({
is : 'items-list-controllet',
/**
* Fired when the user selects a card from slider by clicking on it.
*
|
67b280f4
Luigi Serra
search feature
|
143
|
* @event items-list-controllet_item-selected
|
f748e9cf
Luigi Serra
new controllet an...
|
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
*/
properties : {
/**
* It stores all items to put in the slider
*
*/
items : {
type: Array,
value: []
},
prevSelectedCard : {
type: Object,
value : null
},
/**
* Presected card. You can pass the card title to preselect it.
*/
selectedCard:{
type: String,
value: undefined
},
|
f748e9cf
Luigi Serra
new controllet an...
|
165
166
167
168
169
170
171
|
replaceString:{
type: String,
vale: undefined
}
},
ready : function(){
|
f748e9cf
Luigi Serra
new controllet an...
|
172
173
174
175
|
if(this.selectedCard != undefined){
this.fire('items-list-controllet_item-selected', {datalet: this.selectedCard + this.replaceString});
}
|
f748e9cf
Luigi Serra
new controllet an...
|
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
},
_checkCard: function(name){
return (this._replaceString(name) == this.selectedCard);
},
_cardClick : function(e){
if(this.selectedCard != undefined) {
var card = document.getElementById(this.selectedCard);
this.prevSelectedCard = card;
this.selectedCard = undefined;
}
if(this.prevSelectedCard != null){
this.prevSelectedCard.elevation = "1";
}
e.currentTarget.elevation = "5";
this.prevSelectedCard = e.currentTarget;
|
31d9a4f6
Luigi Serra
updates
|
196
197
|
this.fire('items-list-controllet_item-selected', {datalet: e.currentTarget.id + this.replaceString});
this.fire('animated-button-container-controllet_element-selected', {selectedElement: e.currentTarget.cloneNode(true)});
|
f748e9cf
Luigi Serra
new controllet an...
|
198
199
200
201
202
|
},
_replaceString: function(string){
return (this.replaceString != undefined) ? string.replace(this.replaceString,"") : string;
|
67b280f4
Luigi Serra
search feature
|
203
204
205
206
207
208
209
210
211
212
213
|
},
_handleSearch: function(e){
var items = document.querySelectorAll('.content-card');
for(var i=0; i < items.length;i++){
if(items[i].id.indexOf(e.detail.searchKey) != -1 || e.detail.searchKey == ""){
items[i].style.display = "inline-block";
}else{
items[i].style.display = "none";
}
}
|
f748e9cf
Luigi Serra
new controllet an...
|
214
215
216
217
218
219
|
}
});
</script>
</dom-module>
|