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

76 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-01-12 16:10:41 +08:00
const hasProp = (instance, prop) => {
const $options = instance.$options || {}
const propsData = $options.propsData || {}
return prop in propsData
}
2018-02-07 18:56:58 +08:00
const slotHasProp = (slot, prop) => {
const $options = slot.componentOptions || {}
const propsData = $options.propsData || {}
return prop in propsData
}
2018-01-12 16:10:41 +08:00
const filterProps = (props, propsData = {}) => {
const res = {}
Object.keys(props).forEach((k) => {
if (k in propsData || props[k] !== undefined) {
res[k] = props[k]
}
})
return res
}
2018-02-07 23:03:47 +08:00
const getSlotOptions = (ele) => {
let componentOptions = ele.componentOptions
if (ele.$vnode) {
componentOptions = ele.$vnode.componentOptions
}
2018-02-12 18:10:51 +08:00
return componentOptions ? componentOptions.Ctor.options || {} : {}
2018-02-07 18:56:58 +08:00
}
2018-01-12 16:10:41 +08:00
const getOptionProps = (instance) => {
const { $options = {}, $props = {}} = instance
return filterProps($props, $options.propsData)
}
2018-01-18 10:43:39 +08:00
const getComponentFromProp = (instance, prop) => {
const h = instance.$createElement
2018-01-12 19:04:42 +08:00
const temp = instance[prop]
if (temp !== undefined) {
return typeof temp === 'function' ? temp(h) : temp
}
return instance.$slots[prop]
}
2018-02-07 18:56:58 +08:00
const getPropsData = (ele) => {
2018-02-07 23:03:47 +08:00
let componentOptions = ele.componentOptions
if (ele.$vnode) {
componentOptions = ele.$vnode.componentOptions
}
2018-02-12 18:10:51 +08:00
return componentOptions ? componentOptions.propsData || {} : {}
2018-02-07 18:56:58 +08:00
}
2018-02-12 18:10:51 +08:00
const getAttrs = (ele) => {
let data = ele.data
if (ele.$vnode) {
data = ele.$vnode.data
}
return data ? data.attrs || {} : {}
}
2018-02-07 23:03:47 +08:00
const getKey = (ele) => {
let key = ele.key
if (ele.$vnode) {
key = ele.$vnode.key
}
return key
}
2018-02-12 18:10:51 +08:00
export {
hasProp,
filterProps,
getOptionProps,
getComponentFromProp,
getSlotOptions,
slotHasProp,
getPropsData,
getKey,
getAttrs,
}
2018-01-12 16:10:41 +08:00
export default hasProp