@gitlab/ui
Version:
GitLab UI Components
79 lines (72 loc) • 2.02 kB
JavaScript
import { extend, mergeData } from '../../vue';
import { NAME_BUTTON_CLOSE } from '../../constants/components';
import { SLOT_NAME_DEFAULT } from '../../constants/slots';
import { stopEvent } from '../../utils/events';
import { isEvent } from '../../utils/inspect';
import { hasNormalizedSlot, normalizeSlot } from '../../utils/normalize-slot';
// --- Props ---
const props = {
ariaLabel: {
type: String,
required: false,
default: 'Close'
},
content: {
type: String,
required: false,
default: '×'
},
disabled: {
type: Boolean,
required: false,
default: false
},
textVariant: {
type: String,
required: false,
default: undefined
}
};
// --- Main component ---
// @vue/component
const BButtonClose = /*#__PURE__*/extend({
name: NAME_BUTTON_CLOSE,
functional: true,
props,
render(h, _ref) {
let props = _ref.props,
data = _ref.data,
slots = _ref.slots,
scopedSlots = _ref.scopedSlots;
const $slots = slots();
const $scopedSlots = scopedSlots || {};
const componentData = {
staticClass: 'close',
class: {
[`text-${props.textVariant}`]: props.textVariant
},
attrs: {
type: 'button',
disabled: props.disabled,
'aria-label': props.ariaLabel ? String(props.ariaLabel) : null
},
on: {
click(event) {
// Ensure click on button HTML content is also disabled
/* istanbul ignore if: bug in JSDOM still emits click on inner element */
if (props.disabled && isEvent(event)) {
stopEvent(event);
}
}
}
};
// Careful not to override the default slot with innerHTML
if (!hasNormalizedSlot(SLOT_NAME_DEFAULT, $scopedSlots, $slots)) {
componentData.domProps = {
innerHTML: props.content
};
}
return h('button', mergeData(data, componentData), normalizeSlot(SLOT_NAME_DEFAULT, {}, $scopedSlots, $slots));
}
});
export { BButtonClose, props };