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

336 lines
8.7 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) {
if (child.data.attrs) {
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
}
2020-01-18 08:14:42 +00:00
2020-05-14 14:30:46 +00:00
// 获取 xxx.native 或者 原生标签 事件
export function getDataEvents(child) {
let events = {};
if (child.data && child.data.on) {
events = child.data.on;
}
return { ...events };
}
2020-01-18 08:14:42 +00:00
// use getListeners instead this.$listeners
// https://github.com/vueComponent/ant-design-vue/issues/1705
export function getListeners(context) {
2020-01-18 13:34:23 +00:00
return (context.$vnode ? context.$vnode.componentOptions.listeners : context.$listeners) || {};
2020-01-18 08:14:42 +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
}
Feat 1.5.0 (#1853) * feat: add Result component * fix: update md template tag html>tpl - fix `result` typo - update jest `result` snapshots * refactor: svg file to functional component icon - update jest snapshot * feat: add result * Feat descriptions (#1251) * feat: add descriptions * fix: add descriptions types and fix docs * fix: lint change code * fix: demo warning * fix: update demo, snapshot and remove classnames * test: add descriptions test * fix: descriptions demo (#1498) * feat: add page header (#1250) * feat: add page-header component * update site: page-header * ts definition update: page-header * get page-header props with getComponentFromProp func * optimize page-header * doc: add page-header actions.md responsive.md * breadcrumb itemRender add pure function support * style: format code * feat: update style to 3.23.6 from 2.13.6 * feat: update style to 3.26.8 from 3.23.6 * chore: update util * chore: update util * feat: update affix * feat: update alert * feat: update anchor * feat: update auto-complete * feat: update avatar * feat: update back-top * feat: update badge * feat: update button * feat: update breadcrumb * feat: update ts * docs: update doc * feat: update calendat * feat: update card * feat: update carousel * feat: update carousel * feat: update checkbox * feat: update comment * feat: update config-provider * docs: update doc * feat: update collapse * feat: update locale * feat: update date-picker * feat: update divider * feat: update drawer * feat: update dropdown * feat: update rc-trigger * feat: update dropdown * feat: update empty * test: add empty test * feat: update form * feat: update form * feat: update spin * feat: update grid * docs: update grid doc * feat: update icon * feat: update slider * feat: update textarea * feat: update input-number * feat: update layout * feat: update list * feat: update menu * feat: meaage add key for update content * feat: modal add closeIcon support * feat: update notification * feat: add pagination disabled support * feat: popconfirm add disabled support * test: update popover * feat: progress support custom line-gradiend * feat: update radio * test: update radio test * docs: update rate demo * feat: skeleton add avatar support number type * test: add switch test * test: update statistic test * fix: input clear icon event * feat: steps add type、 v-model、subTitle * feat: delete typography component * feat: delete Typography style * perf: update select * feat: add download transformFile previewFile actio * docs: update upload * feat: update tree-select * docs: update tree-select * feat: tree add blockNode selectable * docs: add tree demo * test: update snap * docs: updatedoc * feat: update tag * docs: update ad doc * feat: update tooltip * feat: update timeline * feat: time-picker add clearIcon * docs: update tabs * feat: transfer support custom children * test: update transfer test * feat: update table * test: update table test * test: update test * feat: calendar update locale * test: update test snap * feat: add mentions (#1790) * feat: mentions style * feat: theme default * feat: add mentions component * feat: mentions API * feat: add unit test for mentions * feat: update mentions demo * perf: model and inheritAttrs for mentions * perf: use getComponentFromProp instead of this.$props * perf: mentions rm defaultProps * feat: rm rows in mentionsProps * fix: mentions keyDown didn't work * docs: update mentions api * perf: mentions code * feat: update mentions * bump 1.5.0-alpha.1 * feat: pageheader add ghost prop * docs: update descriptions demo * chore: page-header add ghost type * fix: color error * feat: update to 3.26.12 * fix: some prop default value * fix(typo): form, carousel, upload. duplicate identifier (#1848) * Add Mentions Type (#1845) * feat: add mentions type * feat: add mentions in ant-design-vue.d.ts * docs: update doc * docs: add changelog * fix: mentions getPopupCotainer value (#1850) * docs: update doc * docs: uptate demo * docs: update demo * docs: delete demo * docs: delete doc * test: update snapshots * style: format code * chore: update travis * docs: update demo Co-authored-by: Sendya <18x@loacg.com> Co-authored-by: zkwolf <chenhao5866@gmail.com> Co-authored-by: drafish <xwlyy1991@163.com> Co-authored-by: Amour1688 <31695475+Amour1688@users.noreply.github.com>
2020-03-07 11:45:13 +00:00
export function isStringElement(c) {
return !c.tag;
}
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;