* Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
import _ from "lodash";
|
|
|
|
export const createLoadingSelector = actions => state => {
|
|
return _(actions).some(action => _.get(state, `loading.${action}`));
|
|
};
|
|
|
|
export const createNotificationSelector = actions => state => {
|
|
return _(actions)
|
|
.some(action => _.get(state, `error.${action}`));
|
|
};
|