-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataful.js
67 lines (48 loc) · 1.34 KB
/
dataful.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import invariant from 'invariant'
import {connect} from 'react-redux'
import {bindActionCreators} from 'redux'
export default function dataful (Component, options) {
if (!options) {
options = Component
}
options = options || {}
invariant(!options.data || isObject(options.data), '${Component.name}(data) must be an objet')
each(options.data, (creator, key) => {
invariant(isFunction(creator), `${Component.name}(data: ${key}) must be a function`)
})
const Container = connect(mapState, mapDispatch)(Component)
Container.innerComponentRef = 'underlyingRef'
return Container
function mapState (state, props) {
if (props.data) {
return props.data
}
if (props.state) {
state = props.state
}
const data = {}
each(options.data, (creator, key) => data[key] = creator(state, props))
return { data }
}
function mapDispatch (dispatch, props) {
let {actions} = props
if (!actions) {
actions = bindActionCreators(options.actions || {}, dispatch)
}
return { actions }
}
function isFunction (obj) {
return toString.call(obj) === '[object Function]'
}
function isObject (obj) {
return toString.call(obj) === '[object Object]'
}
function each (obj, cb) {
if (!obj) {
return
}
for (var key in obj) {
cb(obj[key], key)
}
}
}