51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
import { createSelector } from "reselect";
|
|
|
|
const selectApplication = (state) => state.application;
|
|
|
|
export const selectLoading = createSelector(
|
|
[selectApplication],
|
|
(application) => application.loading
|
|
);
|
|
|
|
export const selectBreadcrumbs = createSelector(
|
|
[selectApplication],
|
|
(application) => application.breadcrumbs
|
|
);
|
|
|
|
export const selectRecentItems = createSelector(
|
|
[selectApplication],
|
|
(application) => application.recentItems
|
|
);
|
|
|
|
export const selectScheduleLoad = createSelector(
|
|
[selectApplication],
|
|
(application) => application.scheduleLoad.load
|
|
);
|
|
export const selectPartnerVersion = createSelector(
|
|
[selectApplication],
|
|
(application) => application.partnerVersion
|
|
);
|
|
|
|
export const selectScheduleLoadCalculating = createSelector(
|
|
[selectApplication],
|
|
(application) => application.scheduleLoad.calculating
|
|
);
|
|
|
|
export const selectSelectedHeader = createSelector(
|
|
[selectApplication],
|
|
(application) => application.selectedHeader
|
|
);
|
|
|
|
export const selectJobReadOnly = createSelector(
|
|
[selectApplication],
|
|
(application) => application.jobReadOnly
|
|
);
|
|
export const selectOnline = createSelector(
|
|
[selectApplication],
|
|
(application) => application.online
|
|
);
|
|
export const selectProblemJobs = createSelector(
|
|
[selectApplication],
|
|
(application) => application.problemJobs
|
|
);
|