2018-04-06 11:02:18 +00:00
|
|
|
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';
|
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
import { RPCClientError } from '@loafer/ng-rpc';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-02 08:09:39 +00:00
|
|
|
import { Notification } from '@overflow/commons-typescript/model/notification';
|
2018-04-06 11:02:18 +00:00
|
|
|
import { NotificationService } from '../../service/notification.service';
|
|
|
|
|
|
|
|
import {
|
|
|
|
MarkAsRead,
|
|
|
|
MarkAsReadSuccess,
|
|
|
|
MarkAsReadFailure,
|
|
|
|
ActionType,
|
|
|
|
} from './notification.action';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class Effects {
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private actions$: Actions,
|
|
|
|
private notificationService: NotificationService,
|
|
|
|
private router: Router
|
|
|
|
) { }
|
|
|
|
|
|
|
|
|
|
|
|
@Effect()
|
|
|
|
markAsRead$: Observable<Action> = this.actions$
|
|
|
|
.ofType(ActionType.MarkAsRead)
|
|
|
|
.map((action: MarkAsRead) => action.payload)
|
|
|
|
.switchMap(payload => this.notificationService.markAsRead(payload))
|
|
|
|
.map(notification => {
|
|
|
|
return new MarkAsReadSuccess(notification);
|
|
|
|
})
|
|
|
|
.catch((error: RPCClientError) => {
|
|
|
|
console.log(error.response.message);
|
|
|
|
return of(new MarkAsReadFailure(error));
|
|
|
|
});
|
|
|
|
}
|