2018-04-06 11:02:18 +00:00
|
|
|
import {
|
|
|
|
createSelector,
|
|
|
|
createFeatureSelector,
|
|
|
|
} from '@ngrx/store';
|
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
import { StateSelector } from '@overflow/core/ngrx/store';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
|
|
|
import { MODULE } from '../noauth-probe.constant';
|
|
|
|
|
|
|
|
import * as NoAuthProbeStore from './noauth-probe';
|
|
|
|
|
|
|
|
export interface State {
|
|
|
|
noAuthProbe: NoAuthProbeStore.State;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const REDUCERS = {
|
|
|
|
noAuthProbe: NoAuthProbeStore.reducer,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const EFFECTS = [
|
|
|
|
NoAuthProbeStore.Effects,
|
|
|
|
];
|
|
|
|
|
|
|
|
export const selectNoAuthProbeState = createFeatureSelector<State>(MODULE.name);
|
|
|
|
|
|
|
|
export const NoAuthProbeSelector = new StateSelector<NoAuthProbeStore.State>(createSelector(
|
|
|
|
selectNoAuthProbeState,
|
|
|
|
(state: State) => state.noAuthProbe
|
|
|
|
));
|