This folder contains all of the Redux actions for the project. If this is your first time working with Redux, then taking a read through the Redux docs would probably be a good idea.
All actions in the Firefox Profiler are fully typed using Flow. These types are located in /src/types/actions.js
and are built using a union of the action objects.
Actions in the profiler are kept relatively simple. There are two types of action creators in this project–action creators that return an Action
or an action creator that returns a ThunkAction
(see Redux Thunk for additional reading.) If an action creator needs access to different parts of the state, we strongly recommend you use the getState
parameter from a ThunkAction
. If you need an alternative method to directly access the state in a ThunkAction
, you can look up the value using a selector within the connected component. You can then pass it into the action creator as a parameter.
export function doThunkAction() {
return (dispatch, getState) => {
// We strongly recommend this method.
const requiredData = getState().requiredData;
myAction(requiredData).then(() => {
dispatch({ type: 'ACTION_PERFORMED' });
});
};
}
export function doThunkAction(requiredData) {
return (dispatch) => {
myAction(requiredData).then(() => {
dispatch({ type: 'ACTION_PERFORMED' });
});
};
}
For our approach for testing actions, please read the store tests documentation.