2021-08-20 11:58:28 +01:00
|
|
|
import { AfterViewChecked, Component, ElementRef, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges, ViewChild } from '@angular/core';
|
2021-08-19 17:01:24 +01:00
|
|
|
import { AnimationController, ModalController, PopoverController } from '@ionic/angular';
|
2021-04-13 14:14:55 +01:00
|
|
|
import { AlertService } from 'src/app/services/alert.service';
|
2021-03-04 18:49:50 +01:00
|
|
|
import { AuthService } from 'src/app/services/auth.service';
|
|
|
|
|
import { ChatService } from 'src/app/services/chat.service';
|
2021-07-12 11:13:29 +01:00
|
|
|
import { ToastService } from 'src/app/services/toast.service';
|
2021-03-04 18:49:50 +01:00
|
|
|
import { ChatOptionsPopoverPage } from 'src/app/shared/popover/chat-options-popover/chat-options-popover.page';
|
|
|
|
|
import { MessagesOptionsPage } from 'src/app/shared/popover/messages-options/messages-options.page';
|
2021-03-12 11:56:54 +01:00
|
|
|
import { ContactsPage } from '../new-group/contacts/contacts.page';
|
2021-07-26 19:31:19 +01:00
|
|
|
import { Router } from '@angular/router';
|
2021-08-19 09:10:38 +01:00
|
|
|
import { connection } from 'src/app/services/socket/synchro.service';
|
2021-08-18 18:58:02 +01:00
|
|
|
import { ChatOptionsFeaturesPage } from 'src/app/modals/chat-options-features/chat-options-features.page';
|
2021-03-04 18:49:50 +01:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-messages',
|
|
|
|
|
templateUrl: './messages.page.html',
|
|
|
|
|
styleUrls: ['./messages.page.scss'],
|
|
|
|
|
})
|
2021-03-12 11:56:54 +01:00
|
|
|
export class MessagesPage implements OnInit, AfterViewChecked, OnChanges {
|
2021-03-04 18:49:50 +01:00
|
|
|
showLoader: boolean;
|
|
|
|
|
|
|
|
|
|
@ViewChild('scrollMe') private myScrollContainer: ElementRef;
|
|
|
|
|
|
|
|
|
|
loggedUser: any;
|
|
|
|
|
|
|
|
|
|
message = '';
|
|
|
|
|
messages:any;
|
|
|
|
|
dm:any;
|
|
|
|
|
userPresence='';
|
|
|
|
|
dmUsers:any;
|
2021-07-26 19:31:19 +01:00
|
|
|
checktimeOut: boolean;
|
2021-08-20 11:58:28 +01:00
|
|
|
members:any;
|
2021-03-04 18:49:50 +01:00
|
|
|
|
2021-03-12 11:56:54 +01:00
|
|
|
@Input() roomId:string;
|
2021-07-26 19:31:19 +01:00
|
|
|
@Input() showMessages:string;
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-08-20 11:58:28 +01:00
|
|
|
@Output() openNewEventPage:EventEmitter<any> = new EventEmitter<any>();
|
|
|
|
|
|
2021-08-19 09:10:38 +01:00
|
|
|
|
|
|
|
|
connection = connection
|
2021-08-20 11:24:42 +01:00
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
constructor(
|
|
|
|
|
public popoverController: PopoverController,
|
|
|
|
|
private modalController: ModalController,
|
2021-03-12 11:56:54 +01:00
|
|
|
/* private navParams: NavParams, */
|
2021-03-04 18:49:50 +01:00
|
|
|
private chatService: ChatService,
|
|
|
|
|
private authService: AuthService,
|
2021-03-18 09:25:59 +01:00
|
|
|
private animationController: AnimationController,
|
2021-04-13 14:14:55 +01:00
|
|
|
private alertService: AlertService,
|
2021-07-12 11:13:29 +01:00
|
|
|
private toastService: ToastService,
|
2021-07-26 19:31:19 +01:00
|
|
|
private route: Router
|
2021-07-23 14:43:51 +01:00
|
|
|
) {
|
|
|
|
|
this.loggedUser = authService.ValidatedUserChat['data'];
|
|
|
|
|
|
2021-03-12 11:56:54 +01:00
|
|
|
/* this.dm = this.navParams.get('dm'); */
|
|
|
|
|
}
|
|
|
|
|
ngOnChanges(changes: SimpleChanges): void {
|
2021-07-26 13:01:13 +01:00
|
|
|
this.load();
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-12 11:56:54 +01:00
|
|
|
//throw new Error('Method not implemented.');
|
2021-03-04 18:49:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
|
2021-07-26 09:44:11 +01:00
|
|
|
this.scrollToBottom();
|
2021-03-04 18:49:50 +01:00
|
|
|
|
|
|
|
|
/* setInterval(()=>{ */
|
|
|
|
|
this.load();
|
|
|
|
|
/* }, 9000); */
|
2021-03-12 11:56:54 +01:00
|
|
|
console.log(this.roomId);
|
2021-07-26 19:31:19 +01:00
|
|
|
console.log("Chat route", this.route.url)
|
2021-07-26 15:56:57 +01:00
|
|
|
|
2021-07-26 19:31:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnDestroy(){
|
|
|
|
|
this.checktimeOut = false;
|
|
|
|
|
console.log('On Destroy')
|
2021-03-04 18:49:50 +01:00
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-04-13 14:14:55 +01:00
|
|
|
notImplemented(){
|
|
|
|
|
this.alertService.presentAlert('Funcionalidade em desenvolvimento');
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-19 11:32:08 +01:00
|
|
|
load = ()=>{
|
2021-07-26 19:31:19 +01:00
|
|
|
this.checktimeOut = true;
|
2021-07-26 15:56:57 +01:00
|
|
|
this.serverLongPull();
|
2021-03-04 18:49:50 +01:00
|
|
|
this.getChatMembers();
|
|
|
|
|
}
|
2021-03-12 11:56:54 +01:00
|
|
|
|
|
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
doRefresh(ev:any){
|
|
|
|
|
this.load();
|
|
|
|
|
ev.target.complete();
|
|
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
|
|
|
|
ngAfterViewChecked() {
|
2021-07-26 20:52:03 +01:00
|
|
|
//this.scrollToBottom();
|
2021-07-23 14:43:51 +01:00
|
|
|
}
|
2021-07-12 11:13:29 +01:00
|
|
|
|
2021-07-26 09:44:11 +01:00
|
|
|
scrollToBottom(): void {
|
2021-03-04 18:49:50 +01:00
|
|
|
try {
|
2021-07-12 11:13:29 +01:00
|
|
|
this.myScrollContainer.nativeElement.scrollTop = this.myScrollContainer.nativeElement.scrollHeight;
|
2021-07-23 14:43:51 +01:00
|
|
|
} catch(err) { }
|
2021-07-12 11:13:29 +01:00
|
|
|
finally {
|
|
|
|
|
}
|
2021-07-26 09:44:11 +01:00
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-08-20 11:58:28 +01:00
|
|
|
openBookMeetingComponent(){
|
|
|
|
|
let data = {
|
|
|
|
|
roomId: this.roomId,
|
|
|
|
|
members: this.members
|
|
|
|
|
}
|
|
|
|
|
this.openNewEventPage.emit(data);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-19 09:10:38 +01:00
|
|
|
sendMessage() {
|
|
|
|
|
|
|
|
|
|
this.connection.$send({})
|
2021-03-04 18:49:50 +01:00
|
|
|
|
|
|
|
|
let body = {
|
2021-07-23 14:43:51 +01:00
|
|
|
"message":
|
|
|
|
|
{
|
|
|
|
|
"rid": this.roomId, "msg": this.message
|
2021-03-04 18:49:50 +01:00
|
|
|
}
|
|
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
this.chatService.sendMessage(body).subscribe(res=> {
|
|
|
|
|
});
|
|
|
|
|
this.message = "";
|
|
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
loadMessages(){
|
2021-07-26 10:52:14 +01:00
|
|
|
//this.showLoader = true;
|
2021-03-12 11:56:54 +01:00
|
|
|
this.chatService.getRoomMessages(this.roomId).subscribe(res => {
|
2021-07-26 12:12:59 +01:00
|
|
|
console.log(res);
|
2021-03-04 18:49:50 +01:00
|
|
|
this.messages = res['messages'].reverse();
|
|
|
|
|
console.log(this.messages);
|
2021-07-26 15:56:57 +01:00
|
|
|
//this.serverLongPull(res)
|
2021-07-26 10:52:14 +01:00
|
|
|
/* this.chatService.subscribe(this.roomId).then(res => {
|
|
|
|
|
console.log("Real fake msg", res)
|
|
|
|
|
}); */
|
|
|
|
|
//this.showLoader = false;
|
2021-03-04 18:49:50 +01:00
|
|
|
})
|
|
|
|
|
}
|
2021-07-26 10:52:14 +01:00
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
getChatMembers(){
|
2021-03-12 11:56:54 +01:00
|
|
|
console.log(this.roomId);
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-07-26 12:12:59 +01:00
|
|
|
//this.showLoader = true;
|
2021-03-12 11:56:54 +01:00
|
|
|
this.chatService.getMembers(this.roomId).subscribe(res=> {
|
2021-08-20 11:58:28 +01:00
|
|
|
this.members = res['members'];
|
2021-03-04 18:49:50 +01:00
|
|
|
this.dmUsers = res['members'].filter(data => data.username != this.loggedUser.me.username)
|
|
|
|
|
console.log(res);
|
|
|
|
|
console.log(this.dmUsers);
|
|
|
|
|
this.showLoader = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async openMessagesOptions(ev: any) {
|
|
|
|
|
const popover = await this.popoverController.create({
|
|
|
|
|
component: MessagesOptionsPage,
|
|
|
|
|
componentProps: {
|
|
|
|
|
roomId: this.dm._id,
|
|
|
|
|
},
|
|
|
|
|
cssClass: 'messages-options',
|
|
|
|
|
event: ev,
|
|
|
|
|
translucent: true,
|
|
|
|
|
});
|
|
|
|
|
return await popover.present();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async addContacts(){
|
|
|
|
|
const modal = await this.modalController.create({
|
|
|
|
|
component: ContactsPage,
|
2021-07-23 14:43:51 +01:00
|
|
|
componentProps: {},
|
2021-03-04 18:49:50 +01:00
|
|
|
cssClass: 'contacts',
|
|
|
|
|
backdropDismiss: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await modal.present();
|
|
|
|
|
|
|
|
|
|
modal.onDidDismiss();
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 14:56:53 +01:00
|
|
|
openSendMessageOptions(ev?:any){
|
2021-08-18 18:58:02 +01:00
|
|
|
if(window.innerWidth < 701){
|
2021-03-18 16:30:03 +01:00
|
|
|
console.log('mobile');
|
|
|
|
|
this.openChatOptions(ev);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
console.log('desktop');
|
|
|
|
|
this._openChatOptions();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
async openChatOptions(ev: any) {
|
|
|
|
|
const popover = await this.popoverController.create({
|
|
|
|
|
component: ChatOptionsPopoverPage,
|
|
|
|
|
cssClass: 'chat-options-popover',
|
|
|
|
|
event: ev,
|
|
|
|
|
translucent: true
|
|
|
|
|
});
|
|
|
|
|
return await popover.present();
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 09:25:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
async _openMessagesOptions() {
|
|
|
|
|
|
|
|
|
|
const enterAnimation = (baseEl: any) => {
|
|
|
|
|
const backdropAnimation = this.animationController.create()
|
|
|
|
|
.addElement(baseEl.querySelector('ion-backdrop')!)
|
|
|
|
|
.fromTo('opacity', '0.01', 'var(--backdrop-opacity)');
|
|
|
|
|
|
|
|
|
|
const wrapperAnimation = this.animationController.create()
|
|
|
|
|
.addElement(baseEl.querySelector('.modal-wrapper')!)
|
|
|
|
|
.keyframes([
|
|
|
|
|
{ offset: 0, opacity: '1', right: '-100%' },
|
|
|
|
|
{ offset: 1, opacity: '1', right: '0px' }
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return this.animationController.create()
|
|
|
|
|
.addElement(baseEl)
|
|
|
|
|
.easing('ease-out')
|
|
|
|
|
.duration(500)
|
|
|
|
|
.addAnimation([backdropAnimation, wrapperAnimation]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const leaveAnimation = (baseEl: any) => {
|
|
|
|
|
return enterAnimation(baseEl).direction('reverse');
|
|
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-18 09:25:59 +01:00
|
|
|
|
|
|
|
|
/* const popover = await this.popoverController.create({
|
|
|
|
|
component: MessagesOptionsPage,
|
|
|
|
|
componentProps: {
|
|
|
|
|
roomId: this.dm._id,
|
|
|
|
|
},
|
|
|
|
|
cssClass: 'messages-options',
|
|
|
|
|
event: ev,
|
|
|
|
|
translucent: true,
|
|
|
|
|
});
|
|
|
|
|
return await popover.present(); */
|
|
|
|
|
|
|
|
|
|
const modal = await this.modalController.create({
|
|
|
|
|
enterAnimation,
|
|
|
|
|
leaveAnimation,
|
|
|
|
|
component: MessagesOptionsPage,
|
|
|
|
|
cssClass: 'model profile-modal search-submodal',
|
|
|
|
|
componentProps: {
|
|
|
|
|
roomId: this.roomId,
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return await modal.present();
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-18 16:30:03 +01:00
|
|
|
|
|
|
|
|
async _openChatOptions() {
|
|
|
|
|
|
|
|
|
|
const enterAnimation = (baseEl: any) => {
|
|
|
|
|
const backdropAnimation = this.animationController.create()
|
|
|
|
|
.addElement(baseEl.querySelector('ion-backdrop')!)
|
|
|
|
|
.fromTo('opacity', '0.01', 'var(--backdrop-opacity)');
|
|
|
|
|
|
|
|
|
|
const wrapperAnimation = this.animationController.create()
|
|
|
|
|
.addElement(baseEl.querySelector('.modal-wrapper')!)
|
|
|
|
|
.keyframes([
|
|
|
|
|
{ offset: 0, opacity: '1', right: '-100%' },
|
|
|
|
|
{ offset: 1, opacity: '1', right: '0px' }
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return this.animationController.create()
|
|
|
|
|
.addElement(baseEl)
|
|
|
|
|
.easing('ease-out')
|
|
|
|
|
.duration(500)
|
|
|
|
|
.addAnimation([backdropAnimation, wrapperAnimation]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const leaveAnimation = (baseEl: any) => {
|
|
|
|
|
return enterAnimation(baseEl).direction('reverse');
|
|
|
|
|
}
|
2021-07-23 14:43:51 +01:00
|
|
|
|
2021-03-18 16:30:03 +01:00
|
|
|
const modal = await this.modalController.create({
|
|
|
|
|
enterAnimation,
|
|
|
|
|
leaveAnimation,
|
2021-08-18 18:58:02 +01:00
|
|
|
component: ChatOptionsFeaturesPage,
|
2021-03-18 16:30:03 +01:00
|
|
|
cssClass: 'model profile-modal search-submodal',
|
|
|
|
|
componentProps: {
|
|
|
|
|
roomId: this.roomId,
|
2021-08-20 11:58:28 +01:00
|
|
|
members: this.members,
|
2021-03-18 16:30:03 +01:00
|
|
|
}
|
|
|
|
|
});
|
2021-08-20 11:58:28 +01:00
|
|
|
await modal.present();
|
|
|
|
|
modal.onDidDismiss().then((res)=>{
|
|
|
|
|
console.log(res['data']);
|
|
|
|
|
if(res['data'] == 'meeting'){
|
|
|
|
|
//this.closeAllDesktopComponents.emit();
|
|
|
|
|
let data = {
|
|
|
|
|
roomId: this.roomId,
|
|
|
|
|
members: this.members
|
|
|
|
|
}
|
|
|
|
|
this.openNewEventPage.emit(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
2021-03-18 16:30:03 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-19 13:00:20 +01:00
|
|
|
async serverLongPull(){
|
2021-07-26 15:56:57 +01:00
|
|
|
this.chatService.getRoomMessages(this.roomId).subscribe(async res => {
|
|
|
|
|
|
2021-08-19 13:00:20 +01:00
|
|
|
if (res == 502) {
|
|
|
|
|
// Connection timeout
|
|
|
|
|
// happens when the connection was pending for too long
|
|
|
|
|
// let's reconnect
|
|
|
|
|
await this.serverLongPull();
|
|
|
|
|
} else if (res != 200) {
|
|
|
|
|
// Show Error
|
|
|
|
|
//showMessage(response.statusText);
|
|
|
|
|
//this.loadMessages()
|
|
|
|
|
this.messages = res['messages'].reverse();
|
|
|
|
|
console.log(this.messages);
|
|
|
|
|
// Reconnect in one second
|
|
|
|
|
if(this.route.url != "/home/chat"){
|
|
|
|
|
console.log("Timer message stop")
|
2021-07-26 19:31:19 +01:00
|
|
|
} else {
|
2021-08-20 11:24:42 +01:00
|
|
|
if(document.querySelector('app-messages')){
|
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 5000));
|
|
|
|
|
await this.serverLongPull();
|
|
|
|
|
console.log('Timer message running')
|
|
|
|
|
}
|
2021-07-26 19:31:19 +01:00
|
|
|
}
|
2021-08-19 13:00:20 +01:00
|
|
|
} else {
|
|
|
|
|
// Got message
|
|
|
|
|
//let message = await response.text();
|
|
|
|
|
//this.loadMessages()
|
|
|
|
|
await this.serverLongPull();
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-07-26 10:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-04 18:49:50 +01:00
|
|
|
}
|
2021-03-12 11:56:54 +01:00
|
|
|
|