- Use propTypes definition to auto connect actions/data to component
- Use mergeProps/options of the real connect function
The library use propTypes declared in the Component to link state properties or actions (dispatch is automatically added) to Component.
The library will bind properties by listing state and actions object keys.
autoConnect is the default function of the library.
This function is built on top of connect from react-redux.
-
getStates(state, ownProps) : Array[state]
: This function must return an array of states. If function is not provided,null
will be given toconnect
in themapStateToProps
place.
Parameters:
Name | Description |
---|---|
state | Redux store state like in connect in the mapStateToProps
|
ownProps | The props passed to the connected component |
-
getActions(ownProps) : Array[actions]
: This function must return an array of actions objects. If function is not provided,null
will be given toconnect
in themapDispatchToProps
place.
Parameters:
Name | Description |
---|---|
ownProps | The props passed to the connected component |
-
mergeProps()
: Same function as in theconnect
official API. -
options
: Same object as in theconnect
official API. -
ComponentClass
: Component class to connect with state and actions.
import autoConnect from 'react-redux-simple-autoconnect';
import TodoComponent from './Todo';
import actions from './actions';
const Todo = autoConnect((state) => [state], () => [actions])(TodoComponent);
export default Todo;
import autoConnect from 'react-redux-simple-autoconnect';
import TodoComponent from './Todo';
import actions from './actions';
import actions2 from './actions2';
const Todo = autoConnect((state) => [state.generalState, state.subState1], () => [actions, action2])(TodoComponent);
export default Todo;
- My wife BH to support me doing this
- Oxyno-zeta (Havrileck Alexandre)