ant-design-vue/components/_util/props-util.js

315 lines
8.2 KiB
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import isPlainObject from 'lodash/isPlainObject';
import classNames from 'classnames';
function getType(fn) {
const match = fn && fn.toString().match(/^\s*function (\w+)/);
return match ? match[1] : '';
2018-05-06 13:50:05 +00:00
}
2019-01-12 03:33:27 +00:00
const camelizeRE = /-(\w)/g;
const camelize = str => {
return str.replace(camelizeRE, (_, c) => (c ? c.toUpperCase() : ''));
};
2018-03-08 05:55:49 +00:00
const parseStyleText = (cssText = '', camel) => {
2019-01-12 03:33:27 +00:00
const res = {};
const listDelimiter = /;(?![^(]*\))/g;
const propertyDelimiter = /:(.+)/;
cssText.split(listDelimiter).forEach(function(item) {
2018-03-01 11:09:45 +00:00
if (item) {
2019-01-12 03:33:27 +00:00
const tmp = item.split(propertyDelimiter);
2018-03-08 05:55:49 +00:00
if (tmp.length > 1) {
2019-01-12 03:33:27 +00:00
const k = camel ? camelize(tmp[0].trim()) : tmp[0].trim();
res[k] = tmp[1].trim();
2018-03-08 05:55:49 +00:00
}
2018-03-01 11:09:45 +00:00
}
2019-01-12 03:33:27 +00:00
});
return res;
};
2018-03-01 11:09:45 +00:00
2018-01-12 08:10:41 +00:00
const hasProp = (instance, prop) => {
2019-01-12 03:33:27 +00:00
const $options = instance.$options || {};
const propsData = $options.propsData || {};
return prop in propsData;
};
2018-02-07 10:56:58 +00:00
const slotHasProp = (slot, prop) => {
2019-01-12 03:33:27 +00:00
const $options = slot.componentOptions || {};
const propsData = $options.propsData || {};
return prop in propsData;
};
2018-01-12 08:10:41 +00:00
const filterProps = (props, propsData = {}) => {
2019-01-12 03:33:27 +00:00
const res = {};
Object.keys(props).forEach(k => {
2018-01-12 08:10:41 +00:00
if (k in propsData || props[k] !== undefined) {
2019-01-12 03:33:27 +00:00
res[k] = props[k];
2018-01-12 08:10:41 +00:00
}
2019-01-12 03:33:27 +00:00
});
return res;
};
2019-08-07 13:56:30 +00:00
const getScopedSlots = ele => {
return (ele.data && ele.data.scopedSlots) || {};
};
2019-01-12 03:33:27 +00:00
const getSlots = ele => {
let componentOptions = ele.componentOptions || {};
2018-03-29 10:18:41 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
componentOptions = ele.$vnode.componentOptions || {};
2018-03-29 10:18:41 +00:00
}
2019-01-12 03:33:27 +00:00
const children = ele.children || componentOptions.children || [];
const slots = {};
2018-03-29 10:18:41 +00:00
children.forEach(child => {
2019-01-04 15:00:09 +00:00
if (!isEmptyElement(child)) {
2019-01-12 03:33:27 +00:00
const name = (child.data && child.data.slot) || 'default';
slots[name] = slots[name] || [];
slots[name].push(child);
2019-01-04 15:00:09 +00:00
}
2019-01-12 03:33:27 +00:00
});
2019-08-07 13:56:30 +00:00
return { ...slots, ...getScopedSlots(ele) };
2019-01-12 03:33:27 +00:00
};
2019-02-13 14:11:27 +00:00
const getSlot = (self, name = 'default', options = {}) => {
return (
(self.$scopedSlots && self.$scopedSlots[name] && self.$scopedSlots[name](options)) ||
self.$slots[name] ||
[]
);
};
2019-08-07 13:56:30 +00:00
2019-01-12 03:33:27 +00:00
const getAllChildren = ele => {
let componentOptions = ele.componentOptions || {};
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
componentOptions = ele.$vnode.componentOptions || {};
}
2019-01-12 03:33:27 +00:00
return ele.children || componentOptions.children || [];
};
const getSlotOptions = ele => {
if (ele.fnOptions) {
// 函数式组件
return ele.fnOptions;
2018-06-16 13:30:41 +00:00
}
2019-01-12 03:33:27 +00:00
let componentOptions = ele.componentOptions;
2018-02-07 15:03:47 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
componentOptions = ele.$vnode.componentOptions;
2018-02-07 15:03:47 +00:00
}
2019-01-12 03:33:27 +00:00
return componentOptions ? componentOptions.Ctor.options || {} : {};
};
const getOptionProps = instance => {
2018-03-08 05:55:49 +00:00
if (instance.componentOptions) {
2019-01-12 03:33:27 +00:00
const componentOptions = instance.componentOptions;
const { propsData = {}, Ctor = {} } = componentOptions;
const props = (Ctor.options || {}).props || {};
const res = {};
2018-03-08 05:55:49 +00:00
for (const [k, v] of Object.entries(props)) {
2019-01-12 03:33:27 +00:00
const def = v.default;
2018-05-06 13:50:05 +00:00
if (def !== undefined) {
2019-01-12 03:33:27 +00:00
res[k] =
typeof def === 'function' && getType(v.type) !== 'Function' ? def.call(instance) : def;
2018-03-08 05:55:49 +00:00
}
}
2019-01-12 03:33:27 +00:00
return { ...res, ...propsData };
2018-03-08 05:55:49 +00:00
}
2019-01-12 03:33:27 +00:00
const { $options = {}, $props = {} } = instance;
return filterProps($props, $options.propsData);
};
2018-01-12 08:10:41 +00:00
const getComponentFromProp = (instance, prop, options = instance, execute = true) => {
2018-02-24 10:12:24 +00:00
if (instance.$createElement) {
2019-01-12 03:33:27 +00:00
const h = instance.$createElement;
const temp = instance[prop];
2018-02-24 10:12:24 +00:00
if (temp !== undefined) {
2019-01-12 03:33:27 +00:00
return typeof temp === 'function' && execute ? temp(h, options) : temp;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
return (
(instance.$scopedSlots[prop] && execute && instance.$scopedSlots[prop](options)) ||
instance.$scopedSlots[prop] ||
2019-02-13 14:11:27 +00:00
instance.$slots[prop] ||
2019-01-12 03:33:27 +00:00
undefined
);
2018-02-24 10:12:24 +00:00
} else {
2019-01-12 03:33:27 +00:00
const h = instance.context.$createElement;
const temp = getPropsData(instance)[prop];
2018-02-24 10:12:24 +00:00
if (temp !== undefined) {
2019-01-12 03:33:27 +00:00
return typeof temp === 'function' && execute ? temp(h, options) : temp;
2018-02-24 10:12:24 +00:00
}
2019-10-09 11:07:35 +00:00
const slotScope = getScopedSlots(instance)[prop];
if (slotScope !== undefined) {
return typeof slotScope === 'function' && execute ? slotScope(h, options) : slotScope;
}
2019-01-12 03:33:27 +00:00
const slotsProp = [];
2018-02-24 10:12:24 +00:00
const componentOptions = instance.componentOptions || {};
2019-01-12 03:33:27 +00:00
(componentOptions.children || []).forEach(child => {
2018-02-24 10:12:24 +00:00
if (child.data && child.data.slot === prop) {
delete child.data.attrs.slot;
2018-03-10 12:46:57 +00:00
if (child.tag === 'template') {
2019-01-12 03:33:27 +00:00
slotsProp.push(child.children);
2018-03-10 12:46:57 +00:00
} else {
2019-01-12 03:33:27 +00:00
slotsProp.push(child);
2018-03-10 12:46:57 +00:00
}
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
});
return slotsProp.length ? slotsProp : undefined;
2018-01-12 11:04:42 +00:00
}
2019-01-12 03:33:27 +00:00
};
2018-01-12 11:04:42 +00:00
2019-01-12 03:33:27 +00:00
const getAllProps = ele => {
let data = ele.data || {};
let componentOptions = ele.componentOptions || {};
2018-07-11 09:51:20 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
data = ele.$vnode.data || {};
componentOptions = ele.$vnode.componentOptions || {};
2018-07-11 09:51:20 +00:00
}
2019-01-12 03:33:27 +00:00
return { ...data.props, ...data.attrs, ...componentOptions.propsData };
};
2018-07-11 09:51:20 +00:00
2019-01-12 03:33:27 +00:00
const getPropsData = ele => {
let componentOptions = ele.componentOptions;
2018-02-07 15:03:47 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
componentOptions = ele.$vnode.componentOptions;
2018-02-07 15:03:47 +00:00
}
2019-01-12 03:33:27 +00:00
return componentOptions ? componentOptions.propsData || {} : {};
};
2018-02-24 10:12:24 +00:00
const getValueByProp = (ele, prop) => {
2019-01-12 03:33:27 +00:00
return getPropsData(ele)[prop];
};
2018-02-12 10:10:51 +00:00
2019-01-12 03:33:27 +00:00
const getAttrs = ele => {
let data = ele.data;
2018-02-12 10:10:51 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
data = ele.$vnode.data;
2018-02-12 10:10:51 +00:00
}
2019-01-12 03:33:27 +00:00
return data ? data.attrs || {} : {};
};
2018-02-12 10:10:51 +00:00
2019-01-12 03:33:27 +00:00
const getKey = ele => {
let key = ele.key;
2018-02-07 15:03:47 +00:00
if (ele.$vnode) {
2019-01-12 03:33:27 +00:00
key = ele.$vnode.key;
2018-02-07 15:03:47 +00:00
}
2019-01-12 03:33:27 +00:00
return key;
};
2018-02-24 10:12:24 +00:00
2019-01-12 03:33:27 +00:00
export function getEvents(child) {
let events = {};
2018-02-24 10:12:24 +00:00
if (child.componentOptions && child.componentOptions.listeners) {
2019-01-12 03:33:27 +00:00
events = child.componentOptions.listeners;
2018-02-24 10:12:24 +00:00
} else if (child.data && child.data.on) {
2019-01-12 03:33:27 +00:00
events = child.data.on;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
return { ...events };
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
export function getClass(ele) {
let data = {};
2018-02-24 10:12:24 +00:00
if (ele.data) {
2019-01-12 03:33:27 +00:00
data = ele.data;
2018-02-24 10:12:24 +00:00
} else if (ele.$vnode && ele.$vnode.data) {
2019-01-12 03:33:27 +00:00
data = ele.$vnode.data;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
const tempCls = data.class || {};
const staticClass = data.staticClass;
let cls = {};
staticClass &&
staticClass.split(' ').forEach(c => {
cls[c.trim()] = true;
});
2018-03-06 14:53:32 +00:00
if (typeof tempCls === 'string') {
2019-01-12 03:33:27 +00:00
tempCls.split(' ').forEach(c => {
cls[c.trim()] = true;
});
} else if (Array.isArray(tempCls)) {
2019-01-12 03:33:27 +00:00
classNames(tempCls)
.split(' ')
.forEach(c => {
cls[c.trim()] = true;
});
2018-03-06 14:53:32 +00:00
} else {
2019-01-12 03:33:27 +00:00
cls = { ...cls, ...tempCls };
2018-03-06 11:14:41 +00:00
}
2019-01-12 03:33:27 +00:00
return cls;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
export function getStyle(ele, camel) {
let data = {};
2018-02-24 10:12:24 +00:00
if (ele.data) {
2019-01-12 03:33:27 +00:00
data = ele.data;
2018-02-24 10:12:24 +00:00
} else if (ele.$vnode && ele.$vnode.data) {
2019-01-12 03:33:27 +00:00
data = ele.$vnode.data;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
let style = data.style || data.staticStyle;
2018-03-07 13:36:15 +00:00
if (typeof style === 'string') {
2019-01-12 03:33:27 +00:00
style = parseStyleText(style, camel);
} else if (camel && style) {
// 驼峰化
const res = {};
Object.keys(style).forEach(k => (res[camelize(k)] = style[k]));
return res;
2018-03-07 13:36:15 +00:00
}
2019-01-12 03:33:27 +00:00
return style;
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
export function getComponentName(opts) {
return opts && (opts.Ctor.options.name || opts.tag);
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
export function isEmptyElement(c) {
return !(c.tag || (c.text && c.text.trim() !== ''));
2018-02-24 10:12:24 +00:00
}
2019-01-12 03:33:27 +00:00
export function filterEmpty(children = []) {
return children.filter(c => !isEmptyElement(c));
2018-02-24 10:12:24 +00:00
}
2018-03-06 11:14:41 +00:00
const initDefaultProps = (propTypes, defaultProps) => {
2018-03-17 13:38:29 +00:00
Object.keys(defaultProps).forEach(k => {
if (propTypes[k]) {
2019-01-12 03:33:27 +00:00
propTypes[k].def && (propTypes[k] = propTypes[k].def(defaultProps[k]));
2018-03-17 13:38:29 +00:00
} else {
2019-01-12 03:33:27 +00:00
throw new Error(`not have ${k} prop`);
2018-03-17 13:38:29 +00:00
}
2019-01-12 03:33:27 +00:00
});
return propTypes;
};
2018-03-12 14:13:59 +00:00
2019-01-12 03:33:27 +00:00
export function mergeProps() {
const args = [].slice.call(arguments, 0);
const props = {};
2019-02-01 09:23:00 +00:00
args.forEach((p = {}) => {
2018-03-12 14:13:59 +00:00
for (const [k, v] of Object.entries(p)) {
2019-01-12 03:33:27 +00:00
props[k] = props[k] || {};
2018-03-17 13:38:29 +00:00
if (isPlainObject(v)) {
2019-01-12 03:33:27 +00:00
Object.assign(props[k], v);
2018-03-17 13:38:29 +00:00
} else {
2019-01-12 03:33:27 +00:00
props[k] = v;
2018-03-17 13:38:29 +00:00
}
2018-03-12 14:13:59 +00:00
}
2019-01-12 03:33:27 +00:00
});
return props;
2018-03-12 14:13:59 +00:00
}
2018-03-17 13:38:29 +00:00
2019-01-12 03:33:27 +00:00
function isValidElement(element) {
return (
element &&
2019-01-06 10:28:16 +00:00
typeof element === 'object' &&
'componentOptions' in element &&
'context' in element &&
2019-01-12 03:33:27 +00:00
element.tag !== undefined
); // remove text node
2018-03-25 14:23:04 +00:00
}
2018-02-12 10:10:51 +00:00
export {
hasProp,
filterProps,
getOptionProps,
getComponentFromProp,
getSlotOptions,
slotHasProp,
getPropsData,
getKey,
getAttrs,
2018-02-24 10:12:24 +00:00
getValueByProp,
2018-03-03 11:14:03 +00:00
parseStyleText,
2018-03-06 11:14:41 +00:00
initDefaultProps,
2018-03-25 14:23:04 +00:00
isValidElement,
2018-03-29 10:18:41 +00:00
camelize,
getSlots,
2019-02-13 14:11:27 +00:00
getSlot,
2018-07-11 09:51:20 +00:00
getAllProps,
getAllChildren,
2019-01-12 03:33:27 +00:00
};
export default hasProp;