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 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 56x | import { Injectable, InjectionToken, NgModule } from '@angular/core';
import { EffectsModule } from '@ngrx/effects';
import { ActionReducerMap, StoreConfig, StoreModule } from '@ngrx/store';
import { pick } from 'lodash-es';
import { resetOnLogoutMeta } from 'ish-core/utils/meta-reducers';
import { OrderTemplateEffects } from './order-template/order-template.effects';
import { orderTemplateReducer } from './order-template/order-template.reducer';
import { OrderTemplatesState } from './order-templates-store';
const orderTemplatesReducers: ActionReducerMap<OrderTemplatesState> = {
orderTemplates: orderTemplateReducer,
};
const orderTemplatesEffects = [OrderTemplateEffects];
@Injectable()
export class OrderTemplatesStoreConfig implements StoreConfig<OrderTemplatesState> {
metaReducers = [resetOnLogoutMeta];
}
export const ORDER_TEMPLATES_STORE_CONFIG = new InjectionToken<StoreConfig<OrderTemplatesState>>(
'orderTemplatesStoreConfig'
);
@NgModule({
imports: [
EffectsModule.forFeature(orderTemplatesEffects),
StoreModule.forFeature('orderTemplates', orderTemplatesReducers, ORDER_TEMPLATES_STORE_CONFIG),
],
providers: [{ provide: ORDER_TEMPLATES_STORE_CONFIG, useClass: OrderTemplatesStoreConfig }],
})
export class OrderTemplatesStoreModule {
static forTesting(...reducers: (keyof ActionReducerMap<OrderTemplatesState>)[]) {
return StoreModule.forFeature('orderTemplates', pick(orderTemplatesReducers, reducers));
}
}
|