50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
import { Effect, Actions, ofType } from '@ngrx/effects';
|
|
import { Action } from '@ngrx/store';
|
|
|
|
import { Observable } from 'rxjs/Observable';
|
|
import { of } from 'rxjs/observable/of';
|
|
|
|
import 'rxjs/add/operator/catch';
|
|
import 'rxjs/add/operator/do';
|
|
import 'rxjs/add/operator/exhaustMap';
|
|
import 'rxjs/add/operator/map';
|
|
import 'rxjs/add/operator/take';
|
|
|
|
import { RPCClientError } from '@loafer/ng-rpc';
|
|
|
|
import { Sensor } from '@overflow/commons-typescript/model/sensor';
|
|
import { SensorService } from '../../service/sensor.service';
|
|
|
|
import {
|
|
Regist,
|
|
RegistSuccess,
|
|
RegistFailure,
|
|
ActionType,
|
|
} from './regist.action';
|
|
|
|
@Injectable()
|
|
export class Effects {
|
|
|
|
constructor(
|
|
private actions$: Actions,
|
|
private service: SensorService,
|
|
private router: Router
|
|
) { }
|
|
|
|
@Effect()
|
|
regist$: Observable<Action> = this.actions$
|
|
.ofType(ActionType.Regist)
|
|
.map((action: Regist) => action.payload)
|
|
.switchMap(payload => this.service.registSensorConfig(payload.sensor, payload.sensorItems))
|
|
.map(list => {
|
|
return new RegistSuccess(list);
|
|
})
|
|
.catch((error: RPCClientError) => {
|
|
return of(new RegistFailure(error));
|
|
});
|
|
|
|
}
|