Blame view

bower_components/iron-collapse/iron-collapse.html 4.81 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <!--
  @license
  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">
  
  <!--
  `iron-collapse` creates a collapsible block of content.  By default, the content
  will be collapsed.  Use `opened` or `toggle()` to show/hide the content.
  
e619a3b0   Luigi Serra   Controllet cross ...
17
      <button on-click="toggle">toggle collapse</button>
73bcce88   luigser   COMPONENTS
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
  
      <iron-collapse id="collapse">
        <div>Content goes here...</div>
      </iron-collapse>
  
      ...
  
      toggle: function() {
        this.$.collapse.toggle();
      }
  
  `iron-collapse` adjusts the height/width of the collapsible element to show/hide
  the content.  So avoid putting padding/margin/border on the collapsible directly,
  and instead put a div inside and style that.
  
      <style>
        .collapse-content {
          padding: 15px;
          border: 1px solid #dedede;
        }
      </style>
  
      <iron-collapse>
        <div class="collapse-content">
          <div>Content goes here...</div>
        </div>
      </iron-collapse>
  
  @group Iron Elements
  @hero hero.svg
  @demo demo/index.html
  @element iron-collapse
  -->
  
  <dom-module id="iron-collapse">
  
    <style>
  
      :host {
        display: block;
        transition-duration: 300ms;
73bcce88   luigser   COMPONENTS
59
60
61
62
63
64
      }
  
      :host(.iron-collapse-closed) {
        display: none;
      }
  
c5169e0e   Renato De Donato   a new hope
65
66
67
68
      :host(:not(.iron-collapse-opened)) {
        overflow: hidden;
      }
  
73bcce88   luigser   COMPONENTS
69
70
71
72
73
74
75
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
    </style>
  
    <template>
  
      <content></content>
  
    </template>
  
  </dom-module>
  
  <script>
  
    Polymer({
  
      is: 'iron-collapse',
  
      properties: {
  
        /**
         * If true, the orientation is horizontal; otherwise is vertical.
         *
         * @attribute horizontal
         */
        horizontal: {
          type: Boolean,
          value: false,
          observer: '_horizontalChanged'
        },
  
        /**
         * Set opened to true to show the collapse element and to false to hide it.
         *
         * @attribute opened
         */
        opened: {
          type: Boolean,
          value: false,
          notify: true,
          observer: '_openedChanged'
c5169e0e   Renato De Donato   a new hope
108
        }
73bcce88   luigser   COMPONENTS
109
110
111
112
113
  
      },
  
      hostAttributes: {
        role: 'group',
73bcce88   luigser   COMPONENTS
114
115
116
117
118
119
120
        'aria-expanded': 'false'
      },
  
      listeners: {
        transitionend: '_transitionEnd'
      },
  
c5169e0e   Renato De Donato   a new hope
121
122
123
124
      ready: function() {
        // Avoid transition at the beginning e.g. page loads and enable
        // transitions only after the element is rendered and ready.
        this._enableTransition = true;
73bcce88   luigser   COMPONENTS
125
126
127
128
129
130
131
132
133
134
135
136
      },
  
      /**
       * Toggle the opened state.
       *
       * @method toggle
       */
      toggle: function() {
        this.opened = !this.opened;
      },
  
      show: function() {
c5169e0e   Renato De Donato   a new hope
137
        this.opened = true;    
73bcce88   luigser   COMPONENTS
138
139
140
      },
  
      hide: function() {
c5169e0e   Renato De Donato   a new hope
141
        this.opened = false;    
73bcce88   luigser   COMPONENTS
142
143
144
      },
  
      updateSize: function(size, animated) {
c5169e0e   Renato De Donato   a new hope
145
146
147
148
149
150
        this.enableTransition(animated);
        var s = this.style;
        var nochange = s[this.dimension] === size;
        s[this.dimension] = size;
        if (animated && nochange) {
          this._transitionEnd();
73bcce88   luigser   COMPONENTS
151
        }
73bcce88   luigser   COMPONENTS
152
153
      },
  
73bcce88   luigser   COMPONENTS
154
      enableTransition: function(enabled) {
c5169e0e   Renato De Donato   a new hope
155
        this.style.transitionDuration = (enabled && this._enableTransition) ? '' : '0s';
73bcce88   luigser   COMPONENTS
156
157
158
159
160
161
162
163
      },
  
      _horizontalChanged: function() {
        this.dimension = this.horizontal ? 'width' : 'height';
        this.style.transitionProperty = this.dimension;
      },
  
      _openedChanged: function() {
e619a3b0   Luigi Serra   Controllet cross ...
164
        if (this.opened) {
c5169e0e   Renato De Donato   a new hope
165
166
167
168
169
170
171
172
173
174
175
          this.setAttribute('aria-expanded', 'true');
          this.setAttribute('aria-hidden', 'false');
  
          this.toggleClass('iron-collapse-closed', false);
          this.updateSize('auto', false);
          var s = this._calcSize();
          this.updateSize('0px', false);
          // force layout to ensure transition will go
          /** @suppress {suspiciousCode} */ this.offsetHeight;
          this.updateSize(s, true);
          // focus the current collapse
eb240478   Luigi Serra   public room cards...
176
          this.focus();
c5169e0e   Renato De Donato   a new hope
177
178
179
180
181
182
183
184
185
        } else {
          this.setAttribute('aria-expanded', 'false');
          this.setAttribute('aria-hidden', 'true');
  
          this.toggleClass('iron-collapse-opened', false);
          this.updateSize(this._calcSize(), false);
          // force layout to ensure transition will go
          /** @suppress {suspiciousCode} */ this.offsetHeight;
          this.updateSize('0px', true);
e619a3b0   Luigi Serra   Controllet cross ...
186
        }
73bcce88   luigser   COMPONENTS
187
188
189
190
      },
  
      _transitionEnd: function() {
        if (this.opened) {
c5169e0e   Renato De Donato   a new hope
191
          this.updateSize('auto', false);
73bcce88   luigser   COMPONENTS
192
193
194
        }
        this.toggleClass('iron-collapse-closed', !this.opened);
        this.toggleClass('iron-collapse-opened', this.opened);
c5169e0e   Renato De Donato   a new hope
195
        this.enableTransition(false);
73bcce88   luigser   COMPONENTS
196
197
198
199
      },
  
      _calcSize: function() {
        return this.getBoundingClientRect()[this.dimension] + 'px';
c5169e0e   Renato De Donato   a new hope
200
201
      },
  
73bcce88   luigser   COMPONENTS
202
203
204
205
  
    });
  
  </script>