redux-loading
Loading control with Redux
Example
const store = let action = type: 'SOME_ACTION' meta: loading: true store let state = store//state = {loading: {pending: 1, done: false}} action = type: 'SOME_OTHER_ACTION' meta: loading: false store state = store//state = {loading: {pending: 0, done: true}}