Send webtrix documents on chat from gabinete digital process

This commit is contained in:
Eudes Inácio
2022-05-20 15:54:35 +01:00
parent 6b5a2169ed
commit fe7dd8f45a
4 changed files with 29 additions and 1 deletions
@@ -44,6 +44,7 @@ export class NewGroupPage implements OnInit {
}
ngOnInit() {
console.log(this.documents)
}
@@ -86,6 +87,7 @@ export class NewGroupPage implements OnInit {
this.addContacts(res.result);
this.wsChatMethodsService.subscribeToRoomUpdate(res.result.rid, res.result);
console.log(res.result.rid)
//this.addGroupMessage.emit(res.result.rid);
}
@@ -692,6 +692,8 @@ export class ExpedienteDetailPage implements OnInit {
this.newGroup();
}
else {
console.log(this.task)
console.log(this.fulltask)
this.dataService.set("newGroup", true);
this.dataService.set("task", this.task);
this.dataService.set("newGroupName", this.task.Folio);
@@ -159,6 +159,7 @@ export class GroupMessagesPage implements OnInit, OnChanges, AfterViewInit, OnDe
}
ngOnInit() {
console.log(this.roomId)
this.loggedUser = this.loggedUserChat;
setTimeout(() => {
this.getRoomInfo();
@@ -362,7 +363,7 @@ export class GroupMessagesPage implements OnInit, OnChanges, AfterViewInit, OnDe
this.chatService.getAllUsers().subscribe(res => {
//
this.allUsers = res['users'].filter(data => data.username != this.loggedUserChat.me.username);
this.allUsers = res['users'].filter(data => data.username != SessionStore.user.UserName);
//
});
}
@@ -107,7 +107,30 @@ export class NewGroupPage implements OnInit{
}
this.wsChatMethodsService.subscribeToRoomUpdate(res.result.rid, res.result);
console.log(res.result.rid)
console.log(this.documents)
this.addGroupMessage.emit(res.result.rid);
this.documents.forEach(element => {
this.wsChatMethodsService.getGroupRoom(res.result.rid).send({
file: {
"name": element.Assunto,
"type": "application/webtrix",
"ApplicationId": element.ApplicationId,
"DocId": element.DocId,
"Assunto": element.Assunto,
},
temporaryData: res,
attachments: [{
"title": element.Assunto,
"description": element.Assunto,
"title_link_download": true,
"type": "webtrix",
"text": element.Assunto,
"thumb_url": "https://static.ichimura.ed.jp/uploads/2017/10/pdf-icon.png",
}],
})
});
this.wsChatMethodsService.getAllRooms()
}