@gitlab/ui
Version:
GitLab UI Components
102 lines (83 loc) • 2.51 kB
JavaScript
import iconsPath from '@gitlab/svgs/dist/icons.svg';
import { iconSizeOptions } from '../../../utils/constants';
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
var iconValidator = function iconValidator() {
return true;
};
/*
During development/tests we want to validate that we are just using icons that are actually defined
*/
if (process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line global-require
var data = require('@gitlab/svgs/dist/icons.json');
var icons = data.icons;
iconValidator = function iconValidator(value) {
if (icons.includes(value)) {
return true;
} // eslint-disable-next-line no-console
console.warn("Icon '".concat(value, "' is not a known icon of @gitlab/svgs"));
return false;
};
}
/** This is a re-usable vue component for rendering a svg sprite icon
* @example
* <icon
* name="retry"
* :size="32"
* class="top"
* />
*/
var script = {
props: {
name: {
type: String,
required: true,
validator: iconValidator
},
size: {
type: Number,
required: false,
default: 16,
validator: function validator(value) {
return iconSizeOptions.includes(value);
}
}
},
computed: {
spriteHref: function spriteHref() {
return "".concat(iconsPath, "#").concat(this.name);
},
iconSizeClass: function iconSizeClass() {
return this.size ? "s".concat(this.size) : '';
}
}
};
/* script */
const __vue_script__ = script;
/* template */
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',_vm._g({class:['gl-icon', _vm.iconSizeClass]},_vm.$listeners),[_c('use',{attrs:{"href":_vm.spriteHref}})])};
var __vue_staticRenderFns__ = [];
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = undefined;
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */
const __vue_is_functional_template__ = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
const __vue_component__ = __vue_normalize__(
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
__vue_inject_styles__,
__vue_script__,
__vue_scope_id__,
__vue_is_functional_template__,
__vue_module_identifier__,
false,
undefined,
undefined,
undefined
);
export default __vue_component__;