forked from BrightspaceUI/icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd2l-icon.html
135 lines (123 loc) · 3.82 KB
/
d2l-icon.html
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
62
63
64
65
66
67
68
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
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
<!--
d2l-icon is effectively a copy of iron-icon with some modification to handle focusable
attribute for IE, and styles to apply default color and dimensions. The following
license is included for attribution. Integration with iron-iconset-svg is exactly the same
with the exclusion of the theme.
@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">
<link rel="import" href="../d2l-colors/d2l-colors.html">
<dom-module id="d2l-icon">
<template strip-whitespace>
<style>
:host {
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
color: var(--d2l-color-ferrite);
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
fill: var(--d2l-icon-fill-color, currentcolor);
height: var(--d2l-icon-height, 18px);
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
stroke: var(--d2l-icon-stroke-color, none);
vertical-align: middle;
width: var(--d2l-icon-width, 18px);
}
:host([icon*="d2l-tier2:"]) {
height: var(--d2l-icon-height, 24px);
width: var(--d2l-icon-width, 24px);
}
:host([icon*="d2l-tier3:"]) {
height: var(--d2l-icon-height, 30px);
width: var(--d2l-icon-width, 30px);
}
</style>
</template>
<script>
Polymer({
is: 'd2l-icon',
properties: {
icon: {
type: String,
reflectToAttribute: true
},
src: String,
theme: String,
_meta: {
value: Polymer.Base.create('iron-meta', {type: 'iconset'})
}
},
observers: [
'_updateIcon(_meta, isAttached)',
'_updateIcon(theme, isAttached)',
'_srcChanged(src, isAttached)',
'_iconChanged(icon, isAttached)'
],
_DEFAULT_ICONSET: 'icons',
_iconChanged: function(icon) {
var parts = (icon || '').split(':');
this._iconName = parts.pop();
this._iconsetName = parts.pop() || this._DEFAULT_ICONSET;
this._updateIcon();
},
_initSvg: function(svg) {
if (!svg) {
return false;
}
/* IE prevent svg from being focusable */
svg.setAttribute('focusable', 'false');
},
_srcChanged: function() {
this._updateIcon();
},
_updateIcon: function() {
if (this._usesIconset()) {
if (this._img && this._img.parentNode) {
Polymer.dom(this.root).removeChild(this._img);
}
if (this._iconName === '') {
if (this._iconset) {
this._iconset.removeIcon(this);
}
} else if (this._iconsetName && this._meta) {
this._iconset = /** @type {?Polymer.Iconset} */ (
this._meta.byKey(this._iconsetName));
if (this._iconset) {
var svg = this._iconset.applyIcon(this, this._iconName, this.theme);
this.unlisten(window, 'iron-iconset-added', '_updateIcon');
this._initSvg(svg);
} else {
this.listen(window, 'iron-iconset-added', '_updateIcon');
}
}
} else {
if (this._iconset) {
this._iconset.removeIcon(this);
}
if (!this._img) {
this._img = document.createElement('img');
this._img.style.width = '100%';
this._img.style.height = '100%';
this._img.draggable = false;
}
this._img.src = this.src;
Polymer.dom(this.root).appendChild(this._img);
}
},
_usesIconset: function() {
return this.icon || !this.src;
}
});
</script>
</dom-module>