2019-10-18 00:48:38 +00:00
|
|
|
import { UserSelectDialogType } from './../../../types/userselect.dialog.type';
|
2019-11-08 04:35:39 +00:00
|
|
|
import { Component, OnInit, Output, EventEmitter } from '@angular/core';
|
2019-10-16 08:46:53 +00:00
|
|
|
import { NGXLogger } from 'ngx-logger';
|
|
|
|
import { ucapAnimations, DialogService } from '@ucap-webmessenger/ui';
|
|
|
|
import {
|
|
|
|
CreateChatDialogComponent,
|
|
|
|
CreateChatDialogData,
|
|
|
|
CreateChatDialogResult
|
2019-10-17 00:18:55 +00:00
|
|
|
} from '@app/layouts/messenger/dialogs/chat/create-chat.dialog.component';
|
2019-10-17 06:06:38 +00:00
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { Store, select } from '@ngrx/store';
|
|
|
|
|
|
|
|
import * as AppStore from '@app/store';
|
2019-10-17 09:05:44 +00:00
|
|
|
import * as ChatStore from '@app/store/messenger/chat';
|
2019-11-04 08:52:47 +00:00
|
|
|
import * as SyncStore from '@app/store/messenger/sync';
|
2019-10-22 08:49:18 +00:00
|
|
|
import { UserInfo } from '@ucap-webmessenger/protocol-sync';
|
|
|
|
import {
|
|
|
|
UserInfoSS,
|
|
|
|
UserInfoF,
|
|
|
|
UserInfoDN
|
|
|
|
} from '@ucap-webmessenger/protocol-query';
|
2019-11-04 08:52:47 +00:00
|
|
|
import { MatTabChangeEvent, MatTabGroup } from '@angular/material';
|
|
|
|
|
|
|
|
export enum MainMenu {
|
|
|
|
Group = 'GROUP',
|
|
|
|
Chat = 'CAHT',
|
|
|
|
Organization = 'ORGANIZATION',
|
|
|
|
Call = 'CALL',
|
|
|
|
Conversation = 'CONVERSATION'
|
|
|
|
}
|
2019-09-23 05:23:24 +00:00
|
|
|
|
|
|
|
@Component({
|
2019-09-26 02:11:22 +00:00
|
|
|
selector: 'app-layout-messenger-left-side',
|
|
|
|
templateUrl: './left-side.component.html',
|
|
|
|
styleUrls: ['./left-side.component.scss'],
|
2019-09-23 05:23:24 +00:00
|
|
|
animations: ucapAnimations
|
|
|
|
})
|
2019-09-26 02:11:22 +00:00
|
|
|
export class LeftSideComponent implements OnInit {
|
2019-11-08 04:35:39 +00:00
|
|
|
@Output()
|
|
|
|
openProfile = new EventEmitter<
|
|
|
|
UserInfo | UserInfoSS | UserInfoF | UserInfoDN
|
|
|
|
>();
|
|
|
|
|
2019-10-17 06:06:38 +00:00
|
|
|
badgeChatUnReadCount$: Observable<number>;
|
|
|
|
|
2019-10-22 08:49:18 +00:00
|
|
|
/** 조직도에서 부서원 선택 */
|
|
|
|
selectedUserList: (UserInfo | UserInfoSS | UserInfoF | UserInfoDN)[] = [];
|
|
|
|
|
2019-10-30 09:18:35 +00:00
|
|
|
/** FAB */
|
2019-11-04 08:52:47 +00:00
|
|
|
fabButtonShow = true;
|
2019-10-31 01:26:47 +00:00
|
|
|
fabButtons: { icon: string; tooltip?: string; divisionType?: string }[];
|
2019-10-30 09:18:35 +00:00
|
|
|
|
2019-11-04 08:52:47 +00:00
|
|
|
MainMenu = MainMenu;
|
|
|
|
|
2019-10-16 08:46:53 +00:00
|
|
|
constructor(
|
2019-10-17 06:06:38 +00:00
|
|
|
private store: Store<any>,
|
2019-10-16 08:46:53 +00:00
|
|
|
private dialogService: DialogService,
|
|
|
|
private logger: NGXLogger
|
|
|
|
) {}
|
2019-09-23 05:23:24 +00:00
|
|
|
|
2019-10-17 06:06:38 +00:00
|
|
|
ngOnInit() {
|
|
|
|
this.badgeChatUnReadCount$ = this.store.pipe(
|
|
|
|
select(AppStore.MessengerSelector.SyncSelector.selectChatUnreadCount)
|
|
|
|
);
|
2019-11-04 08:52:47 +00:00
|
|
|
|
|
|
|
this.setFabInitial(MainMenu.Group);
|
2019-10-17 06:06:38 +00:00
|
|
|
}
|
2019-10-16 08:46:53 +00:00
|
|
|
|
2019-10-31 06:05:59 +00:00
|
|
|
async onClickNewChat(type: string = 'NORMAL') {
|
2019-10-16 08:46:53 +00:00
|
|
|
const result = await this.dialogService.open<
|
|
|
|
CreateChatDialogComponent,
|
|
|
|
CreateChatDialogData,
|
|
|
|
CreateChatDialogResult
|
|
|
|
>(CreateChatDialogComponent, {
|
2019-10-18 00:48:38 +00:00
|
|
|
width: '600px',
|
2019-10-16 08:46:53 +00:00
|
|
|
data: {
|
2019-10-18 00:48:38 +00:00
|
|
|
type: UserSelectDialogType.NewChat,
|
2019-10-31 06:05:59 +00:00
|
|
|
title: type === 'TIMER' ? 'New Timer Chat' : 'New Chat'
|
2019-10-16 08:46:53 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-10-17 09:05:44 +00:00
|
|
|
if (!!result && !!result.choice && result.choice) {
|
|
|
|
if (!!result.selectedUserList && result.selectedUserList.length > 0) {
|
|
|
|
const userSeqs: number[] = [];
|
|
|
|
result.selectedUserList.map(user => userSeqs.push(user.seq));
|
2019-10-16 08:46:53 +00:00
|
|
|
|
2019-10-31 06:05:59 +00:00
|
|
|
if (type === 'NORMAL') {
|
|
|
|
this.store.dispatch(ChatStore.openRoom({ userSeqList: userSeqs }));
|
|
|
|
} else if (type === 'TIMER') {
|
|
|
|
this.store.dispatch(
|
|
|
|
ChatStore.openRoom({ userSeqList: userSeqs, isTimeRoom: true })
|
|
|
|
);
|
|
|
|
}
|
2019-10-17 09:05:44 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-16 08:46:53 +00:00
|
|
|
}
|
2019-10-22 08:49:18 +00:00
|
|
|
|
2019-11-04 08:52:47 +00:00
|
|
|
async onClickNewGroupAndMember() {
|
|
|
|
const result = await this.dialogService.open<
|
|
|
|
CreateChatDialogComponent,
|
|
|
|
CreateChatDialogData,
|
|
|
|
CreateChatDialogResult
|
|
|
|
>(CreateChatDialogComponent, {
|
|
|
|
width: '600px',
|
|
|
|
data: {
|
|
|
|
type: UserSelectDialogType.NewGroup,
|
|
|
|
title: 'New Group'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!!result && !!result.choice && result.choice) {
|
|
|
|
if (
|
|
|
|
!!result.selectedUserList &&
|
|
|
|
result.selectedUserList.length > 0 &&
|
|
|
|
result.groupName.trim().length > 0
|
|
|
|
) {
|
|
|
|
const userSeqs: number[] = [];
|
|
|
|
result.selectedUserList.map(user => userSeqs.push(user.seq));
|
|
|
|
|
|
|
|
this.store.dispatch(
|
|
|
|
SyncStore.createGroupAndBuddy({
|
|
|
|
groupName: result.groupName,
|
|
|
|
trgtUserSeq: userSeqs
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-08 04:35:39 +00:00
|
|
|
onClickOpenProfile(userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN) {
|
|
|
|
this.openProfile.emit(userInfo);
|
|
|
|
}
|
|
|
|
|
2019-11-04 08:52:47 +00:00
|
|
|
onSelectedTabChange(event: MatTabChangeEvent) {
|
|
|
|
this.setFabInitial(event.tab.ariaLabel);
|
|
|
|
}
|
|
|
|
setFabInitial(type: string) {
|
|
|
|
switch (type) {
|
|
|
|
case MainMenu.Group:
|
|
|
|
{
|
|
|
|
this.fabButtonShow = true;
|
|
|
|
this.fabButtons = [
|
|
|
|
{
|
|
|
|
icon: 'add',
|
|
|
|
tooltip: 'New Group Add',
|
|
|
|
divisionType: 'GROUP_NEW_ADD'
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MainMenu.Chat:
|
|
|
|
{
|
|
|
|
this.fabButtonShow = true;
|
|
|
|
this.fabButtons = [
|
|
|
|
{
|
|
|
|
icon: 'timer',
|
|
|
|
tooltip: 'New Timer Chat',
|
|
|
|
divisionType: 'CHAT_NEW_TIMER_ADD'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'chat',
|
|
|
|
tooltip: 'New Chat',
|
|
|
|
divisionType: 'CAHT_NEW_ADD'
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// case MainMenu.Organization:
|
|
|
|
// {
|
|
|
|
|
|
|
|
// }
|
|
|
|
// break;
|
|
|
|
// case MainMenu.Call:
|
|
|
|
// {
|
|
|
|
|
|
|
|
// }
|
|
|
|
// break;
|
|
|
|
|
|
|
|
default: {
|
|
|
|
this.fabButtonShow = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 08:07:45 +00:00
|
|
|
onCheckAllUser(params: {
|
|
|
|
isChecked: boolean;
|
|
|
|
userInfos: (UserInfo | UserInfoSS | UserInfoF | UserInfoDN)[];
|
|
|
|
}) {
|
|
|
|
params.userInfos.forEach(userInfo => {
|
|
|
|
if (params.isChecked) {
|
|
|
|
if (
|
|
|
|
this.selectedUserList.filter(user => user.seq === userInfo.seq)
|
|
|
|
.length === 0
|
|
|
|
) {
|
|
|
|
this.selectedUserList = [...this.selectedUserList, userInfo];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.selectedUserList = this.selectedUserList.filter(
|
|
|
|
user => user.seq !== userInfo.seq
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-22 08:49:18 +00:00
|
|
|
/** 조직도>부서원 :: 리스트의 checkbox 의 이벤트를 받아 선택된 유저리스트를 수집. */
|
|
|
|
onCheckUser(params: {
|
|
|
|
isChecked: boolean;
|
|
|
|
userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN;
|
|
|
|
}) {
|
|
|
|
if (params.isChecked) {
|
|
|
|
if (
|
2019-10-29 08:07:45 +00:00
|
|
|
params.userInfo &&
|
2019-10-22 08:49:18 +00:00
|
|
|
this.selectedUserList.filter(user => user.seq === params.userInfo.seq)
|
2019-10-29 08:07:45 +00:00
|
|
|
.length === 0
|
2019-10-22 08:49:18 +00:00
|
|
|
) {
|
|
|
|
this.selectedUserList = [...this.selectedUserList, params.userInfo];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.selectedUserList = this.selectedUserList.filter(
|
2019-10-29 08:07:45 +00:00
|
|
|
user => user.seq !== params.userInfo.seq
|
2019-10-22 08:49:18 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-10-30 09:18:35 +00:00
|
|
|
|
|
|
|
/** FAB */
|
2019-10-31 01:26:47 +00:00
|
|
|
onClickFab(params: { btn: any }) {
|
|
|
|
const btn = params.btn as {
|
|
|
|
icon: string;
|
|
|
|
tooltip?: string;
|
|
|
|
divisionType?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (btn.divisionType) {
|
2019-11-04 08:52:47 +00:00
|
|
|
case 'GROUP_NEW_ADD':
|
|
|
|
{
|
|
|
|
this.onClickNewGroupAndMember();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'CAHT_NEW_ADD':
|
2019-10-31 01:26:47 +00:00
|
|
|
{
|
2019-10-31 06:05:59 +00:00
|
|
|
this.onClickNewChat('NORMAL');
|
2019-10-31 01:26:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-11-04 08:52:47 +00:00
|
|
|
case 'CHAT_NEW_TIMER_ADD':
|
2019-10-31 01:26:47 +00:00
|
|
|
{
|
2019-10-31 06:05:59 +00:00
|
|
|
this.onClickNewChat('TIMER');
|
2019-10-31 01:26:47 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-10-30 09:18:35 +00:00
|
|
|
}
|
2019-09-23 05:23:24 +00:00
|
|
|
}
|