2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
12 * @group Polymer Core Elements
14 * The `core-iconset-svg` element allows users to define their own icon sets
15 * that contain svg icons. The svg icon elements should be children of the
16 * `core-iconset-svg` element. Multiple icons should be given distinct id's.
18 * Using svg elements to create icons has a few advantages over traditional
19 * bitmap graphics like jpg or png. Icons that use svg are vector based so they
20 * are resolution independent and should look good on any device. They are
21 * stylable via css. Icons can be themed, colorized, and even animated.
25 * <core-iconset-svg id="my-svg-icons" iconSize="24">
29 * <rect x="50" y="50" width="50" height="50" />
30 * <circle cx="50" cy="50" r="50" />
36 * This will automatically register the icon set "my-svg-icons" to the iconset
37 * database. To use these icons from within another element, make a
38 * `core-iconset` element and call the `byId` method
39 * to retrieve a given iconset. To apply a particular icon inside an
40 * element use the `applyIcon` method. For example:
42 * iconset.applyIcon(iconNode, 'car');
44 * @element core-iconset-svg
50 <link rel=
"import" href=
"../core-iconset/core-iconset.html">
52 <polymer-element name=
"core-iconset-svg" extends=
"core-meta" attributes=
"iconSize">
56 Polymer('core-iconset-svg', {
60 * The size of an individual icon. Note that icons must be square.
78 iconById: function(id
) {
79 return this._icons
[id
] || (this._icons
[id
] = this.querySelector('[id="' + id
+'"]'));
82 cloneIcon: function(id
) {
83 var icon
= this.iconById(id
);
85 var content
= icon
.cloneNode(true);
86 content
.removeAttribute('id');
87 var svg
= document
.createElementNS('http://www.w3.org/2000/svg', 'svg');
88 svg
.setAttribute('viewBox', '0 0 ' + this.iconSize
+ ' ' +
90 // NOTE(dfreedm): work around https://crbug.com/370136
91 svg
.style
.pointerEvents
= 'none';
92 svg
.appendChild(content
);
98 if (!this._iconNames
) {
99 this._iconNames
= this.findIconNames();
101 return this._iconNames
;
104 findIconNames: function() {
105 var icons
= this.querySelectorAll('[id]').array();
107 return icons
.map(function(n
){ return n
.id
});
112 * Applies an icon to the given element. The svg icon is added to the
113 * element's shadowRoot if one exists or directly to itself.
116 * @param {Element} element The element to which the icon is
118 * @param {String|Number} icon The name the icon to apply.
119 * @return {Element} The icon element
121 applyIcon: function(element
, icon
) {
124 var old
= root
.querySelector('svg');
129 var svg
= this.cloneIcon(icon
);
133 svg
.setAttribute('height', '100%');
134 svg
.setAttribute('width', '100%');
135 svg
.setAttribute('preserveAspectRatio', 'xMidYMid meet');
136 svg
.style
.display
= 'block';
137 root
.insertBefore(svg
, root
.firstElementChild
);
142 * Tell users of the iconset, that the set has loaded.
143 * This finds all elements matching the selector argument and calls
144 * the method argument on them.
145 * @method updateIcons
146 * @param selector {string} css selector to identify iconset users,
147 * defaults to '[icon]'
148 * @param method {string} method to call on found elements,
149 * defaults to 'updateIcon'
151 updateIcons: function(selector
, method
) {
152 selector
= selector
|| '[icon]';
153 method
= method
|| 'updateIcon';
154 var deep
= window
.ShadowDOMPolyfill
? '' : 'html /deep/ ';
155 var i
$ = document
.querySelectorAll(deep
+ selector
);
156 for (var i
=0, e
; e
=i
$[i
]; i
++) {