forked from appuniversum/ember-appuniversum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathau-icon.gts
69 lines (61 loc) · 1.84 KB
/
au-icon.gts
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
import { getOwner } from '@ember/owner';
import Component from '@glimmer/component';
import { type ComponentLike } from '@glint/template';
export interface AuIconSignature {
Args: {
alignment?: 'left' | 'right';
// TODO: We should deprecate the non-boolean versions since there is no reason to support them
ariaHidden?: boolean | 'true' | 'false';
icon: string | ComponentLike<{ Element: Element }>;
size?: 'large';
};
Element: Element;
}
export default class AuIcon extends Component<AuIconSignature> {
get iconPrefix() {
const config = getOwner(this)?.factoryFor('config:environment')
?.class as unknown as { rootURL?: string };
return config.rootURL || '/';
}
get size() {
if (this.args.size == 'large') return 'au-c-icon--large';
else return '';
}
get alignment() {
if (this.args.alignment == 'left') return 'au-c-icon--left';
if (this.args.alignment == 'right') return 'au-c-icon--right';
else return '';
}
get ariaHidden() {
if (this.args.ariaHidden === false || this.args.ariaHidden === 'false') {
return 'false';
} else {
return 'true';
}
}
get iconComponent() {
return typeof this.args.icon !== 'string' && this.args.icon;
}
<template>
{{#if this.iconComponent}}
{{#let this.iconComponent as |Icon|}}
<Icon
class="au-c-icon {{this.alignment}} {{this.size}}"
aria-hidden={{this.ariaHidden}}
...attributes
/>
{{/let}}
{{else}}
<svg
role="img"
class="au-c-icon au-c-icon--{{@icon}} {{this.alignment}} {{this.size}}"
aria-hidden={{this.ariaHidden}}
...attributes
>
<use
xlink:href="{{this.iconPrefix}}@appuniversum/ember-appuniversum/appuniversum-symbolset.svg#{{@icon}}"
></use>
</svg>
{{/if}}
</template>
}