Blame view

bower_components/iron-iconset/iron-iconset.html 9.83 KB
e619a3b0   Luigi Serra   Controllet cross ...
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
55
56
57
58
59
60
61
  <!--
  @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">
  <link rel="import" href="../iron-meta/iron-meta.html">
  
  <!--
  The `iron-iconset` element allows users to define their own icon sets.
  The `src` property specifies the url of the icon image. Multiple icons may
  be included in this image and they may be organized into rows.
  The `icons` property is a space separated list of names corresponding to the
  icons. The names must be ordered as the icons are ordered in the icon image.
  Icons are expected to be square and are the size specified by the `size`
  property. The `width` property corresponds to the width of the icon image
  and must be specified if icons are arranged into multiple rows in the image.
  
  All `iron-iconset` elements are available for use by other `iron-iconset`
  elements via a database keyed by id. Typically, an element author that wants
  to support a set of custom icons uses a `iron-iconset` to retrieve
  and use another, user-defined iconset.
  
  Example:
  
      <iron-iconset id="my-icons" src="my-icons.png" width="96" size="24"
          icons="location place starta stopb bus car train walk">
      </iron-iconset>
  
  This will automatically register the icon set "my-icons" to the iconset
  database.  To use these icons from within another element, make a
  `iron-iconset` element and call the `byId` method to retrieve a
  given iconset. To apply a particular icon to an element, use the
  `applyIcon` method. For example:
  
      iconset.applyIcon(iconNode, 'car');
  
  Themed icon sets are also supported. The `iron-iconset` can contain child
  `property` elements that specify a theme with an offsetX and offsetY of the
  theme within the icon resource. For example.
  
      <iron-iconset id="my-icons" src="my-icons.png" width="96" size="24"
          icons="location place starta stopb bus car train walk">
        <property theme="special" offsetX="256" offsetY="24"></property>
      </iron-iconset>
  
  Then a themed icon can be applied like this:
  
      iconset.applyIcon(iconNode, 'car', 'special');
  
  @element iron-iconset
  @demo demo/index.html
  -->
  
  <script>
  
eb240478   Luigi Serra   public room cards...
62
63
64
    /**
     * @implements {Polymer.Iconset}
     */
e619a3b0   Luigi Serra   Controllet cross ...
65
66
67
68
69
70
71
72
    Polymer({
  
      is: 'iron-iconset',
  
      properties: {
  
        /**
         * The URL of the iconset image.
e619a3b0   Luigi Serra   Controllet cross ...
73
74
75
76
77
78
79
80
         */
        src: {
          type: String,
          observer: '_srcChanged'
        },
  
        /**
         * The name of the iconset.
e619a3b0   Luigi Serra   Controllet cross ...
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
         */
        name: {
          type: String,
          observer: '_nameChanged'
        },
  
        /**
         * The width of the iconset image. This must only be specified if the
         * icons are arranged into separate rows inside the image.
         *
         * @attribute width
         * @type number
         * @default 0
         */
        width: {
          type: Number,
          value: 0
        },
  
        /**
         * A space separated list of names corresponding to icons in the iconset
         * image file. This list must be ordered the same as the icon images
         * in the image file.
e619a3b0   Luigi Serra   Controllet cross ...
104
105
106
107
108
109
110
         */
        icons: {
          type: String
        },
  
        /**
         * The size of an individual icon. Note that icons must be square.
e619a3b0   Luigi Serra   Controllet cross ...
111
112
113
114
115
116
117
118
119
120
         */
        size: {
          type: Number,
          value: 24
        },
  
        /**
         * The horizontal offset of the icon images in the inconset src image.
         * This is typically used if the image resource contains additional images
         * beside those intended for the iconset.
e619a3b0   Luigi Serra   Controllet cross ...
121
122
123
124
125
126
127
128
129
130
         */
        _offsetX: {
          type: Number,
          value: 0
        },
  
        /**
         * The vertical offset of the icon images in the inconset src image.
         * This is typically used if the image resource contains additional images
         * beside those intended for the iconset.
e619a3b0   Luigi Serra   Controllet cross ...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
         */
        _offsetY: {
          type: Number,
          value: 0
        },
  
        /**
         * Array of fully-qualified names of icons in this set.
         */
        iconNames: {
          type: Array,
          notify: true
        }
  
      },
  
      hostAttributes: {
        // non-visual
        style: 'display: none;'
      },
  
      ready: function() {
        // theme data must exist at ready-time
        this._themes = this._mapThemes();
      },
  
      /**
       * Applies an icon to the given element as a css background image. This
       * method does not size the element, and it's usually necessary to set
       * the element's height and width so that the background image is visible.
       *
e619a3b0   Luigi Serra   Controllet cross ...
162
       * @param {Element} element The element to which the icon is applied.
eb240478   Luigi Serra   public room cards...
163
164
165
       * @param {string|number} icon The name or index of the icon to apply.
       * @param {string=} theme (optional) The name or index of the icon to apply.
       * @param {number=} scale (optional, defaults to 1) Icon scaling factor.
e619a3b0   Luigi Serra   Controllet cross ...
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
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
       */
      applyIcon: function(element, icon, theme, scale) {
        this._validateIconMap();
        var offset = this._getThemedOffset(icon, theme);
        if (element && offset) {
          this._addIconStyles(element, this._srcUrl, offset, scale || 1,
            this.size, this.width);
        }
      },
  
      /**
       * Remove an icon from the given element by undoing the changes effected
       * by `applyIcon`.
       *
       * @param {Element} element The element from which the icon is removed.
       */
      removeIcon: function(element) {
        this._removeIconStyles(element.style);
      },
  
      _mapThemes: function() {
        var themes = Object.create(null);
        Polymer.dom(this).querySelectorAll('property[theme]')
          .forEach(function(property) {
            var offsetX = window.parseInt(
              property.getAttribute('offset-x'), 10
            ) || 0;
            var offsetY = window.parseInt(
              property.getAttribute('offset-y'), 10
            ) || 0;
            themes[property.getAttribute('theme')] = {
              offsetX: offsetX,
              offsetY: offsetY
            };
          });
        return themes;
      },
  
      _srcChanged: function(src) {
        // ensure `srcUrl` is always relative to the main document
        this._srcUrl = this.ownerDocument !== document
          ? this.resolveUrl(src) : src;
        this._prepareIconset();
      },
  
      _nameChanged: function(name) {
        this._prepareIconset();
      },
  
      _prepareIconset: function() {
        new Polymer.IronMeta({type: 'iconset', key: this.name, value: this});
        this.async(function() {
          this.fire('iron-iconset-added', this, {node: window});
        });
      },
  
      _invalidateIconMap: function() {
        this._iconMapValid = false;
      },
  
      _validateIconMap: function() {
        if (!this._iconMapValid) {
          this._recomputeIconMap();
          this._iconMapValid = true;
        }
      },
  
      _recomputeIconMap: function() {
        this.iconNames = this._computeIconNames(this.icons);
        this.iconMap = this._computeIconMap(this._offsetX, this._offsetY,
          this.size, this.width, this.iconNames);
      },
  
      _computeIconNames: function(icons) {
        return icons.split(/\s+/g);
      },
  
      _computeIconMap: function(offsetX, offsetY, size, width, iconNames) {
        var iconMap = {};
        if (offsetX !== undefined && offsetY !== undefined) {
          var x0 = offsetX;
          iconNames.forEach(function(iconName) {
            iconMap[iconName] = {
              offsetX: offsetX,
              offsetY: offsetY
            };
            if ((offsetX + size) < width) {
              offsetX += size;
            } else {
              offsetX = x0;
              offsetY += size;
            }
          }, this);
        }
        return iconMap;
      },
  
      /**
       * Returns an object containing `offsetX` and `offsetY` properties which
       * specify the pixel location in the iconset's src file for the given
       * `icon` and `theme`. It's uncommon to call this method. It is useful,
       * for example, to manually position a css backgroundImage to the proper
       * offset. It's more common to use the `applyIcon` method.
       *
eb240478   Luigi Serra   public room cards...
270
       * @param {string|number} identifier The name of the icon or the index of
e619a3b0   Luigi Serra   Controllet cross ...
271
       * the icon within in the icon image.
eb240478   Luigi Serra   public room cards...
272
273
274
275
276
       * @param {string=} theme The name of the theme.
       * @returns {?{offsetX: number, offsetY: number}} An object specifying the
       *     offset of the given icon within the icon resource file; `offsetX` is
       *     the horizontal offset and `offsetY` is the vertical offset. Both
       *     values are in pixel units.
e619a3b0   Luigi Serra   Controllet cross ...
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
       */
      _getThemedOffset: function(identifier, theme) {
        var iconOffset = this._getIconOffset(identifier);
        var themeOffset = this._themes[theme];
        if (iconOffset && themeOffset) {
          return {
            offsetX: iconOffset.offsetX + themeOffset.offsetX,
            offsetY: iconOffset.offsetY + themeOffset.offsetY
          };
        }
        return iconOffset;
      },
  
      _getIconOffset: function(identifier) {
        // TODO(sjmiles): consider creating offsetArray (indexed by Number)
        // and having iconMap map names to indices, then and index is just
        // iconMap[identifier] || identifier (be careful of zero, store indices
        // as 1-based)
        return this.iconMap[identifier] ||
               this.iconMap[this.iconNames[Number(identifier)]];
      },
  
      _addIconStyles: function(element, url, offset, scale, size, width) {
        var style = element.style;
        style.backgroundImage = 'url(' + url + ')';
        style.backgroundPosition =
          (-offset.offsetX * scale + 'px') + ' ' +
          (-offset.offsetY * scale + 'px');
        style.backgroundSize = (scale === 1) ? 'auto' : width * scale + 'px';
        style.width = size + 'px';
        style.height = size + 'px';
        element.setAttribute('role', 'img');
      },
  
      _removeIconStyles: function(style) {
        style.background = '';
      }
  
    });
  
  </script>