Blame view

bower_components/paper-header-panel/paper-header-panel.html 14.9 KB
73bcce88   luigser   COMPONENTS
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
  <!--
  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="../polymer/polymer.html">
  <link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
  
  <!--
  `paper-header-panel` contains a header section and a content panel section.
  
  __Important:__ The `paper-header-panel` will not display if its parent does not have a height.
  
  Using layout classes, you can make the `paper-header-panel` fill the screen
  
      <body class="fullbleed layout vertical">
        <paper-header-panel class="flex">
          <paper-toolbar>
            <div>Hello World!</div>
          </paper-toolbar>
        </paper-header-panel>
      </body>
  
  Special support is provided for scrolling modes when one uses a paper-toolbar or equivalent for the
  header section.
  
  Example:
  
      <paper-header-panel>
        <paper-toolbar>Header</paper-toolbar>
        <div>Content goes here...</div>
      </paper-header-panel>
  
  If you want to use other than `paper-toolbar` for the header, add `paper-header` class to that
  element.
  
  Example:
  
      <paper-header-panel>
        <div class="paper-header">Header</div>
        <div>Content goes here...</div>
      </paper-header-panel>
  
  To have the content fit to the main area, use the `fit` class.
  
      <paper-header-panel>
        <div class="paper-header">standard</div>
        <div class="fit">content fits 100% below the header</div>
      </paper-header-panel>
  
a1a3bc73   Luigi Serra   graphs updates
55
  ### Modes
73bcce88   luigser   COMPONENTS
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  
  Controls header and scrolling behavior. Options are `standard`, `seamed`, `waterfall`, `waterfall-tall`, `scroll` and
  `cover`. Default is `standard`.
  
  Mode | Description
  ----------------|-------------
  `standard` | The header is a step above the panel. The header will consume the panel at the point of entry, preventing it from passing through to the opposite side.
  `seamed` | The header is presented as seamed with the panel.
  `waterfall` | Similar to standard mode, but header is initially presented as seamed with panel, but then separates to form the step.
  `waterfall-tall` | The header is initially taller (`tall` class is added to the header). As the user scrolls, the header separates (forming an edge) while condensing (`tall` class is removed from the header).
  `scroll` | The header keeps its seam with the panel, and is pushed off screen.
  `cover` | The panel covers the whole `paper-header-panel` including the header. This allows user to style the panel in such a way that the panel is partially covering the header.
  
  Example:
  
      <paper-header-panel mode="waterfall">
        <div class="paper-header">standard</div>
        <div class="content fit">content fits 100% below the header</div>
      </paper-header-panel>
  
  
a1a3bc73   Luigi Serra   graphs updates
77
  ### Styling
73bcce88   luigser   COMPONENTS
78
79
80
81
82
83
84
85
86
87
88
89
90
  
  To change the shadow that shows up underneath the header:
  
      paper-header-panel {
        --paper-header-panel-shadow: {
            height: 6px;
            bottom: -6px;
            box-shadow: inset 0px 5px 6px -3px rgba(0, 0, 0, 0.4);
        };
      }
  
  To change the panel container in different modes:
  
a1a3bc73   Luigi Serra   graphs updates
91
      paper-header-panel {
73bcce88   luigser   COMPONENTS
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
        --paper-header-panel-standard-container: {
          border: 1px solid gray;
        };
  
        --paper-header-panel-seamed-container: {
          border: 1px solid gray;
        };
  
        --paper-header-panel-waterfall-container: {
          border: 1px solid gray;
        };
  
        --paper-header-panel-waterfall-tall-container: {
          border: 1px solid gray;
        };
  
        --paper-header-panel-scroll-container: {
          border: 1px solid gray;
        };
  
        --paper-header-panel-cover-container: {
          border: 1px solid gray;
        };
      }
  
a1a3bc73   Luigi Serra   graphs updates
117
118
119
120
121
122
123
124
125
126
127
128
129
  The following custom properties and mixins are available for styling:
  
  Custom property | Description | Default
  ----------------|-------------|----------
  `--paper-header-panel` | Mixin applied to the element | `{}`
  `--paper-header-panel-body` | Mixin applied to the element's body (i.e. everything below the toolbar) | `{}`
  `--paper-header-panel-scroll-container` | Mixin applied to the container when in scroll mode | `{}`
  `--paper-header-panel-cover-container` | Mixin applied to the container when in cover mode | `{}`
  `--paper-header-panel-standard-container` | Mixin applied to the container when in standard mode | `{}`
  `--paper-header-panel-seamed-container` | Mixin applied to the container when in seamed mode | `{}`
  `--paper-header-panel-waterfall-container` | Mixin applied to the container when in waterfall mode | `{}`
  `--paper-header-panel-waterfall-tall-container` | Mixin applied to the container when in tall waterfall mode | `{}`
  
73bcce88   luigser   COMPONENTS
130
131
132
133
134
135
136
  @group Paper Elements
  @element paper-header-panel
  @demo demo/index.html
  @hero hero.svg
  -->
  
  <dom-module id="paper-header-panel">
a1a3bc73   Luigi Serra   graphs updates
137
138
139
140
141
142
143
144
    <template>
      <style>
        :host {
          --paper-header-panel-shadow: {
            height: 6px;
            bottom: -6px;
            box-shadow: inset 0px 5px 6px -3px rgba(0, 0, 0, 0.4);
          };
73bcce88   luigser   COMPONENTS
145
  
a1a3bc73   Luigi Serra   graphs updates
146
          @apply(--layout-vertical);
73bcce88   luigser   COMPONENTS
147
  
a1a3bc73   Luigi Serra   graphs updates
148
149
          position: relative;
          height: 100%;
73bcce88   luigser   COMPONENTS
150
  
a1a3bc73   Luigi Serra   graphs updates
151
152
          @apply(--paper-header-panel);
        }
73bcce88   luigser   COMPONENTS
153
  
a1a3bc73   Luigi Serra   graphs updates
154
155
        #mainContainer {
          @apply(--layout-flex);
73bcce88   luigser   COMPONENTS
156
  
a1a3bc73   Luigi Serra   graphs updates
157
158
159
160
161
          position: relative;
          overflow-y: auto;
          overflow-x: hidden;
          -webkit-overflow-scrolling: touch;
        }
73bcce88   luigser   COMPONENTS
162
  
a1a3bc73   Luigi Serra   graphs updates
163
164
165
        #mainPanel {
          @apply(--layout-vertical);
          @apply(--layout-flex);
73bcce88   luigser   COMPONENTS
166
  
a1a3bc73   Luigi Serra   graphs updates
167
168
          position: relative;
          min-height: 0;
73bcce88   luigser   COMPONENTS
169
  
a1a3bc73   Luigi Serra   graphs updates
170
171
          @apply(--paper-header-panel-body);
        }
73bcce88   luigser   COMPONENTS
172
  
a1a3bc73   Luigi Serra   graphs updates
173
174
175
176
177
        /*
         * mode: scroll
         */
        :host([mode=scroll]) #mainContainer {
          @apply(--paper-header-panel-scroll-container);
73bcce88   luigser   COMPONENTS
178
  
a1a3bc73   Luigi Serra   graphs updates
179
180
          overflow: visible;
        }
73bcce88   luigser   COMPONENTS
181
  
a1a3bc73   Luigi Serra   graphs updates
182
183
184
185
186
        :host([mode=scroll]) {
          overflow-y: auto;
          overflow-x: hidden;
          -webkit-overflow-scrolling: touch;
        }
73bcce88   luigser   COMPONENTS
187
  
a1a3bc73   Luigi Serra   graphs updates
188
189
190
191
192
193
194
195
196
197
198
199
        /*
         * mode: cover
         */
        :host([mode=cover]) #mainContainer {
          @apply(--paper-header-panel-cover-container);
  
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
        }
73bcce88   luigser   COMPONENTS
200
  
a1a3bc73   Luigi Serra   graphs updates
201
202
        :host([mode=cover]) #mainPanel {
          position: static;
73bcce88   luigser   COMPONENTS
203
        }
a1a3bc73   Luigi Serra   graphs updates
204
205
206
  
        /*
         * mode: standard
73bcce88   luigser   COMPONENTS
207
         */
a1a3bc73   Luigi Serra   graphs updates
208
209
210
        :host([mode=standard]) #mainContainer {
          @apply(--paper-header-panel-standard-container);
        }
73bcce88   luigser   COMPONENTS
211
  
a1a3bc73   Luigi Serra   graphs updates
212
213
214
215
216
217
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
246
247
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
280
281
282
283
284
285
286
287
288
        /*
         * mode: seamed
         */
        :host([mode=seamed]) #mainContainer {
          @apply(--paper-header-panel-seamed-container);
        }
  
  
        /*
         * mode: waterfall
         */
        :host([mode=waterfall]) #mainContainer {
          @apply(--paper-header-panel-waterfall-container);
        }
  
        /*
         * mode: waterfall-tall
         */
        :host([mode=waterfall-tall]) #mainContainer {
          @apply(--paper-header-panel-waterfall-tall-container);
        }
  
        #dropShadow {
          @apply(--paper-header-panel-shadow);
  
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 6px;
          pointer-events: none;
  
          -webkit-transition: opacity 0.5s;
          transition: opacity 0.5s;
  
          opacity: 0;
        }
  
        #dropShadow.has-shadow {
          opacity: 1;
        }
      </style>
  
      <content id="headerContent" select="paper-toolbar, .paper-header"></content>
  
      <div id="mainPanel">
        <div id="mainContainer" class$="[[_computeMainContainerClass(mode)]]">
          <content id="mainContent" select="*"></content>
        </div>
        <div id="dropShadow"></div>
      </div>
    </template>
  
    <script>
      (function() {
        'use strict';
  
        var SHADOW_WHEN_SCROLLING = 1;
        var SHADOW_ALWAYS = 2;
        var MODE_CONFIGS = {
          outerScroll: {
            'scroll': true
          },
  
          shadowMode: {
            'standard': SHADOW_ALWAYS,
            'waterfall': SHADOW_WHEN_SCROLLING,
            'waterfall-tall': SHADOW_WHEN_SCROLLING
          },
  
          tallMode: {
            'waterfall-tall': true
          }
        };
  
        Polymer({
          is: 'paper-header-panel',
73bcce88   luigser   COMPONENTS
289
290
  
          /**
a1a3bc73   Luigi Serra   graphs updates
291
292
293
           * Fired when the content has been scrolled.  `event.detail.target` returns
           * the scrollable element which you can use to access scroll info such as
           * `scrollTop`.
73bcce88   luigser   COMPONENTS
294
           *
a1a3bc73   Luigi Serra   graphs updates
295
296
297
           *     <paper-header-panel on-content-scroll="scrollHandler">
           *       ...
           *     </paper-header-panel>
73bcce88   luigser   COMPONENTS
298
           *
73bcce88   luigser   COMPONENTS
299
           *
a1a3bc73   Luigi Serra   graphs updates
300
301
302
303
           *     scrollHandler: function(event) {
           *       var scroller = event.detail.target;
           *       console.log(scroller.scrollTop);
           *     }
73bcce88   luigser   COMPONENTS
304
           *
a1a3bc73   Luigi Serra   graphs updates
305
           * @event content-scroll
73bcce88   luigser   COMPONENTS
306
           */
a1a3bc73   Luigi Serra   graphs updates
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
  
          properties: {
            /**
             * Controls header and scrolling behavior. Options are
             * `standard`, `seamed`, `waterfall`, `waterfall-tall`, `scroll` and
             * `cover`. Default is `standard`.
             *
             * `standard`: The header is a step above the panel. The header will consume the
             * panel at the point of entry, preventing it from passing through to the
             * opposite side.
             *
             * `seamed`: The header is presented as seamed with the panel.
             *
             * `waterfall`: Similar to standard mode, but header is initially presented as
             * seamed with panel, but then separates to form the step.
             *
             * `waterfall-tall`: The header is initially taller (`tall` class is added to
             * the header).  As the user scrolls, the header separates (forming an edge)
             * while condensing (`tall` class is removed from the header).
             *
             * `scroll`: The header keeps its seam with the panel, and is pushed off screen.
             *
             * `cover`: The panel covers the whole `paper-header-panel` including the
             * header. This allows user to style the panel in such a way that the panel is
             * partially covering the header.
             *
             *     <paper-header-panel mode="cover">
             *       <paper-toolbar class="tall">
             *         <paper-icon-button icon="menu"></paper-icon-button>
             *       </paper-toolbar>
             *       <div class="content"></div>
             *     </paper-header-panel>
             */
            mode: {
              type: String,
              value: 'standard',
              observer: '_modeChanged',
              reflectToAttribute: true
            },
  
            /**
             * If true, the drop-shadow is always shown no matter what mode is set to.
             */
            shadow: {
              type: Boolean,
              value: false
            },
  
            /**
             * The class used in waterfall-tall mode.  Change this if the header
             * accepts a different class for toggling height, e.g. "medium-tall"
             */
            tallClass: {
              type: String,
              value: 'tall'
            },
  
            /**
             * If true, the scroller is at the top
             */
            atTop: {
              type: Boolean,
              value: true,
              readOnly: true
            }
          },
  
          observers: [
            '_computeDropShadowHidden(atTop, mode, shadow)'
          ],
  
          ready: function() {
            this.scrollHandler = this._scroll.bind(this);
          },
  
          attached: function() {
            this._addListener();
            // Run `scroll` logic once to initialize class names, etc.
            this._keepScrollingState();
          },
  
          detached: function() {
            this._removeListener();
73bcce88   luigser   COMPONENTS
390
391
392
          },
  
          /**
a1a3bc73   Luigi Serra   graphs updates
393
394
395
396
           * Returns the header element
           *
           * @property header
           * @type Object
73bcce88   luigser   COMPONENTS
397
           */
a1a3bc73   Luigi Serra   graphs updates
398
399
          get header() {
            return Polymer.dom(this.$.headerContent).getDistributedNodes()[0];
73bcce88   luigser   COMPONENTS
400
401
402
          },
  
          /**
a1a3bc73   Luigi Serra   graphs updates
403
404
405
406
           * Returns the scrollable element.
           *
           * @property scroller
           * @type Object
73bcce88   luigser   COMPONENTS
407
           */
a1a3bc73   Luigi Serra   graphs updates
408
409
          get scroller() {
            return this._getScrollerForMode(this.mode);
73bcce88   luigser   COMPONENTS
410
411
412
          },
  
          /**
a1a3bc73   Luigi Serra   graphs updates
413
414
415
416
           * Returns true if the scroller has a visible shadow.
           *
           * @property visibleShadow
           * @type Boolean
73bcce88   luigser   COMPONENTS
417
           */
a1a3bc73   Luigi Serra   graphs updates
418
419
420
          get visibleShadow() {
            return this.$.dropShadow.classList.contains('has-shadow');
          },
73bcce88   luigser   COMPONENTS
421
  
a1a3bc73   Luigi Serra   graphs updates
422
423
          _computeDropShadowHidden: function(atTop, mode, shadow) {
            var shadowMode = MODE_CONFIGS.shadowMode[mode];
73bcce88   luigser   COMPONENTS
424
  
a1a3bc73   Luigi Serra   graphs updates
425
426
427
428
429
430
431
432
433
434
            if (this.shadow) {
              this.toggleClass('has-shadow', true, this.$.dropShadow);
            } else if (shadowMode === SHADOW_ALWAYS) {
              this.toggleClass('has-shadow', true, this.$.dropShadow);
            } else if (shadowMode === SHADOW_WHEN_SCROLLING && !atTop) {
              this.toggleClass('has-shadow', true, this.$.dropShadow);
            } else {
              this.toggleClass('has-shadow', false, this.$.dropShadow);
            }
          },
73bcce88   luigser   COMPONENTS
435
  
a1a3bc73   Luigi Serra   graphs updates
436
437
438
          _computeMainContainerClass: function(mode) {
            // TODO:  It will be useful to have a utility for classes
            // e.g. Polymer.Utils.classes({ foo: true });
73bcce88   luigser   COMPONENTS
439
  
a1a3bc73   Luigi Serra   graphs updates
440
            var classes = {};
73bcce88   luigser   COMPONENTS
441
  
a1a3bc73   Luigi Serra   graphs updates
442
            classes['flex'] = mode !== 'cover';
73bcce88   luigser   COMPONENTS
443
  
a1a3bc73   Luigi Serra   graphs updates
444
445
446
447
448
            return Object.keys(classes).filter(
              function(className) {
                return classes[className];
              }).join(' ');
          },
73bcce88   luigser   COMPONENTS
449
  
a1a3bc73   Luigi Serra   graphs updates
450
451
452
          _addListener: function() {
            this.scroller.addEventListener('scroll', this.scrollHandler, false);
          },
73bcce88   luigser   COMPONENTS
453
  
a1a3bc73   Luigi Serra   graphs updates
454
455
456
          _removeListener: function() {
            this.scroller.removeEventListener('scroll', this.scrollHandler);
          },
73bcce88   luigser   COMPONENTS
457
  
a1a3bc73   Luigi Serra   graphs updates
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
          _modeChanged: function(newMode, oldMode) {
            var configs = MODE_CONFIGS;
            var header = this.header;
            var animateDuration = 200;
  
            if (header) {
              // in tallMode it may add tallClass to the header; so do the cleanup
              // when mode is changed from tallMode to not tallMode
              if (configs.tallMode[oldMode] && !configs.tallMode[newMode]) {
                header.classList.remove(this.tallClass);
                this.async(function() {
                  header.classList.remove('animate');
                }, animateDuration);
              } else {
                header.classList.toggle('animate', configs.tallMode[newMode]);
              }
            }
            this._keepScrollingState();
          },
73bcce88   luigser   COMPONENTS
477
  
a1a3bc73   Luigi Serra   graphs updates
478
479
480
          _keepScrollingState: function() {
            var main = this.scroller;
            var header = this.header;
73bcce88   luigser   COMPONENTS
481
  
a1a3bc73   Luigi Serra   graphs updates
482
            this._setAtTop(main.scrollTop === 0);
73bcce88   luigser   COMPONENTS
483
  
a1a3bc73   Luigi Serra   graphs updates
484
485
486
487
            if (header && this.tallClass && MODE_CONFIGS.tallMode[this.mode]) {
              this.toggleClass(this.tallClass, this.atTop ||
                  header.classList.contains(this.tallClass) &&
                  main.scrollHeight < this.offsetHeight, header);
73bcce88   luigser   COMPONENTS
488
            }
a1a3bc73   Luigi Serra   graphs updates
489
          },
73bcce88   luigser   COMPONENTS
490
  
a1a3bc73   Luigi Serra   graphs updates
491
492
493
494
          _scroll: function() {
            this._keepScrollingState();
            this.fire('content-scroll', {target: this.scroller}, {bubbles: false});
          },
73bcce88   luigser   COMPONENTS
495
  
a1a3bc73   Luigi Serra   graphs updates
496
497
498
          _getScrollerForMode: function(mode) {
            return MODE_CONFIGS.outerScroll[mode] ?
                this : this.$.mainContainer;
73bcce88   luigser   COMPONENTS
499
          }
a1a3bc73   Luigi Serra   graphs updates
500
501
502
503
        });
      })();
    </script>
  </dom-module>