-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
41 lines (36 loc) · 1.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// from system propTypes only
const getPropTypes = (propTypes = {}) => {
const metadata = Object.keys(propTypes).reduce((a, key) => {
const type = propTypes[key]
const meta = type.meta
if (!meta || typeof meta !== 'object') return a
a[key] = meta
return a
}, {})
return metadata
}
const getTagName = ext => {
const [ last ] = ext.slice(-1)
return last || 'div'
}
// from system-specific `is` prop
const getExtensions = (Comp, ext = []) => {
if (!Comp.defaultProps || !Comp.defaultProps.is) return ext
const e = Comp.defaultProps.is
if (typeof e !== 'function') return ext
ext.push(e)
// recursive - side effects
getExtensions(e, ext)
return ext
}
module.exports = Comp => {
if (!Comp) return {}
if (typeof Comp !== 'function' && typeof Comp.render !== 'function') return {}
const metadata = Object.assign({}, Comp)
metadata.propTypes = getPropTypes(Comp.propTypes)
metadata.extensions = getExtensions(Comp)
metadata.tagName = getTagName(metadata.extensions)
return metadata
}
module.exports.getPropTypes = getPropTypes
module.exports.getExtensions = getExtensions