39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
|
import { Injectable } from '@angular/core';
|
||
|
import { Effect, Actions, ofType } from '@ngrx/effects';
|
||
|
import { of } from 'rxjs';
|
||
|
import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
|
||
|
|
||
|
import { MetaProbeArchitectureService } from '../../../service/meta-probe-architecture.service';
|
||
|
|
||
|
import {
|
||
|
ReadAll,
|
||
|
ReadAllSuccess,
|
||
|
ReadAllFailure,
|
||
|
ActionType,
|
||
|
} from './meta-probe-architecture.action';
|
||
|
import { MetaProbeArchitecture } from '@overflow/commons-typescript/model/meta';
|
||
|
|
||
|
@Injectable()
|
||
|
export class Effects {
|
||
|
|
||
|
constructor(
|
||
|
private actions$: Actions,
|
||
|
private metaProbeArchitectureService: MetaProbeArchitectureService,
|
||
|
) { }
|
||
|
|
||
|
@Effect()
|
||
|
readAll$ = this.actions$.pipe(
|
||
|
ofType(ActionType.ReadAll),
|
||
|
exhaustMap(() =>
|
||
|
this.metaProbeArchitectureService
|
||
|
.readAll()
|
||
|
.pipe(
|
||
|
map((result: MetaProbeArchitecture[]) => {
|
||
|
return new ReadAllSuccess(result);
|
||
|
}),
|
||
|
catchError(error => of(new ReadAllFailure(error)))
|
||
|
)
|
||
|
)
|
||
|
);
|
||
|
}
|