open-vault/ui/app/components/i-con.js

61 lines
1.4 KiB
JavaScript
Raw Normal View History

import { camelize } from '@ember/string';
import Component from '@ember/component';
import { computed } from '@ember/object';
2018-04-03 14:16:57 +00:00
import hbs from 'htmlbars-inline-precompile';
const GLYPHS_WITH_SVG_TAG = [
2018-08-28 05:03:55 +00:00
'learn',
'video',
'tour',
'stopwatch',
'download',
2018-04-03 14:16:57 +00:00
'folder',
'file',
'hidden',
2018-04-03 14:16:57 +00:00
'perf-replication',
'role',
'visible',
2018-04-03 14:16:57 +00:00
'information-reversed',
'true',
'false',
'upload',
'control-lock',
2018-08-15 19:41:43 +00:00
'edition-enterprise',
2018-08-28 05:03:55 +00:00
'edition-oss',
2018-04-03 14:16:57 +00:00
];
export default Component.extend({
2018-04-03 14:16:57 +00:00
layout: hbs`
{{#if excludeSVG}}
{{partial partialName}}
{{else}}
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="{{size}}" height="{{size}}" viewBox="0 0 512 512">
{{partial partialName}}
</svg>
{{/if}}
`,
tagName: 'span',
excludeIconClass: false,
classNameBindings: ['excludeIconClass::icon'],
classNames: ['has-current-color-fill'],
attributeBindings: ['aria-label', 'aria-hidden'],
glyph: null,
excludeSVG: computed('glyph', function() {
2018-08-28 05:03:55 +00:00
let glyph = this.get('glyph');
return glyph.startsWith('enable/') || GLYPHS_WITH_SVG_TAG.includes(glyph);
2018-04-03 14:16:57 +00:00
}),
2018-08-28 05:03:55 +00:00
size: computed('glyph', function() {
return this.get('glyph').startsWith('enable/') ? 48 : 12;
2018-04-03 14:16:57 +00:00
}),
partialName: computed('glyph', function() {
const glyph = this.get('glyph');
return `svg/icons/${camelize(glyph)}`;
2018-04-03 14:16:57 +00:00
}),
});