next-ucap-messenger/projects/ucap-webmessenger-app/src/app/store/messenger/event/effects.ts

162 lines
3.7 KiB
TypeScript
Raw Normal View History

2019-10-08 04:18:05 +00:00
import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
2019-10-10 04:35:32 +00:00
import { Store, select } from '@ngrx/store';
2019-10-08 04:18:05 +00:00
import { NGXLogger } from 'ngx-logger';
import { of } from 'rxjs';
2019-10-10 04:35:32 +00:00
import {
tap,
switchMap,
map,
catchError,
exhaustMap,
withLatestFrom
} from 'rxjs/operators';
2019-10-08 04:18:05 +00:00
import {
InfoData,
Info,
InfoResponse,
EventProtocolService,
SSVC_TYPE_EVENT_INFO_DATA,
2019-10-08 05:34:37 +00:00
SSVC_TYPE_EVENT_INFO_RES,
SendResponse
2019-10-08 04:18:05 +00:00
} from '@ucap-webmessenger/protocol-event';
import * as ChatStore from '@app/store/messenger/chat';
2019-10-08 05:34:37 +00:00
import {
info,
infoSuccess,
infoFailure,
send,
sendSuccess,
2019-10-08 05:59:22 +00:00
sendFailure,
2019-10-10 04:35:32 +00:00
appendInfoList,
newInfo
2019-10-08 05:34:37 +00:00
} from './actions';
2019-10-08 04:18:05 +00:00
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
2019-10-10 04:35:32 +00:00
import { RoomInfo } from '@ucap-webmessenger/protocol-room';
2019-10-08 04:18:05 +00:00
@Injectable()
export class Effects {
selectedRoomForInfo$ = createEffect(() =>
this.actions$.pipe(
ofType(ChatStore.selectedRoom),
map(action => {
return info({
roomSeq: action.roomSeq,
baseSeq: 0,
requestCount: 50
});
})
)
);
info$ = createEffect(
() => {
let infoList: Info[];
return this.actions$.pipe(
ofType(info),
tap(() => {
infoList = [];
}),
switchMap(req => {
return this.eventProtocolService.info(req).pipe(
map(res => {
2019-10-10 03:14:01 +00:00
switch (res.SSVC_TYPE) {
2019-10-08 04:18:05 +00:00
case SSVC_TYPE_EVENT_INFO_DATA:
infoList.push(...(res as InfoData).infoList);
break;
case SSVC_TYPE_EVENT_INFO_RES:
this.store.dispatch(
infoSuccess({
infoList,
res: res as InfoResponse
})
);
break;
}
}),
catchError(error => of(infoFailure({ error })))
);
})
);
},
{ dispatch: false }
);
2019-10-08 05:34:37 +00:00
send$ = createEffect(() =>
this.actions$.pipe(
ofType(send),
2019-10-08 05:59:22 +00:00
exhaustMap(action =>
this.eventProtocolService.send(action.req).pipe(
2019-10-08 05:34:37 +00:00
map((res: SendResponse) => {
return sendSuccess({
2019-10-08 05:59:22 +00:00
senderSeq: action.senderSeq,
2019-10-08 05:34:37 +00:00
res
});
}),
catchError(error => of(sendFailure({ error })))
)
)
)
);
2019-10-08 05:59:22 +00:00
sendSuccess$ = createEffect(
() => {
return this.actions$.pipe(
ofType(sendSuccess),
tap(action => {
const res = action.res;
const appendInfo: Info = {
seq: res.seq,
type: res.eventType,
senderSeq: action.senderSeq,
sendDate: res.sendDate,
sentMessage: res.message,
receiverCount: res.receiverCount
};
2019-10-10 04:35:32 +00:00
this.store.dispatch(
newInfo({ roomSeq: res.roomSeq, info: appendInfo })
);
})
);
},
{ dispatch: false }
);
newInfo$ = createEffect(
() => {
return this.actions$.pipe(
ofType(newInfo),
withLatestFrom(
this.store.pipe(
select((state: any) => state.messenger.room.roomInfo as RoomInfo)
)
),
tap(([action, roomInfo]) => {
2019-10-11 04:17:52 +00:00
if (!!roomInfo && roomInfo.roomSeq === action.roomSeq) {
2019-10-10 04:35:32 +00:00
this.store.dispatch(appendInfoList({ info: action.info }));
}
2019-10-10 05:50:58 +00:00
this.store.dispatch(ChatStore.newEventMessage(action));
2019-10-08 05:59:22 +00:00
})
);
},
{ dispatch: false }
);
2019-10-08 04:18:05 +00:00
constructor(
private actions$: Actions,
private store: Store<any>,
private eventProtocolService: EventProtocolService,
private sessionStorageService: SessionStorageService,
private logger: NGXLogger
) {}
}