234 lines
7.2 KiB
TypeScript
234 lines
7.2 KiB
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
OnDestroy,
|
|
Output,
|
|
EventEmitter
|
|
} from '@angular/core';
|
|
import { Subscription, of } from 'rxjs';
|
|
import { Store, select } from '@ngrx/store';
|
|
import { tap, map, catchError } from 'rxjs/operators';
|
|
|
|
import * as AppStore from '@app/store';
|
|
|
|
import { UserInfo } from '@ucap-webmessenger/protocol-room';
|
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
|
import { KEY_VER_INFO } from '@app/types/ver-info.type';
|
|
import { DialogService } from '@ucap-webmessenger/ui';
|
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
|
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
|
import {
|
|
MessageApiService,
|
|
MessageType,
|
|
RetrieveRequest,
|
|
MessageList
|
|
} from '@ucap-webmessenger/api-message';
|
|
import { DeviceType } from '@ucap-webmessenger/core';
|
|
import { MessageStatusCode } from '@ucap-webmessenger/api';
|
|
import { ContentType } from '@ucap-webmessenger/api-message';
|
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
|
|
@Component({
|
|
selector: 'app-layout-chat-right-drawer-message-box',
|
|
templateUrl: './message-box.component.html',
|
|
styleUrls: ['./message-box.component.scss']
|
|
})
|
|
export class MessageBoxComponent implements OnInit, OnDestroy {
|
|
fgSearch: FormGroup;
|
|
|
|
userInfoList: UserInfo[];
|
|
userInfoListSubscription: Subscription;
|
|
|
|
loginRes: LoginResponse;
|
|
sessionVerinfo: VersionInfo2Response;
|
|
|
|
messageList: MessageList[] = [];
|
|
|
|
messageRecieveListSubscription: Subscription;
|
|
messageSendListSubscription: Subscription;
|
|
messageReservationListSubscription: Subscription;
|
|
messageSearchListSubscription: Subscription;
|
|
|
|
defaultPageSize = 100; // default
|
|
recieveCurrentPage = 0; // start index is 0.
|
|
sendCurrentPage = 0; // start index is 0.
|
|
reservationCurrentPage = 0; // start index is 0.
|
|
searchCurrentPage = 0; // start index is 0.
|
|
|
|
currentTotalCount = 0;
|
|
currentPage = 0;
|
|
|
|
ContentType = ContentType;
|
|
|
|
constructor(
|
|
private store: Store<any>,
|
|
private formBuilder: FormBuilder,
|
|
private sessionStorageService: SessionStorageService,
|
|
private dialogService: DialogService,
|
|
private messageApiService: MessageApiService
|
|
) {
|
|
this.loginRes = this.sessionStorageService.get<LoginResponse>(
|
|
KEY_LOGIN_RES_INFO
|
|
);
|
|
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
|
|
KEY_VER_INFO
|
|
);
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.fgSearch = this.formBuilder.group({
|
|
searchInput: null
|
|
});
|
|
|
|
this.userInfoListSubscription = this.store
|
|
.pipe(
|
|
select(AppStore.MessengerSelector.RoomSelector.selectUserinfolist),
|
|
tap(userInfoList => {
|
|
this.userInfoList = userInfoList;
|
|
})
|
|
)
|
|
.subscribe();
|
|
|
|
// 초기 검색은 수신함.
|
|
this.getRetrieveMessage(MessageType.Receive, this.recieveCurrentPage);
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
if (!!this.userInfoListSubscription) {
|
|
this.userInfoListSubscription.unsubscribe();
|
|
}
|
|
if (!!this.messageRecieveListSubscription) {
|
|
this.messageRecieveListSubscription.unsubscribe();
|
|
}
|
|
if (!!this.messageSendListSubscription) {
|
|
this.messageSendListSubscription.unsubscribe();
|
|
}
|
|
if (!!this.messageReservationListSubscription) {
|
|
this.messageReservationListSubscription.unsubscribe();
|
|
}
|
|
if (!!this.messageSearchListSubscription) {
|
|
this.messageSearchListSubscription.unsubscribe();
|
|
}
|
|
}
|
|
|
|
onSelectedIndexChange(value: number) {
|
|
switch (value) {
|
|
case 0:
|
|
{
|
|
// Recieve
|
|
this.getRetrieveMessage(MessageType.Receive, this.recieveCurrentPage);
|
|
}
|
|
break;
|
|
case 1:
|
|
{
|
|
// Send
|
|
this.getRetrieveMessage(MessageType.Send, this.sendCurrentPage);
|
|
}
|
|
break;
|
|
case 2:
|
|
{
|
|
// Reservation
|
|
this.getRetrieveMessage(
|
|
MessageType.Reservation,
|
|
this.reservationCurrentPage
|
|
);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
onKeyDownEnter(event: KeyboardEvent, search: string) {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
|
|
onClickSearchCancel() {}
|
|
|
|
getRetrieveMessage(type: MessageType, trgtPageIndex: number) {
|
|
switch (type) {
|
|
case MessageType.Receive:
|
|
{
|
|
this.messageSendListSubscription = this.messageApiService
|
|
.retrieveReceiveMessage({
|
|
userSeq: this.loginRes.userSeq,
|
|
deviceType: DeviceType.PC,
|
|
tokenKey: this.loginRes.tokenString,
|
|
type: MessageType.Receive,
|
|
pageSize: this.defaultPageSize,
|
|
pageCount: this.recieveCurrentPage
|
|
} as RetrieveRequest)
|
|
.pipe(
|
|
map(res => {
|
|
console.log(res);
|
|
if (res.responseCode === MessageStatusCode.Success) {
|
|
this.currentTotalCount = res.totalCount;
|
|
this.currentPage = res.pageCount;
|
|
this.recieveCurrentPage = res.pageCount;
|
|
this.messageList = res.messageList;
|
|
} else {
|
|
}
|
|
}),
|
|
catchError(error => of(console.log(error)))
|
|
)
|
|
.subscribe();
|
|
}
|
|
break;
|
|
case MessageType.Send:
|
|
{
|
|
this.messageSendListSubscription = this.messageApiService
|
|
.retrieveSendMessage({
|
|
userSeq: this.loginRes.userSeq,
|
|
deviceType: DeviceType.PC,
|
|
tokenKey: this.loginRes.tokenString,
|
|
type: MessageType.Send,
|
|
pageSize: this.defaultPageSize,
|
|
pageCount: this.sendCurrentPage
|
|
} as RetrieveRequest)
|
|
.pipe(
|
|
map(res => {
|
|
console.log(res);
|
|
if (res.responseCode === MessageStatusCode.Success) {
|
|
this.currentTotalCount = res.totalCount;
|
|
this.currentPage = res.pageCount;
|
|
this.sendCurrentPage = res.pageCount;
|
|
this.messageList = res.messageList;
|
|
} else {
|
|
}
|
|
}),
|
|
catchError(error => of(console.log(error)))
|
|
)
|
|
.subscribe();
|
|
}
|
|
break;
|
|
case MessageType.Reservation:
|
|
{
|
|
this.messageSendListSubscription = this.messageApiService
|
|
.retrieveReservationMessage({
|
|
userSeq: this.loginRes.userSeq,
|
|
deviceType: DeviceType.PC,
|
|
tokenKey: this.loginRes.tokenString,
|
|
type: MessageType.Reservation,
|
|
pageSize: this.defaultPageSize,
|
|
pageCount: this.reservationCurrentPage
|
|
} as RetrieveRequest)
|
|
.pipe(
|
|
map(res => {
|
|
console.log(res);
|
|
if (res.responseCode === MessageStatusCode.Success) {
|
|
this.currentTotalCount = res.totalCount;
|
|
this.currentPage = res.pageCount;
|
|
this.reservationCurrentPage = res.pageCount;
|
|
this.messageList = res.messageList;
|
|
} else {
|
|
}
|
|
}),
|
|
catchError(error => of(console.log(error)))
|
|
)
|
|
.subscribe();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|