next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/left-sidenav/chat.component.ts

172 lines
5.0 KiB
TypeScript
Raw Normal View History

import { exit } from './../../../../store/messenger/room/actions';
import { Component, OnInit, OnDestroy, ViewChild } from '@angular/core';
import { ucapAnimations } from '@ucap-webmessenger/ui';
2019-10-02 09:09:39 +00:00
import { NGXLogger } from 'ngx-logger';
import { Store, select } from '@ngrx/store';
2019-10-16 05:53:53 +00:00
import { Subscription, combineLatest, Observable } from 'rxjs';
2019-10-10 05:50:58 +00:00
import {
RoomInfo,
UserInfoShort,
UserInfo as RoomUserInfo
} from '@ucap-webmessenger/protocol-room';
2019-10-02 09:09:39 +00:00
import * as AppStore from '@app/store';
2019-10-08 02:19:47 +00:00
import * as ChatStore from '@app/store/messenger/chat';
import * as RoomStore from '@app/store/messenger/room';
import { tap } from 'rxjs/operators';
import {
RoomUserDetailData,
RoomUserData
} from '@ucap-webmessenger/protocol-sync';
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
import { KEY_VER_INFO } from '@app/types/ver-info.type';
2019-10-16 05:53:53 +00:00
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
import { MatMenuTrigger } from '@angular/material';
@Component({
selector: 'app-layout-chat-left-sidenav-chat',
templateUrl: './chat.component.html',
styleUrls: ['./chat.component.scss'],
animations: ucapAnimations
})
2019-10-10 05:50:58 +00:00
export class ChatComponent implements OnInit, OnDestroy {
@ViewChild('chatContextMenuTrigger', { static: true })
chatContextMenuTrigger: MatMenuTrigger;
chatContextMenuPosition = { x: '0px', y: '0px' };
2019-10-10 05:50:58 +00:00
roomList: RoomInfo[];
roomUserList: RoomUserDetailData[];
roomUserShortList: RoomUserData[];
sessionVerinfo: VersionInfo2Response;
2019-10-10 05:50:58 +00:00
loginRes: LoginResponse;
loginResSubscription: Subscription;
2019-10-10 05:50:58 +00:00
roomSubscription: Subscription;
constructor(
private store: Store<any>,
private logger: NGXLogger,
private sessionStorageService: SessionStorageService
2019-10-16 06:01:16 +00:00
) {
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
KEY_VER_INFO
);
}
2019-10-02 09:09:39 +00:00
2019-10-23 06:45:48 +00:00
isSearch = false;
searchWord = '';
2019-10-02 09:09:39 +00:00
ngOnInit() {
this.roomSubscription = combineLatest([
this.store.pipe(
select(AppStore.MessengerSelector.SyncSelector.selectAllRoom)
),
this.store.pipe(
select(AppStore.MessengerSelector.SyncSelector.selectAllRoomUser)
),
this.store.pipe(
select(AppStore.MessengerSelector.SyncSelector.selectAllRoomUserShort)
)
])
2019-10-10 05:50:58 +00:00
.pipe(
tap(([room, roomUser, roomUserShort]) => {
this.roomList = room;
this.roomUserList = roomUser;
this.roomUserShortList = roomUserShort;
2019-10-10 05:50:58 +00:00
})
)
.subscribe();
this.loginResSubscription = this.store
.pipe(
select(AppStore.AccountSelector.AuthenticationSelector.loginRes),
tap(loginRes => {
this.loginRes = loginRes;
})
)
.subscribe();
2019-10-10 05:50:58 +00:00
}
ngOnDestroy(): void {
if (!!this.roomSubscription) {
this.roomSubscription.unsubscribe();
}
if (!!this.loginResSubscription) {
this.loginResSubscription.unsubscribe();
}
2019-10-02 09:09:39 +00:00
}
2019-10-08 02:19:47 +00:00
2019-10-23 06:45:48 +00:00
onKeyDownEnter(search: string) {
if (search.trim().length > 1) {
this.isSearch = true;
this.searchWord = search;
}
}
onContextMenuChat(event: MouseEvent, roomInfo: RoomInfo) {
event.preventDefault();
event.stopPropagation();
this.chatContextMenuPosition.x = event.clientX + 'px';
this.chatContextMenuPosition.y = event.clientY + 'px';
this.chatContextMenuTrigger.menu.focusFirstItem('mouse');
this.chatContextMenuTrigger.menuData = { roomInfo };
this.chatContextMenuTrigger.openMenu();
}
2019-10-08 02:19:47 +00:00
onSelectedRoom(roomInfo: RoomInfo) {
this.store.dispatch(ChatStore.selectedRoom({ roomSeq: roomInfo.roomSeq }));
}
onClickToggleAlarm(roomInfo: RoomInfo) {
this.store.dispatch(RoomStore.updateOnlyAlarm({ roomInfo }));
}
onClickExit(roomInfo: RoomInfo) {
this.store.dispatch(
RoomStore.exit({
roomSeq: roomInfo.roomSeq
})
);
}
2019-10-10 05:50:58 +00:00
2019-10-23 06:45:48 +00:00
getRoomList() {
if (this.isSearch && this.searchWord.trim().length > 0) {
return this.roomList.filter(room => {
if (room.roomName.indexOf(this.searchWord) >= 0) {
return true;
}
if (
this.getRoomUserList(room).filter(user =>
user.seq !== this.loginRes.userSeq
? user.name.indexOf(this.searchWord) >= 0
: false
).length > 0
) {
return true;
}
return false;
});
}
return this.roomList;
}
getRoomUserList(roomInfo: RoomInfo): (RoomUserInfo | UserInfoShort)[] {
if (!!this.roomUserList && 0 < this.roomUserList.length) {
const i = this.roomUserList.findIndex(
value => roomInfo.roomSeq === value.roomSeq
);
if (-1 < i) {
return this.roomUserList[i].userInfos;
}
2019-10-10 05:50:58 +00:00
}
if (!!this.roomUserShortList && 0 < this.roomUserShortList.length) {
const i = this.roomUserShortList.findIndex(
value => roomInfo.roomSeq === value.roomSeq
);
if (-1 < i) {
return this.roomUserShortList[i].userInfos;
}
2019-10-10 05:50:58 +00:00
}
}
}