|
@@ -12,6 +12,7 @@ import { InterestSearchComponent } from '../interest-search/interest-search.comp
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
import { CloudUser } from 'src/lib/ncloud';
|
|
|
import { openUserLoginModal } from 'src/lib/user/model-user-login/model-user-login.component';
|
|
|
+import { CloudQuery } from '../lib/ncloud';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-tab4',
|
|
@@ -149,6 +150,14 @@ export class tab4Page {
|
|
|
onChatSaved: (chat: FmodeChat) => {
|
|
|
// chat?.chatSession?.id 本次会话的 chatId
|
|
|
console.log("onChatSaved", chat, chat?.chatSession, chat?.chatSession?.id)
|
|
|
+ let user = new CloudUser();
|
|
|
+ let studyReport = new CloudObject("StudyReport");
|
|
|
+ studyReport.set({
|
|
|
+ user:user.toPointer(),
|
|
|
+ chatId:chat?.chatSession?.id,
|
|
|
+ messageList:chat?.messageList
|
|
|
+ })
|
|
|
+ studyReport.save();
|
|
|
}
|
|
|
}
|
|
|
openChatPanelModal(this.modalCtrl, options)
|
|
@@ -159,13 +168,20 @@ export class tab4Page {
|
|
|
* 恢复聊天
|
|
|
* @chatId 从onChatSaved生命周期中,获取chat?.chatSession?.id
|
|
|
*/
|
|
|
- async restoreChat(chatId: string) {
|
|
|
- if (await this.checkLogin()) {
|
|
|
- let options: ChatPanelOptions = {
|
|
|
- roleId: "2DXJkRsjXK",
|
|
|
- chatId: chatId
|
|
|
+ async restoreChat() {
|
|
|
+ let user = new CloudUser();
|
|
|
+ let query = new CloudQuery("StudyReport");
|
|
|
+ query.equalTo("user",user?.id)
|
|
|
+ let report = await query.first()
|
|
|
+ let chatId = report?.get('chatId')
|
|
|
+ if(chatId){
|
|
|
+ if (await this.checkLogin()) {
|
|
|
+ let options: ChatPanelOptions = {
|
|
|
+ roleId: "2DXJkRsjXK",
|
|
|
+ chatId: chatId
|
|
|
+ }
|
|
|
+ openChatPanelModal(this.modalCtrl, options)
|
|
|
}
|
|
|
- openChatPanelModal(this.modalCtrl, options)
|
|
|
}
|
|
|
}
|
|
|
|