@gitlab/ui
Version:
GitLab UI Components
121 lines (115 loc) • 5 kB
JavaScript
import Vue from 'vue';
export { default as Vue } from 'vue';
export { mergeData } from 'vue-functional-data-merge';
// --- Constants ---
const COMPONENT_UID_KEY = '_uid';
const isVue3 = Vue.version.startsWith('3');
const REF_FOR_KEY = isVue3 ? 'ref_for' : 'refInFor';
const ALLOWED_FIELDS_IN_DATA = ['class', 'staticClass', 'style', 'attrs', 'props', 'domProps', 'on', 'nativeOn', 'directives', 'scopedSlots', 'slot', 'key', 'ref', 'refInFor'];
let extend = Vue.extend.bind(Vue);
if (isVue3) {
const {
extend: originalExtend
} = Vue;
const KNOWN_COMPONENTS = ['router-link', 'transition', 'transition-group'];
const originalVModelDynamicCreated = Vue.vModelDynamic.created;
const originalVModelDynamicBeforeUpdate = Vue.vModelDynamic.beforeUpdate;
let assignSymbol;
// See https://github.com/vuejs/vue-next/pull/4121 for details
Vue.vModelDynamic.created = function (el, binding, vnode) {
originalVModelDynamicCreated.call(this, el, binding, vnode);
if (!el._assign) {
el._assign = () => {};
}
// Added check for Symbol('_assign') to fix in compat 3.3.5+ based on https://github.com/bootstrap-vue/bootstrap-vue/issues/7181
if (!assignSymbol) {
assignSymbol = Object.getOwnPropertySymbols(el).find(s => s.description === '_assign');
}
if (!el[assignSymbol]) {
el[assignSymbol] = function () {};
}
};
Vue.vModelDynamic.beforeUpdate = function (el, binding, vnode) {
originalVModelDynamicBeforeUpdate.call(this, el, binding, vnode);
if (!el._assign) {
el._assign = () => {};
}
// Added check for Symbol('_assign') to fix in 3.3.5+ based on https://github.com/bootstrap-vue/bootstrap-vue/issues/7181
if (!assignSymbol) {
assignSymbol = Object.getOwnPropertySymbols(el).find(s => s.description === '_assign');
}
if (!el[assignSymbol]) {
el[assignSymbol] = function () {};
}
};
extend = function patchedBootstrapVueExtend(definition) {
if (typeof definition === 'object' && definition.render && !definition.__alreadyPatched) {
const originalRender = definition.render;
definition.__alreadyPatched = true;
definition.render = function (h) {
const patchedH = function (tag, dataObjOrChildren, rawSlots) {
const slots = rawSlots === undefined ? [] : [Array.isArray(rawSlots) ? rawSlots.filter(Boolean) : rawSlots];
const isTag = typeof tag === 'string' && !KNOWN_COMPONENTS.includes(tag);
const isSecondArgumentDataObject = dataObjOrChildren && typeof dataObjOrChildren === 'object' && !Array.isArray(dataObjOrChildren);
if (!isSecondArgumentDataObject) {
return h(tag, dataObjOrChildren, ...slots);
}
const {
attrs,
props,
...restData
} = dataObjOrChildren;
const normalizedData = {
...restData,
attrs,
props: isTag ? {} : props
};
if (tag === 'router-link' && !normalizedData.slots && !normalizedData.scopedSlots) {
// terrible workaround to fix router-link rendering with compat vue-router
normalizedData.scopedSlots = {
$hasNormal: () => {}
};
}
return h(tag, normalizedData, ...slots);
};
if (definition.functional) {
var _ctx$children, _ctx$children$default;
const ctx = arguments[1];
const patchedCtx = {
...ctx
};
patchedCtx.data = {
attrs: {
...(ctx.data.attrs || {})
},
props: {
...(ctx.data.props || {})
}
};
Object.keys(ctx.data || {}).forEach(key => {
if (ALLOWED_FIELDS_IN_DATA.includes(key)) {
patchedCtx.data[key] = ctx.data[key];
} else if (key in ctx.props) {
patchedCtx.data.props[key] = ctx.data[key];
} else if (!key.startsWith('on')) {
patchedCtx.data.attrs[key] = ctx.data[key];
}
});
const IGNORED_CHILDREN_KEYS = ['_ctx'];
const children = ((_ctx$children = ctx.children) === null || _ctx$children === void 0 ? void 0 : (_ctx$children$default = _ctx$children.default) === null || _ctx$children$default === void 0 ? void 0 : _ctx$children$default.call(_ctx$children)) || ctx.children;
if (children && Object.keys(patchedCtx.children).filter(k => !IGNORED_CHILDREN_KEYS.includes(k)).length === 0) {
delete patchedCtx.children;
} else {
patchedCtx.children = children;
}
patchedCtx.data.on = ctx.listeners;
return originalRender.call(this, patchedH, patchedCtx);
}
return originalRender.call(this, patchedH);
};
}
return originalExtend.call(this, definition);
}.bind(Vue);
}
const nextTick = Vue.nextTick;
export { COMPONENT_UID_KEY, REF_FOR_KEY, extend, isVue3, nextTick };