-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfa-icon.js
More file actions
68 lines (66 loc) · 1.45 KB
/
Copy pathfa-icon.js
File metadata and controls
68 lines (66 loc) · 1.45 KB
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
import { LitElement, html, css } from 'lit-element';
class FaIcon extends LitElement {
static get properties() {
return {
color: String,
iClass: { attribute: 'class' },
src: String,
style: String,
size: Number
};
}
static get styles() {
return css`
:host {
display: inline-block;
padding: 0;
margin: 0;
}
`;
}
getSources(className) {
const PREFIX_TO_STYLE = {
fas: 'solid',
far: 'regular',
fal: 'light',
fab: 'brands',
fa: 'solid'
};
const getPrefix = iClass => {
let data = iClass.split(' ');
return [PREFIX_TO_STYLE[data[0]], normalizeIconName(data[1])];
};
const normalizeIconName = name => {
let icon = name.replace('fa-', '');
return icon;
};
let data = getPrefix(className);
return `node_modules/@fortawesome/fontawesome-free/sprites/${data[0]}.svg#${
data[1]
}`;
}
constructor() {
super();
this.iClass = '';
this.src = '';
this.style = '';
this.size = 19;
this.color = '#000';
}
firstUpdated() {
this.src = this.getSources(this.iClass);
}
render() {
return html`
<div class="fa-icon">
<svg
style=" width:${this.size}; height: ${this.size}; fill: ${this
.color}; ${this.style}"
>
<use href="${this.src}"></use>
</svg>
</div>
`;
}
}
customElements.define('fa-icon', FaIcon);