mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
func
This commit is contained in:
@@ -247,9 +247,9 @@
|
||||
[taskParticipantsCc]="taskParticipantsCc"
|
||||
[selectedDate]="eventSelectedDate"
|
||||
[eventAttendees]="contacts"
|
||||
(onAddEvent)="closeNewEventComponent()"
|
||||
(onAddEvent)="closeNewEventComponentAndOpenChat($event)"
|
||||
(openAttendeesComponent)="openAttendeesComponent($event)"
|
||||
(cloneAllmobileComponent)="closeNewEventComponent()"
|
||||
(cloneAllmobileComponent)="closeNewEventComponentAndOpenChat($event)"
|
||||
[style.display]="showNewEvent ? 'flex' : 'none'"
|
||||
class=" height-100 flex-column">
|
||||
</app-new-event>
|
||||
|
||||
@@ -229,6 +229,9 @@ export class ChatPage implements OnInit {
|
||||
}
|
||||
}
|
||||
openMessagesPage(rid) {
|
||||
|
||||
this.roomId = rid;
|
||||
|
||||
if (window.innerWidth < 701) {
|
||||
this.openMessagesModal(rid);
|
||||
}
|
||||
@@ -236,7 +239,6 @@ export class ChatPage implements OnInit {
|
||||
this.idSelected = rid;
|
||||
this.closeAllDesktopComponents();
|
||||
this.showEmptyComponent = false;
|
||||
this.roomId = rid;
|
||||
this.showMessages = true;
|
||||
}
|
||||
}
|
||||
@@ -275,6 +277,8 @@ export class ChatPage implements OnInit {
|
||||
}
|
||||
|
||||
openGroupMessagesPage(rid) {
|
||||
|
||||
this.roomId = rid;
|
||||
if (window.innerWidth < 701) {
|
||||
this.openGroupMessagesModal(rid);
|
||||
}
|
||||
@@ -282,7 +286,7 @@ export class ChatPage implements OnInit {
|
||||
this.idSelected = rid;
|
||||
this.closeAllDesktopComponents();
|
||||
this.showEmptyComponent = false;
|
||||
this.roomId = rid;
|
||||
|
||||
|
||||
this.showGroupMessages = true;
|
||||
}
|
||||
@@ -339,6 +343,27 @@ export class ChatPage implements OnInit {
|
||||
this.idSelected = "";
|
||||
}
|
||||
|
||||
async closeNewEventComponentAndOpenChat() {
|
||||
this.closeAllDesktopComponents();
|
||||
this.showMessages = true
|
||||
this.showEmptyComponent = false;
|
||||
this.idSelected = this.roomId
|
||||
|
||||
this.wsChatMethodsService._group.forEach((room)=>{
|
||||
if(room.id == this.idSelected) {
|
||||
|
||||
this.showGroupMessages = true
|
||||
}
|
||||
})
|
||||
|
||||
this.wsChatMethodsService._dm.forEach((room)=>{
|
||||
if(room.id == this.idSelected) {
|
||||
this.showMessages = true
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
onSegmentChange() {
|
||||
this.wsChatMethodsService.getAllRooms();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user