All files / src/app/extensions/quoting/store quoting-store.module.ts

93.75% Statements 15/16
100% Branches 0/0
50% Functions 1/2
92.85% Lines 13/14

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 351x 1x 1x 1x   1x     1x 1x   1x   1x     1x       1x                 1x   13x      
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 { QuotingState } from './quoting-store';
import { QuotingEffects } from './quoting/quoting.effects';
import { quotingReducer } from './quoting/quoting.reducer';
 
const quotingReducers: ActionReducerMap<QuotingState> = { quoting: quotingReducer };
 
const quotingEffects = [QuotingEffects];
 
@Injectable()
export class QuotingStoreConfig implements StoreConfig<QuotingState> {
  metaReducers = [resetOnLogoutMeta];
}
 
export const QUOTING_STORE_CONFIG = new InjectionToken<StoreConfig<QuotingState>>('quotingStoreConfig');
 
@NgModule({
  imports: [
    EffectsModule.forFeature(quotingEffects),
    StoreModule.forFeature('quoting', quotingReducers, QUOTING_STORE_CONFIG),
  ],
  providers: [{ provide: QUOTING_STORE_CONFIG, useClass: QuotingStoreConfig }],
})
export class QuotingStoreModule {
  static forTesting(...reducers: (keyof ActionReducerMap<QuotingState>)[]) {
    return StoreModule.forFeature('quoting', pick(quotingReducers, reducers));
  }
}