next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/messages.component.ts

680 lines
19 KiB
TypeScript
Raw Normal View History

import {
Component,
OnInit,
OnDestroy,
ViewChild,
2019-11-01 06:06:37 +00:00
ElementRef,
AfterViewInit
} from '@angular/core';
2019-10-16 09:05:18 +00:00
import {
ucapAnimations,
SnackBarService,
ClipboardService,
DialogService,
ConfirmDialogComponent,
ConfirmDialogData,
ConfirmDialogResult,
AlertDialogComponent,
AlertDialogData,
2019-11-05 04:46:17 +00:00
AlertDialogResult,
FileUploadQueueComponent
2019-10-16 09:05:18 +00:00
} from '@ucap-webmessenger/ui';
2019-10-08 04:31:33 +00:00
import { Store, select } from '@ngrx/store';
import { NGXLogger } from 'ngx-logger';
2019-11-05 04:46:17 +00:00
import { Observable, Subscription, forkJoin, of } from 'rxjs';
2019-10-16 07:33:19 +00:00
import {
Info,
EventType,
isRecalled,
isCopyable,
isRecallable,
InfoResponse
2019-10-16 07:33:19 +00:00
} from '@ucap-webmessenger/protocol-event';
2019-10-08 04:31:33 +00:00
import * as AppStore from '@app/store';
2019-10-08 05:34:37 +00:00
import * as EventStore from '@app/store/messenger/event';
2019-10-11 09:03:01 +00:00
import * as ChatStore from '@app/store/messenger/chat';
2019-10-11 06:55:27 +00:00
import * as RoomStore from '@app/store/messenger/room';
2019-10-08 04:31:33 +00:00
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
import {
EnvironmentsInfo,
KEY_ENVIRONMENTS_INFO,
UserSelectDialogType
} from '@app/types';
import { RoomInfo, UserInfo, RoomType } from '@ucap-webmessenger/protocol-room';
2019-11-05 04:46:17 +00:00
import { tap, take, map, catchError } from 'rxjs/operators';
2019-11-01 06:06:37 +00:00
import {
FileInfo,
FormComponent as UCapUiChatFormComponent
} from '@ucap-webmessenger/ui-chat';
import { KEY_VER_INFO } from '@app/types/ver-info.type';
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
2019-10-16 07:33:19 +00:00
import { MatMenuTrigger } from '@angular/material';
2019-11-05 04:46:17 +00:00
import {
CommonApiService,
FileUploadItem,
FileTalkSaveRequest,
FileTalkSaveResponse
} from '@ucap-webmessenger/api-common';
2019-10-17 00:18:55 +00:00
import {
CreateChatDialogComponent,
CreateChatDialogData,
CreateChatDialogResult
} from '../dialogs/chat/create-chat.dialog.component';
2019-10-29 00:07:06 +00:00
import {
ImageViewerDialogComponent,
ImageViewerDialogData,
ImageViewerDialogResult
} from '@app/layouts/common/dialogs/image-viewer.dialog.component';
import { CONST } from '@ucap-webmessenger/core';
import { PerfectScrollbarComponent } from 'ngx-perfect-scrollbar';
2019-11-05 04:46:17 +00:00
import { StatusCode } from '@ucap-webmessenger/api';
@Component({
2019-09-26 02:11:22 +00:00
selector: 'app-layout-messenger-messages',
templateUrl: './messages.component.html',
styleUrls: ['./messages.component.scss'],
animations: ucapAnimations
})
2019-11-01 06:06:37 +00:00
export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
@ViewChild('messageBoxContainer', { static: true })
private messageBoxContainer: ElementRef;
2019-11-01 06:06:37 +00:00
@ViewChild('chatForm', { static: true })
private chatForm: UCapUiChatFormComponent;
2019-10-16 07:33:19 +00:00
@ViewChild('messageContextMenuTrigger', { static: true })
messageContextMenuTrigger: MatMenuTrigger;
messageContextMenuPosition = { x: '0px', y: '0px' };
@ViewChild('psChatContent', { static: true })
psChatContent: PerfectScrollbarComponent;
2019-11-05 04:46:17 +00:00
@ViewChild('fileUploadQueue', { static: true })
fileUploadQueue: FileUploadQueueComponent;
2019-10-16 09:05:18 +00:00
environmentsInfo: EnvironmentsInfo;
2019-10-08 05:59:22 +00:00
loginRes: LoginResponse;
loginResSubscription: Subscription;
2019-10-08 04:31:33 +00:00
eventList$: Observable<Info[]>;
baseEventSeq = 0;
2019-10-08 05:34:37 +00:00
roomInfo: RoomInfo;
roomInfoSubscription: Subscription;
userInfoList: UserInfo[];
userInfoListSubscription: Subscription;
2019-10-08 06:25:00 +00:00
eventListProcessing$: Observable<boolean>;
eventInfoStatus$: Observable<InfoResponse>;
eventRemain$: Observable<boolean>;
eventRemain = false;
2019-10-16 09:05:18 +00:00
sessionVerInfo: VersionInfo2Response;
2019-10-08 04:31:33 +00:00
2019-10-16 07:33:19 +00:00
isRecalledMessage = isRecalled;
isCopyableMessage = isCopyable;
isRecallableMessage = isRecallable;
/** Timer 대화방의 대화 삭제를 위한 interval */
interval: any;
2019-10-08 04:31:33 +00:00
constructor(
private store: Store<any>,
private sessionStorageService: SessionStorageService,
2019-10-16 09:05:18 +00:00
private commonApiService: CommonApiService,
private clipboardService: ClipboardService,
private dialogService: DialogService,
private snackBarService: SnackBarService,
2019-10-08 04:31:33 +00:00
private logger: NGXLogger
2019-10-16 09:05:18 +00:00
) {
this.sessionVerInfo = this.sessionStorageService.get<VersionInfo2Response>(
KEY_VER_INFO
);
this.environmentsInfo = this.sessionStorageService.get<EnvironmentsInfo>(
KEY_ENVIRONMENTS_INFO
);
}
2019-10-08 04:31:33 +00:00
ngOnInit() {
2019-10-08 05:59:22 +00:00
this.loginResSubscription = this.store
.pipe(
select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
tap(loginRes => {
this.loginRes = loginRes;
})
)
.subscribe();
2019-10-08 05:34:37 +00:00
this.roomInfoSubscription = this.store
.pipe(
select(AppStore.MessengerSelector.RoomSelector.roomInfo),
tap(roomInfo => {
this.roomInfo = roomInfo;
})
)
.subscribe();
this.userInfoListSubscription = this.store
.pipe(
2019-10-30 07:22:49 +00:00
select(AppStore.MessengerSelector.RoomSelector.selectUserinfolist),
tap(userInfoList => {
this.userInfoList = userInfoList;
})
)
.subscribe();
2019-10-08 06:25:00 +00:00
this.eventListProcessing$ = this.store.pipe(
select(AppStore.MessengerSelector.EventSelector.infoListProcessing)
);
this.eventRemain$ = this.store.pipe(
select(AppStore.MessengerSelector.EventSelector.remainInfo),
tap(remainInfo => {
this.eventRemain = remainInfo;
})
);
2019-10-08 04:31:33 +00:00
this.eventList$ = this.store.pipe(
select(AppStore.MessengerSelector.EventSelector.selectAllInfoList),
tap(infoList => {
if (!!infoList && infoList.length > 0) {
this.baseEventSeq = infoList[0].seq;
2019-11-01 06:06:37 +00:00
this.readyToReply();
}
})
2019-10-08 04:31:33 +00:00
);
this.eventInfoStatus$ = this.store.pipe(
select(AppStore.MessengerSelector.EventSelector.infoStatus)
);
this.interval = setInterval(() => {
2019-11-05 04:46:17 +00:00
if (!!this.roomInfo && !!this.roomInfo.isTimeRoom) {
this.store.dispatch(EventStore.infoIntervalClear({}));
}
}, 1000);
2019-10-08 04:31:33 +00:00
}
2019-10-08 05:34:37 +00:00
ngOnDestroy(): void {
2019-10-08 05:59:22 +00:00
if (!!this.loginResSubscription) {
this.loginResSubscription.unsubscribe();
}
2019-10-08 05:34:37 +00:00
if (!!this.roomInfoSubscription) {
this.roomInfoSubscription.unsubscribe();
}
if (!!this.userInfoListSubscription) {
this.userInfoListSubscription.unsubscribe();
}
clearInterval(this.interval);
2019-10-08 05:34:37 +00:00
}
2019-11-01 06:06:37 +00:00
ngAfterViewInit(): void {
this.readyToReply();
}
getRoomName() {
if (!this.roomInfo || !this.userInfoList) {
return '대화방명을 가져오고 있습니다..';
}
if (!!this.roomInfo.roomName && '' !== this.roomInfo.roomName.trim()) {
return this.roomInfo.roomName;
} else if (this.roomInfo.roomType === RoomType.Mytalk) {
return 'MyTalk';
} else {
return this.userInfoList
.filter(user => {
if (this.roomInfo.roomType === RoomType.Single) {
return user.seq !== this.loginRes.userSeq;
} else {
return true;
}
})
.sort((a, b) => (a.name < b.name ? -1 : a.name > b.name ? 1 : 0))
.map(user => user.name)
.join(',');
}
}
2019-10-31 06:05:59 +00:00
getConvertTimer(timerInterval: number, unit: number = 1) {
if (timerInterval >= 0 && timerInterval < 60 * unit) {
return Math.floor((timerInterval / 1) * unit) + ' 초';
} else if (timerInterval >= 60 * unit && timerInterval < 3600 * unit) {
return Math.floor(((timerInterval / 1) * unit) / 60) + ' 분';
} else if (timerInterval >= 3600 * unit && timerInterval <= 86400 * unit) {
return Math.floor(((timerInterval / 1) * unit) / 60 / 60) + ' 시간';
} else {
return '';
}
}
selectContact() {}
2019-10-08 05:34:37 +00:00
2019-11-01 06:06:37 +00:00
readyToReply(): void {
setTimeout(() => {
this.focusReplyInput();
this.scrollToBottom();
});
}
focusReplyInput(): void {
setTimeout(() => {
this.chatForm.focus();
});
}
scrollToBottom(speed?: number): void {
speed = speed || 0;
if (this.psChatContent.directiveRef) {
this.psChatContent.directiveRef.update();
setTimeout(() => {
this.psChatContent.directiveRef.scrollToBottom(0, speed);
});
}
}
async onSendMessage(message: string) {
if (!message || message.trim().length === 0) {
const result = await this.dialogService.open<
AlertDialogComponent,
AlertDialogData,
AlertDialogResult
>(AlertDialogComponent, {
width: '360px',
data: {
title: 'Alert',
message: `대화내용을 입력해주세요.`
}
});
return;
}
if (message.trim().length > CONST.MASSTEXT_LEN) {
2019-10-28 09:03:27 +00:00
// MASS TEXT
this.store.dispatch(
EventStore.sendMass({
senderSeq: this.loginRes.userSeq,
req: {
roomSeq: this.roomInfo.roomSeq,
eventType: EventType.MassText,
// sentMessage: message.replace(/\n/gi, '\r\n')
sentMessage: message
}
})
);
} else {
this.store.dispatch(
EventStore.send({
senderSeq: this.loginRes.userSeq,
req: {
roomSeq: this.roomInfo.roomSeq,
eventType: EventType.Character,
sentMessage: message
}
})
);
}
2019-10-08 05:34:37 +00:00
}
2019-10-11 06:55:27 +00:00
onClickReceiveAlarm() {
this.store.dispatch(RoomStore.updateOnlyAlarm({ roomInfo: this.roomInfo }));
}
onScrollup(event: any) {
this.onMoreEvent(this.baseEventSeq);
}
/** More Event */
onMoreEvent(seq: number) {
if (this.eventRemain) {
this.store.dispatch(
EventStore.info({
roomSeq: this.roomInfo.roomSeq,
baseSeq: seq,
requestCount: CONST.EVENT_INFO_READ_COUNT
})
);
}
}
2019-10-11 09:03:01 +00:00
/** MassText Detail View */
onMassDetail(value: number) {
this.store.dispatch(
ChatStore.selectedMassDetail({
massEventSeq: value
})
);
}
2019-10-29 00:07:06 +00:00
async onImageViewer(value: FileInfo) {
this.logger.debug('imageViewer', value);
2019-10-29 00:07:06 +00:00
const result = await this.dialogService.open<
ImageViewerDialogComponent,
ImageViewerDialogData,
ImageViewerDialogResult
>(ImageViewerDialogComponent, {
position: {
top: '30px'
2019-10-29 00:07:06 +00:00
},
maxWidth: '100vw',
maxHeight: '100vh',
height: 'calc(100% - 30px)',
2019-10-29 00:07:06 +00:00
width: '100%',
hasBackdrop: false,
2019-10-29 00:07:06 +00:00
data: {}
});
}
/** File Save, Save As */
onSave(value: { fileInfo: FileInfo; type: string }) {
this.logger.debug('fileSave', value);
}
2019-10-16 07:33:19 +00:00
2019-10-31 08:09:38 +00:00
onFileDragEnter(items: DataTransferItemList) {
this.logger.debug('onFileDragEnter', items);
2019-10-21 04:36:58 +00:00
}
onFileDragOver() {
this.logger.debug('onFileDragOver');
}
onFileDragLeave() {
this.logger.debug('onFileDragLeave');
}
2019-11-05 04:46:17 +00:00
onFileSelected(fileUploadItems: FileUploadItem[]) {
this.logger.debug('onFileSelected', fileUploadItems);
const allObservables: Observable<FileTalkSaveResponse>[] = [];
for (const fileUploadItem of fileUploadItems) {
const req: FileTalkSaveRequest = {
userSeq: this.loginRes.userSeq,
deviceType: this.environmentsInfo.deviceType,
token: this.loginRes.tokenString,
roomSeq: this.roomInfo.roomSeq,
file: fileUploadItem.file,
fileName: fileUploadItem.file.name,
fileUploadItem
};
allObservables.push(
this.commonApiService
.fileTalkSave(req, this.sessionVerInfo.uploadUrl)
.pipe(
map(res => {
if (!res) {
return;
}
if (StatusCode.Success === res.statusCode) {
return res;
} else {
throw res;
}
})
)
);
2019-10-21 04:36:58 +00:00
}
2019-11-05 04:46:17 +00:00
forkJoin(allObservables)
.pipe(take(1))
.subscribe(
resList => {
for (const res of resList) {
this.store.dispatch(
EventStore.send({
senderSeq: this.loginRes.userSeq,
req: {
roomSeq: this.roomInfo.roomSeq,
eventType: EventType.File,
sentMessage: res.returnJson
}
})
);
}
},
error => {},
() => {
this.fileUploadQueue.onUploadComplete();
}
);
2019-10-21 04:36:58 +00:00
}
2019-10-16 07:33:19 +00:00
onContextMenuMessage(params: { event: MouseEvent; message: Info }) {
params.event.preventDefault();
params.event.stopPropagation();
this.messageContextMenuPosition.x = params.event.clientX + 'px';
this.messageContextMenuPosition.y = params.event.clientY + 'px';
this.messageContextMenuTrigger.menu.focusFirstItem('mouse');
this.messageContextMenuTrigger.menuData = {
message: params.message,
loginRes: this.loginRes
};
this.messageContextMenuTrigger.openMenu();
}
2019-10-16 09:05:18 +00:00
async onClickMessageContextMenu(menuType: string, message: Info) {
2019-10-16 07:33:19 +00:00
switch (menuType) {
case 'COPY':
{
2019-10-16 09:05:18 +00:00
switch (message.type) {
case EventType.Character:
{
if (
this.clipboardService.copyFromContent(message.sentMessage)
) {
this.snackBarService.open('클립보드에 복사되었습니다.', '', {
duration: 3000,
verticalPosition: 'top',
horizontalPosition: 'center'
});
}
}
break;
case EventType.MassText:
{
this.commonApiService
.massTalkDownload({
userSeq: this.loginRes.userSeq,
deviceType: this.environmentsInfo.deviceType,
token: this.loginRes.tokenString,
eventMassSeq: message.seq
})
.pipe(take(1))
.subscribe(res => {
if (this.clipboardService.copyFromContent(res.content)) {
this.snackBarService.open(
'클립보드에 복사되었습니다.',
'',
{
duration: 3000,
verticalPosition: 'top',
horizontalPosition: 'center'
}
);
}
});
}
break;
default:
break;
}
2019-10-16 07:33:19 +00:00
}
break;
case 'REPLAY':
{
2019-10-16 09:05:18 +00:00
const result = await this.dialogService.open<
CreateChatDialogComponent,
CreateChatDialogData,
CreateChatDialogResult
>(CreateChatDialogComponent, {
width: '600px',
2019-10-16 09:05:18 +00:00
data: {
type: UserSelectDialogType.MessageForward,
title: 'MessageForward',
ignoreRoom: [this.roomInfo]
2019-10-16 09:05:18 +00:00
}
});
if (!!result && !!result.choice && result.choice) {
const userSeqs: number[] = [];
let roomSeq = '';
if (
!!result.selectedUserList &&
result.selectedUserList.length > 0
) {
result.selectedUserList.map(user => userSeqs.push(user.seq));
}
if (!!result.selectedRoom) {
roomSeq = result.selectedRoom.roomSeq;
}
if (userSeqs.length > 0 || roomSeq.trim().length > 0) {
this.store.dispatch(
EventStore.forward({
senderSeq: this.loginRes.userSeq,
req: {
roomSeq: '-999',
eventType: message.type,
sentMessage: message.sentMessage
},
trgtUserSeqs: userSeqs,
trgtRoomSeq: roomSeq
})
);
}
}
2019-10-16 07:33:19 +00:00
}
break;
case 'REPLAY_TO_ME':
{
if (this.loginRes.talkWithMeBotSeq > -1) {
this.store.dispatch(
EventStore.forward({
senderSeq: this.loginRes.userSeq,
req: {
roomSeq: '-999',
eventType: message.type,
sentMessage: message.sentMessage
},
trgtUserSeqs: [this.loginRes.talkWithMeBotSeq]
})
);
}
2019-10-16 07:33:19 +00:00
}
break;
case 'DELETE':
{
2019-10-17 00:18:55 +00:00
const result = await this.dialogService.open<
ConfirmDialogComponent,
ConfirmDialogData,
ConfirmDialogResult
>(ConfirmDialogComponent, {
2019-10-17 00:18:55 +00:00
width: '220px',
data: {
title: 'Delete',
html: `선택한 메시지를 삭제하시겠습니까?<br/>삭제된 메시지는 내 대화방에서만 적용되며 상대방의 대화방에서는 삭제되지 않습니다.`
2019-10-17 00:18:55 +00:00
}
});
if (!!result && !!result.choice && result.choice) {
this.store.dispatch(
EventStore.del({
roomSeq: this.roomInfo.roomSeq,
eventSeq: message.seq
})
);
}
2019-10-16 07:33:19 +00:00
}
break;
case 'RECALL':
{
2019-10-17 00:18:55 +00:00
const result = await this.dialogService.open<
ConfirmDialogComponent,
ConfirmDialogData,
ConfirmDialogResult
>(ConfirmDialogComponent, {
2019-10-17 00:18:55 +00:00
width: '220px',
data: {
title: 'ReCall',
html: `해당 대화를 회수하시겠습니까?<br/>상대방 대화창에서도 회수됩니다.`
2019-10-17 00:18:55 +00:00
}
});
if (!!result && !!result.choice && result.choice) {
this.store.dispatch(
EventStore.cancel({
roomSeq: this.roomInfo.roomSeq,
eventSeq: message.seq,
deviceType: this.environmentsInfo.deviceType
})
);
}
2019-10-16 07:33:19 +00:00
}
break;
default:
break;
}
}
2019-11-01 06:53:54 +00:00
async onClickContextMenu(menuType: string) {
switch (menuType) {
2019-11-01 06:53:54 +00:00
case 'ADD_MEMBER':
{
const result = await this.dialogService.open<
CreateChatDialogComponent,
CreateChatDialogData,
CreateChatDialogResult
>(CreateChatDialogComponent, {
width: '600px',
data: {
type: UserSelectDialogType.EditChatMember,
2019-11-04 02:36:58 +00:00
title: 'Edit Chat Member',
curRoomUser: this.userInfoList.filter(
user => user.seq !== this.loginRes.userSeq
)
2019-11-01 06:53:54 +00:00
}
});
if (!!result && !!result.choice && result.choice) {
const userSeqs: number[] = [];
if (
!!result.selectedUserList &&
result.selectedUserList.length > 0
) {
2019-11-04 02:36:58 +00:00
result.selectedUserList.map(user => {
userSeqs.push(user.seq);
});
2019-11-01 06:53:54 +00:00
}
2019-11-04 02:36:58 +00:00
if (userSeqs.length > 0) {
// include me
userSeqs.push(this.loginRes.userSeq);
2019-11-01 06:53:54 +00:00
2019-11-04 02:36:58 +00:00
this.store.dispatch(
RoomStore.inviteOrOpen({
req: {
divCd: 'Invite',
userSeqs
}
})
);
2019-11-01 06:53:54 +00:00
}
}
}
break;
case 'CLOSE_ROOM':
{
this.store.dispatch(ChatStore.clearSelectedRoom());
}
break;
default:
break;
}
}
}