I have a few actions in my app that need to be shared by a few different react components. For example, I have a fetchAPIData
action creator which accepts some params and fires off actions to to make a fetch (using a custom fetch middleware i've written):
export function fetchAPIData(params) {
const actions =
[
types.API_CALL,
types.RECEIVE_API_DATA,
types.API_ERROR
];
const params = {
method: 'params.method',
params
};
return fetch(actions, params);
};
This action and others like this needs to be called by various different parts of the app so i've created a common-actions
directory where these actions live. This feels like the wrong approach so I am wondering if there is a more accepted way of doing this?
I would recommend you to use
connect
function react-reduxYou can then import your actions to the top level component, and bind them with the state you want. then pass the props to any children you want. quick example:
I left notes so you can understand what's going on. This is ES6.