938d1928
Luigi Serra
Update documentat...
|
1
2
|
<!--
@license
|
584d6ecd
Luigi Serra
Update components...
|
3
|
The MIT License (MIT)
|
938d1928
Luigi Serra
Update documentat...
|
4
|
|
584d6ecd
Luigi Serra
Update components...
|
5
|
Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy
|
938d1928
Luigi Serra
Update documentat...
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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.
-->
|
ae17a8dc
Luigi Serra
Controllet and da...
|
26
27
28
29
30
31
32
33
34
|
<!--
* Created by :
* Luigi Serra - luigser@gmail.com
* Andrea Petta - andrpet@gmail.com
*
* Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy
*
-->
|
73bcce88
luigser
COMPONENTS
|
35
36
|
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/paper-styles/color.html">
|
73bcce88
luigser
COMPONENTS
|
37
38
39
40
41
42
43
44
45
|
<link rel="import" href="../../bower_components/neon-animation/neon-animated-pages.html">
<link rel="import" href="../../bower_components/neon-animation/neon-animatable.html">
<link rel="import" href="../../bower_components/neon-animation/neon-animations.html">
<link rel="import" href="../../bower_components/paper-card/paper-card.html">
<link rel="import" href="../../bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../bower_components/iron-icons/iron-icons.html">
|
584d6ecd
Luigi Serra
Update components...
|
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<!--
`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
-->
|
73bcce88
luigser
COMPONENTS
|
63
64
65
66
|
<dom-module id="items-slider-controllet">
<template>
<style is="custom-style">
|
73bcce88
luigser
COMPONENTS
|
67
|
|
74249687
Luigi Serra
Cross browser con...
|
68
|
::content .content-card{
|
73bcce88
luigser
COMPONENTS
|
69
70
71
|
position: relative;
float: left;
margin : .5em;
|
74249687
Luigi Serra
Cross browser con...
|
72
73
|
/* height: 8em;
width: 7em;
|
0b818d7e
Luigi Serra
Selection control...
|
74
|
min-width: 80px;
|
74249687
Luigi Serra
Cross browser con...
|
75
|
max-width: 115px;*/
|
7f074f84
Luigi Serra
cross browser bug...
|
76
|
width: 15.5%;
|
74249687
Luigi Serra
Cross browser con...
|
77
|
height: 70%;
|
73bcce88
luigser
COMPONENTS
|
78
|
background: #fff;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
79
80
|
-moz-border-radius: 0.125rem;; /* Firefox */
-webkit-border-radius: 0.125rem;; /* Safari, Chrome */
|
73bcce88
luigser
COMPONENTS
|
81
|
border-radius: 0.125rem;
|
74249687
Luigi Serra
Cross browser con...
|
82
83
84
|
box-shadow: 0 0.625em 0.5125em 0 rgba(0, 0, 0, 0.25);
-webkit-box-shadow: 0 0.625em 0.5125em 0 rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 0.625em 0.5125em 0 rgba(0, 0, 0, 0.25);
|
73bcce88
luigser
COMPONENTS
|
85
86
87
|
padding: 1em;
}
|
74249687
Luigi Serra
Cross browser con...
|
88
|
::content .content-selected{
|
73bcce88
luigser
COMPONENTS
|
89
90
|
position: relative;
float: left;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
91
|
top : 5%;
|
73bcce88
luigser
COMPONENTS
|
92
|
margin : .5em;
|
0b818d7e
Luigi Serra
Selection control...
|
93
|
|
74249687
Luigi Serra
Cross browser con...
|
94
95
|
/*height: 8em;
width: 7em;
|
0b818d7e
Luigi Serra
Selection control...
|
96
|
min-width: 80px;
|
74249687
Luigi Serra
Cross browser con...
|
97
|
max-width: 115px;*/
|
7f074f84
Luigi Serra
cross browser bug...
|
98
|
width: 15.5%;
|
74249687
Luigi Serra
Cross browser con...
|
99
|
height: 70%;
|
0b818d7e
Luigi Serra
Selection control...
|
100
|
|
73bcce88
luigser
COMPONENTS
|
101
102
103
|
background: #fff;
border-style: solid;
border-width: 0.03em;
|
74249687
Luigi Serra
Cross browser con...
|
104
105
|
-moz-border-radius: 0.125rem;; /* Firefox */
-webkit-border-radius: 0.125rem;; /* Safari, Chrome */
|
73bcce88
luigser
COMPONENTS
|
106
|
border-radius: 0.125rem;
|
74249687
Luigi Serra
Cross browser con...
|
107
108
109
|
box-shadow: 0 1.825em 1.7125em 0 rgba(0, 0, 0, 0.50);
-webkit-box-shadow: 0 1.825em 1.7125em 0 rgba(0, 0, 0, 0.50);
-moz-box-shadow: 0 1.825em 1.7125em 0 rgba(0, 0, 0, 0.50);
|
73bcce88
luigser
COMPONENTS
|
110
111
112
|
padding: 1em;
}
|
74249687
Luigi Serra
Cross browser con...
|
113
|
.title {
|
73bcce88
luigser
COMPONENTS
|
114
115
116
117
118
|
display: inline-block;
position: relative;
padding-left: .2em;
padding-right: .2em;
color: var(--paper-indigo-500);
|
74249687
Luigi Serra
Cross browser con...
|
119
|
}
|
73bcce88
luigser
COMPONENTS
|
120
|
|
74249687
Luigi Serra
Cross browser con...
|
121
|
.title .big {
|
73bcce88
luigser
COMPONENTS
|
122
123
|
/*font-size: 1.1em;*/
widht: 100%;
|
0b818d7e
Luigi Serra
Selection control...
|
124
|
font-size: 0.9em;
|
73bcce88
luigser
COMPONENTS
|
125
|
color: var(--google-grey-500);
|
74249687
Luigi Serra
Cross browser con...
|
126
|
}
|
73bcce88
luigser
COMPONENTS
|
127
128
129
130
131
|
.toolbar_button{
/*height: 100%;
display: inline-block;*/
float: left;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
132
133
|
margin-top: 10%;
width: 10px;
|
73bcce88
luigser
COMPONENTS
|
134
135
136
137
|
--iron-icon-height: 28px;
--iron-icon-width: 28px;
}
|
74249687
Luigi Serra
Cross browser con...
|
138
|
#pages{
|
73bcce88
luigser
COMPONENTS
|
139
140
141
|
position: relative;
float:left;
display: inline-block;
|
325c348a
Luigi Serra
Cross browser bug...
|
142
|
height: 38vh;
|
e619a3b0
Luigi Serra
Controllet cross ...
|
143
|
width: 100%;
|
73bcce88
luigser
COMPONENTS
|
144
145
146
147
148
|
overflow: hidden;
text-align: center;
/*margin-left: 3em;*/
}
|
74249687
Luigi Serra
Cross browser con...
|
149
150
151
152
153
|
img{
height: 80%;
width: 80%;
}
|
73bcce88
luigser
COMPONENTS
|
154
155
|
</style>
|
73bcce88
luigser
COMPONENTS
|
156
157
158
159
160
|
<neon-animated-pages id="pages" class="flex" selected="[[selected]]" entry-animation="[[entryAnimation]]" exit-animation="[[exitAnimation]]">
<template is="dom-repeat" items="{{itemsPages}}" as="page" index-as="p">
<neon-animatable>
|
e619a3b0
Luigi Serra
Controllet cross ...
|
161
162
163
164
|
<paper-icon-button class="toolbar_button x-scope" on-click="_onPrevClick" icon="chevron-left" alt="arrow-back" title="arrow-back"></paper-icon-button>
<template is="dom-repeat" items="{{itemsPerPage}}" as="item" index-as="i">
|
73bcce88
luigser
COMPONENTS
|
165
|
<template is="dom-if" if="{{getName(p, i) != 0}}">
|
e619a3b0
Luigi Serra
Controllet cross ...
|
166
|
<div class='content-card' id="{{getName(p, i)}}" on-click="_cardClick">
|
73bcce88
luigser
COMPONENTS
|
167
|
|
e619a3b0
Luigi Serra
Controllet cross ...
|
168
|
<div>
|
73bcce88
luigser
COMPONENTS
|
169
170
171
172
173
|
<div class="title">
<div class="big">{{getName(p, i)}}</div>
</div>
</div>
<br>
|
74249687
Luigi Serra
Cross browser con...
|
174
175
|
<div class="card-content-image">
<img src="{{getImage(p, i)}}">
|
73bcce88
luigser
COMPONENTS
|
176
177
178
179
|
</div>
</div>
</template>
</template>
|
e619a3b0
Luigi Serra
Controllet cross ...
|
180
181
182
|
<paper-icon-button class="toolbar_button x-scope" on-click="_onNextClick" icon="chevron-right" alt="arrow-forward" title="arrow-forward"></paper-icon-button>
|
73bcce88
luigser
COMPONENTS
|
183
184
185
186
187
|
</neon-animatable>
</template>
</neon-animated-pages>
|
73bcce88
luigser
COMPONENTS
|
188
|
</template>
|
73bcce88
luigser
COMPONENTS
|
189
190
191
192
193
|
<script>
Polymer({
|
584d6ecd
Luigi Serra
Update components...
|
194
195
196
197
198
199
200
|
is : 'items-slider-controllet',
/**
* Fired when the user selects a card from slider by clicking on it.
*
* @event items-slider-controllet_item-selected
*/
|
73bcce88
luigser
COMPONENTS
|
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
properties : {
entryAnimation : {
type : String,
value : ""
},
exitAnimation : {
type : String,
value : ""
},
selected : {
type : Number,
value : 0
},
/**
* It stores all items to put in the slider
*
|
73bcce88
luigser
COMPONENTS
|
222
223
224
225
226
|
*/
items : {
type: Array,
value: []
},
|
73bcce88
luigser
COMPONENTS
|
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
|
itemsPages : {
type : Array,
value : []
},
itemsPerPage : {
type : Array,
value : []
},
prevSelectedCard : {
type: Object,
value : null
},
numItemsPerPage : {
type: Number,
value : 4
}
},
ready : function(){
var pages = Math.floor(this.items.length / this.numItemsPerPage);
var mod = this.items.length % this.numItemsPerPage;
if(mod > 0) pages += 1;
|
0b818d7e
Luigi Serra
Selection control...
|
255
256
|
this.itemsPages = new Array();
this.itemsPerPage = new Array();
|
73bcce88
luigser
COMPONENTS
|
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
288
|
for(var i = 0; i < pages; i++){
this.itemsPages.push(i);
}
for(var i = 0; i < this.numItemsPerPage; i++){
this.itemsPerPage.push(i);
}
},
getPage : function(page){
return this.itemsPages[page];
},
getName : function(page, item){
return ( ((page * this.itemsPerPage.length) + item) > this.items.length - 1 ) ? 0 : this.items[(page * this.itemsPerPage.length) + item].name.replace("-datalet","");
},
getImage : function(page, item){
return ( ((page * this.itemsPerPage.length) + item) > this.items.length - 1 ) ? 0 : this.items[(page * this.itemsPerPage.length) + item].image;
},
_onPrevClick : function() {
this.entryAnimation = 'slide-from-left-animation';
this.exitAnimation = 'slide-right-animation';
this.selected = this.selected === 0 ? (this.itemsPages.length - 1) : (this.selected - 1);
},
_onNextClick : function() {
this.entryAnimation = 'slide-from-right-animation';
this.exitAnimation = 'slide-left-animation';
|
e619a3b0
Luigi Serra
Controllet cross ...
|
289
|
this.selected = this.selected === (this.itemsPages.length - 1) ? 0 : (this.selected + 1);
|
73bcce88
luigser
COMPONENTS
|
290
291
292
293
|
},
_cardClick : function(e){
if(this.prevSelectedCard != null){
|
e619a3b0
Luigi Serra
Controllet cross ...
|
294
|
this.prevSelectedCard.className = "content-card";
|
73bcce88
luigser
COMPONENTS
|
295
296
|
}
|
e619a3b0
Luigi Serra
Controllet cross ...
|
297
|
e.currentTarget.className = "content-selected";
|
73bcce88
luigser
COMPONENTS
|
298
299
300
301
|
this.prevSelectedCard = e.currentTarget;
this.fire('items-slider-controllet_item-selected', {datalet: e.currentTarget.id + "-datalet"});
|
74249687
Luigi Serra
Cross browser con...
|
302
303
304
|
},
attached : function(){
|
2b235978
Luigi Serra
Controllet cross ...
|
305
|
this.selected = 1;
|
73bcce88
luigser
COMPONENTS
|
306
307
308
309
310
311
|
}
});
</script>
</dom-module>
|