@gitlab/ui
Version:
GitLab UI Components
138 lines (127 loc) • 4.61 kB
JavaScript
import { labelColorOptions } from '../../../utils/constants';
import { colorFromBackground } from '../../../utils/utils';
import GlIcon from '../icon/icon';
import GlLink from '../link/link';
import GlTooltip from '../tooltip/tooltip';
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
var script = {
components: {
GlLink: GlLink,
GlTooltip: GlTooltip,
GlIcon: GlIcon
},
props: {
backgroundColor: {
type: String,
required: true,
validator: function validator(value) {
return /^(#|rgb|rgba)/.test(value);
}
},
title: {
type: String,
required: true,
default: ''
},
description: {
type: String,
required: false,
default: ''
},
size: {
type: String,
required: false,
default: ''
},
tooltipPlacement: {
type: String,
required: false,
default: 'top'
},
target: {
type: String,
required: false,
default: '#'
},
scoped: {
type: Boolean,
required: false,
default: false
},
showCloseButton: {
type: Boolean,
required: false,
default: false
},
disabled: {
type: Boolean,
required: false,
default: false
}
},
data: function data() {
return {
splitScopedLabelIndex: this.title.lastIndexOf('::')
};
},
computed: {
cssClasses: function cssClasses() {
var textColorVariant = colorFromBackground(this.backgroundColor);
return {
'gl-label-sm': this.size === 'sm',
'gl-label-scoped': this.scoped,
'gl-label-text-dark': textColorVariant === labelColorOptions.dark,
'gl-label-text-light': textColorVariant === labelColorOptions.light
};
},
cssVariables: function cssVariables() {
return {
'--label-background-color': this.backgroundColor,
'--label-inset-border': "inset 0 0 0 ".concat(this.size === 'sm' ? '1px' : '2px', " ").concat(this.backgroundColor)
};
},
scopedKey: function scopedKey() {
return this.scoped ? this.title.slice(0, this.splitScopedLabelIndex) : this.title;
},
scopedValue: function scopedValue() {
return this.title.slice(this.splitScopedLabelIndex + 2);
},
closeIconSize: function closeIconSize() {
return this.size === 'sm' ? 12 : 16;
}
},
watch: {
title: function title() {
this.splitScopedLabelIndex = this.title.lastIndexOf('::');
}
}
};
/* 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('span',_vm._b({ref:"labelTitle",staticClass:"gl-label",class:_vm.cssClasses,style:(_vm.cssVariables),on:{"click":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('gl-link',{staticClass:"gl-label-link",attrs:{"href":_vm.target}},[_c('span',{staticClass:"gl-label-text"},[_vm._v("\n "+_vm._s(_vm.scopedKey)+"\n ")]),_vm._v(" "),(_vm.scoped && _vm.scopedValue)?_c('span',{staticClass:"gl-label-text-scoped"},[_vm._v("\n "+_vm._s(_vm.scopedValue)+"\n ")]):_vm._e()]),_vm._v(" "),(_vm.showCloseButton)?_c('button',{staticClass:"gl-label-close",attrs:{"type":"button","disabled":_vm.disabled},on:{"click":function($event){return _vm.$emit('close', $event)}}},[_c('gl-icon',{attrs:{"name":"close","size":_vm.closeIconSize}}),_vm._v(" "),_c('span',{staticClass:"gl-sr-only"},[_vm._v("Remove label")])],1):_vm._e(),_vm._v(" "),(_vm.description)?_c('gl-tooltip',{attrs:{"target":function () { return _vm.$refs.labelTitle; },"placement":_vm.tooltipPlacement,"boundary":"viewport"}},[(_vm.scoped)?_c('span',{staticClass:"gl-label-tooltip-title"},[_vm._v("Scoped label")]):_vm._e(),_vm._v("\n "+_vm._s(_vm.description)+"\n ")]):_vm._e()],1)};
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__;