Blame view

controllets/items-slider-controllet/items-slider-controllet.html 10.7 KB
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.

  -->

  

73bcce88   luigser   COMPONENTS
26
27
  <link rel="import" href="../../bower_components/polymer/polymer.html">

  <link rel="import" href="../../bower_components/paper-styles/color.html">

73bcce88   luigser   COMPONENTS
28
29
30
31
32
33
34
35
36
  

  <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...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  <!--

   `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
54
55
56
57
  <dom-module id="items-slider-controllet">

      <template>

  

          <style is="custom-style">

73bcce88   luigser   COMPONENTS
58
  

74249687   Luigi Serra   Cross browser con...
59
              ::content .content-card{

73bcce88   luigser   COMPONENTS
60
61
62
                  position: relative;

                  float: left;

                  margin : .5em;

74249687   Luigi Serra   Cross browser con...
63
64
                 /* height: 8em;

                  width: 7em;

0b818d7e   Luigi Serra   Selection control...
65
                  min-width: 80px;

74249687   Luigi Serra   Cross browser con...
66
                  max-width: 115px;*/

7f074f84   Luigi Serra   cross browser bug...
67
                  width: 15.5%;

74249687   Luigi Serra   Cross browser con...
68
                  height: 70%;

73bcce88   luigser   COMPONENTS
69
                  background: #fff;

e619a3b0   Luigi Serra   Controllet cross ...
70
71
                  -moz-border-radius: 0.125rem;; /* Firefox */

                  -webkit-border-radius: 0.125rem;; /* Safari, Chrome */

73bcce88   luigser   COMPONENTS
72
                  border-radius: 0.125rem;

74249687   Luigi Serra   Cross browser con...
73
74
75
                  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
76
77
78
                  padding: 1em;

              }

  

74249687   Luigi Serra   Cross browser con...
79
              ::content .content-selected{

73bcce88   luigser   COMPONENTS
80
81
                  position: relative;

                  float: left;

e619a3b0   Luigi Serra   Controllet cross ...
82
                  top : 5%;

73bcce88   luigser   COMPONENTS
83
                  margin : .5em;

0b818d7e   Luigi Serra   Selection control...
84
  

74249687   Luigi Serra   Cross browser con...
85
86
                  /*height: 8em;

                  width: 7em;

0b818d7e   Luigi Serra   Selection control...
87
                  min-width: 80px;

74249687   Luigi Serra   Cross browser con...
88
                  max-width: 115px;*/

7f074f84   Luigi Serra   cross browser bug...
89
                  width: 15.5%;

74249687   Luigi Serra   Cross browser con...
90
                  height: 70%;

0b818d7e   Luigi Serra   Selection control...
91
  

73bcce88   luigser   COMPONENTS
92
93
94
                  background: #fff;

                  border-style: solid;

                  border-width: 0.03em;

74249687   Luigi Serra   Cross browser con...
95
96
                  -moz-border-radius: 0.125rem;; /* Firefox */

                  -webkit-border-radius: 0.125rem;; /* Safari, Chrome */

73bcce88   luigser   COMPONENTS
97
                  border-radius: 0.125rem;

74249687   Luigi Serra   Cross browser con...
98
99
100
                  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
101
102
103
                  padding: 1em;

              }

  

74249687   Luigi Serra   Cross browser con...
104
              .title {

73bcce88   luigser   COMPONENTS
105
106
107
108
109
                  display: inline-block;

                  position: relative;

                  padding-left: .2em;

                  padding-right: .2em;

                  color: var(--paper-indigo-500);

74249687   Luigi Serra   Cross browser con...
110
              }

73bcce88   luigser   COMPONENTS
111
  

74249687   Luigi Serra   Cross browser con...
112
              .title .big {

73bcce88   luigser   COMPONENTS
113
114
                  /*font-size: 1.1em;*/

                  widht: 100%;

0b818d7e   Luigi Serra   Selection control...
115
                  font-size: 0.9em;

73bcce88   luigser   COMPONENTS
116
                  color: var(--google-grey-500);

74249687   Luigi Serra   Cross browser con...
117
              }

73bcce88   luigser   COMPONENTS
118
119
120
121
122
  

              .toolbar_button{

                  /*height: 100%;

                  display: inline-block;*/

                  float: left;

e619a3b0   Luigi Serra   Controllet cross ...
123
124
                  margin-top: 10%;

                  width: 10px;

73bcce88   luigser   COMPONENTS
125
126
127
128
                  --iron-icon-height: 28px;

                  --iron-icon-width: 28px;

              }

  

74249687   Luigi Serra   Cross browser con...
129
              #pages{

73bcce88   luigser   COMPONENTS
130
131
132
                  position: relative;

                  float:left;

                  display: inline-block;

325c348a   Luigi Serra   Cross browser bug...
133
                  height: 38vh;

e619a3b0   Luigi Serra   Controllet cross ...
134
                  width: 100%;

73bcce88   luigser   COMPONENTS
135
136
137
138
139
                  overflow: hidden;

                  text-align: center;

                  /*margin-left: 3em;*/

              }

  

74249687   Luigi Serra   Cross browser con...
140
141
142
143
144
              img{

                  height: 80%;

                  width: 80%;

              }

  

73bcce88   luigser   COMPONENTS
145
146
          </style>

  

73bcce88   luigser   COMPONENTS
147
148
149
150
151
          <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 ...
152
153
154
155
  

                     <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
156
                         <template is="dom-if" if="{{getName(p, i) != 0}}">

e619a3b0   Luigi Serra   Controllet cross ...
157
                               <div class='content-card' id="{{getName(p, i)}}" on-click="_cardClick">

73bcce88   luigser   COMPONENTS
158
  

e619a3b0   Luigi Serra   Controllet cross ...
159
                                  <div>

73bcce88   luigser   COMPONENTS
160
161
162
163
164
                                      <div class="title">

                                          <div class="big">{{getName(p, i)}}</div>

                                      </div>

                                  </div>

                                  <br>

74249687   Luigi Serra   Cross browser con...
165
166
                                  <div class="card-content-image">

                                      <img src="{{getImage(p, i)}}">

73bcce88   luigser   COMPONENTS
167
168
169
170
                                  </div>

                              </div>

                         </template>

                      </template>

e619a3b0   Luigi Serra   Controllet cross ...
171
172
173
  

                      <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
174
175
176
177
178
                   </neon-animatable>

              </template>

  

          </neon-animated-pages>

  

73bcce88   luigser   COMPONENTS
179
      </template>

73bcce88   luigser   COMPONENTS
180
181
182
183
184
  

      <script>

  

          Polymer({

  

584d6ecd   Luigi Serra   Update components...
185
186
187
188
189
190
191
              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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  

              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
213
214
215
216
217
                   */

                  items : {

                      type: Array,

                      value: []

                  },

73bcce88   luigser   COMPONENTS
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
                  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...
246
247
                  this.itemsPages   = new Array();

                  this.itemsPerPage = new Array();

73bcce88   luigser   COMPONENTS
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
  

                  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 ...
280
                  this.selected = this.selected === (this.itemsPages.length - 1) ? 0 : (this.selected + 1);

73bcce88   luigser   COMPONENTS
281
282
283
284
              },

  

              _cardClick : function(e){

                  if(this.prevSelectedCard != null){

e619a3b0   Luigi Serra   Controllet cross ...
285
                      this.prevSelectedCard.className = "content-card";

73bcce88   luigser   COMPONENTS
286
287
  

                  }

e619a3b0   Luigi Serra   Controllet cross ...
288
                  e.currentTarget.className = "content-selected";

73bcce88   luigser   COMPONENTS
289
290
291
292
                  this.prevSelectedCard = e.currentTarget;

  

                  this.fire('items-slider-controllet_item-selected', {datalet: e.currentTarget.id + "-datalet"});

  

74249687   Luigi Serra   Cross browser con...
293
294
295
              },

  

              attached : function(){

2b235978   Luigi Serra   Controllet cross ...
296
                  this.selected = 1;

73bcce88   luigser   COMPONENTS
297
298
299
300
301
302
              }

          });

  

      </script>

  

  </dom-module>