-
Notifications
You must be signed in to change notification settings - Fork 6
/
fa-icon.js
77 lines (75 loc) · 1.78 KB
/
fa-icon.js
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
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: String,
pathPrefix: { attribute: "path-prefix" }
};
}
static get styles() {
return css`
:host {
display: inline-block;
padding: 0;
margin: 0;
}
:host svg {
fill: var(--fa-icon-fill-color, currentcolor);
width: var(--fa-icon-width, 19px);
height: var(--fa-icon-height, 19px);
}
`;
}
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 `${this.pathPrefix}/@fortawesome/fontawesome-free/sprites/${data[0]}.svg#${data[1]}`;
}
constructor() {
super();
this.iClass = "";
this.src = "";
this.style = "";
this.size = "";
this.color = "";
this.pathPrefix = "node_modules";
}
_parseStyles() {
return `
${this.size ? `width: ${this.size};` : ''}
${this.size ? `height: ${this.size};` : ''}
${this.color ? `fill: ${this.color};` : ''}
${this.style}
`;
}
render() {
this.src = this.getSources(this.iClass);
return html`
<svg
.style="${this._parseStyles()}">
<use
href="${this.src}">
</use>
</svg>
`;
}
}
customElements.define("fa-icon", FaIcon);