2018-05-29 10:17:16 +00:00
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
import { Effect, Actions, ofType } from '@ngrx/effects';
|
|
|
|
import { of } from 'rxjs';
|
|
|
|
import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
|
|
|
|
|
2018-05-29 10:49:29 +00:00
|
|
|
import { MetaMemberStatus } from '@overflow/commons-typescript/model/meta';
|
|
|
|
|
2018-05-29 10:17:16 +00:00
|
|
|
import { MetaMemberStatusService } from '../../../service/meta-member-status.service';
|
|
|
|
|
|
|
|
import {
|
|
|
|
ReadAll,
|
|
|
|
ReadAllSuccess,
|
|
|
|
ReadAllFailure,
|
|
|
|
ActionType,
|
|
|
|
} from './meta-member-status.action';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class Effects {
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private actions$: Actions,
|
|
|
|
private metaMemberStatusService: MetaMemberStatusService,
|
|
|
|
) { }
|
|
|
|
|
|
|
|
@Effect()
|
|
|
|
readAll$ = this.actions$.pipe(
|
|
|
|
ofType(ActionType.ReadAll),
|
|
|
|
exhaustMap(() =>
|
|
|
|
this.metaMemberStatusService
|
|
|
|
.readAll()
|
|
|
|
.pipe(
|
|
|
|
map((result: MetaMemberStatus[]) => {
|
|
|
|
return new ReadAllSuccess(result);
|
|
|
|
}),
|
|
|
|
catchError(error => of(new ReadAllFailure(error)))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|