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 | 2x 3x 3x 3x | import { Injectable, Provider } from '@angular/core'; import { createReducer, on } from '@ngrx/store'; import { mdFilesAction } from './md-files.actions'; import { mdFilesReducerConfig } from './md-files.interface'; @Injectable({ providedIn: 'root', }) export class AppMdFilesReducer { public createReducer() { return createReducer( mdFilesReducerConfig.initialState, on(mdFilesAction.showReadme, (state, { filePath }) => ({ ...state, filePath })), ); } } export const mdFilesReducerProvider: Provider = { provide: mdFilesReducerConfig.token, deps: [AppMdFilesReducer], useFactory: (reducer: AppMdFilesReducer) => reducer.createReducer(), }; |