Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 3x | import { InjectionToken } from '@angular/core';
import type { TToastType } from '@app/client-util';
import type { IReducerConfig } from '@app/client-util-ngrx';
import type { ActionReducer } from '@ngrx/store';
import type { MonoTypeOperatorFunction } from 'rxjs';
export interface IViewProgress {
counter: number;
loading: boolean;
}
/** Http progress state model. */
export interface IHttpProgressStateModel {
mainView: IViewProgress;
sidebar: IViewProgress;
toaster: {
message: string;
type: TToastType;
duration?: number;
};
}
/** Http progress state. */
export interface IHttpProgressState {
httpProgress: IHttpProgressStateModel;
}
export interface IHttpProgressPayload {
mainView?: boolean;
sidebar?: boolean;
}
export interface IShowToastPayload {
message: string;
type: TToastType;
duration?: number;
}
export interface IHttpProgressHandler {
start(): void;
stop(): void;
tapStopperObservable<T>(): MonoTypeOperatorFunction<T>;
}
/** Http progress reducer configuration. */
export const httpProgressReducerConfig: IReducerConfig<keyof IHttpProgressState, IHttpProgressStateModel> = {
featureName: 'httpProgress',
token: new InjectionToken<ActionReducer<IHttpProgressStateModel>>('httpProgress reducer'),
initialState: {
mainView: {
counter: 0,
loading: false,
},
sidebar: {
counter: 0,
loading: false,
},
toaster: {
message: '',
type: 'primary',
duration: void 0,
},
},
};
|