Blame view

controllets/animated-grid-controllet/animated-grid-controllet.html 5.92 KB
925d7edd   isisadmin   animated-grid-con...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <!--

  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.

  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt

  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt

  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt

  Code distributed by Google as part of the polymer project is also

  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt

  -->

  <link rel="import" href="../../bower_components/polymer/polymer.html">

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

  <link rel="import" href="../../bower_components/neon-animation/neon-shared-element-animatable-behavior.html">

  

  <dom-module id="animated-grid-controllet">

  

      <style>

  

          :host {

              display: block;

421d90db   Renato De Donato   room bug fix
19
20
              background: #FFFFFF;

              /*margin-top: 16px;;*/

925d7edd   isisadmin   animated-grid-con...
21
22
23
24
25
26
27
28
29
30
31
          }

  

          /* clearfix */

          .grid:after

          {

              content: '';

              display: block;

              clear: both;

          }

  

          /* ---- grid-item ---- */

cae62033   Renato De Donato   room tooltip
32
33
34
35
36
37
38
          ::content .grid-item {

              float: left;

              box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;

              border-top: 4px solid white;

              border-left: 4px solid white;

              cursor: pointer;

          }

d0de5d86   isisadmin   public room
39
40
41
42
43
44
          ::content .grid-sizer {width: 200px;}

          ::content .grid-item-w20  {width:  200px;}

          ::content .grid-item-w40  {width:  400px;}

          ::content .grid-item-w60  {width:  600px;}

          ::content .grid-item-w80  {width:  80%;}

          ::content .grid-item-w100 {width:  100%;}

d0de5d86   isisadmin   public room
45
46
47
48
          ::content .grid-item-h200 {height: 200px;}

          ::content .grid-item-h400 {height: 400px;}

          ::content .grid-item-h600 {height: 600px;}

          ::content .grid-item-h800 {height: 800px;}

0f6424fe   root   update new data-s...
49
50
          ::content .grid-item-c4 {background-color: #2C29FF;}

          /* ---- grid-item ---- */

d0de5d86   isisadmin   public room
51
  

cae62033   Renato De Donato   room tooltip
52
53
          ::content .room-body

          {

421d90db   Renato De Donato   room bug fix
54
              height: calc(100% - 40px);/* 100% =*200/400 -4 border*/

cae62033   Renato De Donato   room tooltip
55
56
57
58
59
60
61
              width: calc(100% - 16px);

              color:#FFFFFF;

              padding: 8px;

              word-wrap: break-word;

              overflow: hidden;

              text-overflow: ellipsis;

          }

d0de5d86   isisadmin   public room
62
          ::content .room-subject

925d7edd   isisadmin   animated-grid-con...
63
          {

d0de5d86   isisadmin   public room
64
              position: absolute;

cae62033   Renato De Donato   room tooltip
65
66
67
68
69
              width: calc(100% - 16px);

              height: 32px;

              bottom: 32px;

              background-color: rgba(0,0,0,0.8);

              padding: 16px 0px 0px 16px;

d0de5d86   isisadmin   public room
70
              color: #FFFFFF;

cae62033   Renato De Donato   room tooltip
71
72
73
              font-weight: 700;

              white-space: nowrap;

              word-wrap: break-word;

0f6424fe   root   update new data-s...
74
              overflow: hidden;

0f6424fe   root   update new data-s...
75
              text-overflow: ellipsis;

0f6424fe   root   update new data-s...
76
          }

cae62033   Renato De Donato   room tooltip
77
  

0f6424fe   root   update new data-s...
78
79
80
          ::content .room-timestamp

          {

              position: absolute;

cae62033   Renato De Donato   room tooltip
81
82
83
84
85
86
              bottom: 0px;

              right:0px;

              color: #FFFFFF;

              padding: 8px;

              font-size: small;

              line-height: 16px;

0f6424fe   root   update new data-s...
87
          }

925d7edd   isisadmin   animated-grid-con...
88
89
90
91
      </style>

  

      <template>

  

d0de5d86   isisadmin   public room
92
93
          <div id="grid-container" class="grid">

              <!--<template is="dom-repeat" items="{{data}}">

925d7edd   isisadmin   animated-grid-con...
94
                  <div class$="{{item.b}} {{item.w}} {{item.h}} {{item.c}}">{{index}}</div>

d0de5d86   isisadmin   public room
95
96
              </template>-->

              <content></content>

925d7edd   isisadmin   animated-grid-con...
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
          </div>

  

          <div class="grid-sizer"></div>

  

      </template>

  

  </dom-module>

  

  <script>

  

      Polymer({

  

          is: 'animated-grid-controllet',

  

          behaviors: [

              Polymer.NeonSharedElementAnimatableBehavior

          ],

  

          properties: {

              animationConfig: {

                  type: Object,

                  value: function() {

                      return {

                          'exit': [{

                              name: 'ripple-animation',

                              id: 'ripple',

                              fromPage: this

                          }, {

                              name: 'hero-animation',

                              id: 'hero',

                              fromPage: this

                          }]

                      }

                  }

              }

          },

  

          ready : function()

          {

d0de5d86   isisadmin   public room
136
              /*var randW = 0;

925d7edd   isisadmin   animated-grid-con...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
              var randH = 0;

              var randC = 0;

              this.data = [];

  

              for(var i=0; i<100; i++)

              {

                  randW = Math.floor(Math.random() * 2);

                  randH = Math.floor(Math.random() * 2);//randW;//0;//1;

                  randC = Math.floor(Math.random() * 5);

                  //html += '<div class="grid-item grid-item-w'+((randW*20)+20)+' grid-item-h'+((randH*200)+200)+' grid-item-c'+randC+'">Topic - '+i+'</div>';

  

                  this.push('data',    {b: 'grid-item',

                                        w: 'grid-item-w'+((randW*20)+20),

                                        h: 'grid-item-h'+((randH*200)+200),

                                        c: 'grid-item-c'+randC});

  

d0de5d86   isisadmin   public room
153
              }*/

925d7edd   isisadmin   animated-grid-con...
154
155
156
157
158
159
          },

  

          attached : function()

          {

              $('.grid').masonry({

                  itemSelector: '.grid-item',

1463340a   Andrea Petta   layout bug fix
160
                  columnWidth: 20

925d7edd   isisadmin   animated-grid-con...
161
162
163
164
165
166
167
168
169
170
171
              });

          },

  

          listeners: {

              click: '_onClick'

          },

  

          _onClick: function(event) {

  

              var target = event.target;

  

0f6424fe   root   update new data-s...
172
173
              while(target.classList[0] != "grid-item")

                  target = target.parentElement;

be426b06   isisadmin   private room
174
  

925d7edd   isisadmin   animated-grid-con...
175
176
177
178
179
180
181
182
183
184
185
186
              // configure the page animation

              this.sharedElements = {

                  'hero': target,

                  'ripple': target

              };

              this.animationConfig['exit'][0].gesture = {

                  x: event.x || event.pageX,

                  y: event.y || event.pageY

              };

  

              this.fire('tile-click', {

                  tile: target,

0f6424fe   root   update new data-s...
187
                  data: {color: target.style.backgroundColor, id:target.id}

925d7edd   isisadmin   animated-grid-con...
188
189
190
191
192
193
194
              });

  

          }

  

      });

  

  </script>