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

284 lines
7.5 KiB
JavaScript
Raw Normal View History

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