|
@@ -10,6 +10,7 @@ import { ModalController } from '@ionic/angular/standalone';
|
|
|
import { CloudObject, CloudQuery, CloudUser } from 'src/lib/ncloud';
|
|
|
import { openUserLoginModal } from 'src/lib/user/modal-user-login/modal-user-login.component';
|
|
|
import { CustomerServiceComponent } from '../customer-service/customer-service.component';
|
|
|
+import { ReportModalComponent } from '../report-modal/report-modal.component';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-tab2',
|
|
@@ -45,7 +46,7 @@ export class Tab2Page {
|
|
|
});
|
|
|
return await modal.present();
|
|
|
}
|
|
|
-
|
|
|
+ private consult: any; // 这里定义你的 consult 对象
|
|
|
private modalCtrl: ModalController;
|
|
|
constructor(private router: Router,modalCtrl: ModalController) {
|
|
|
this.modalCtrl = modalCtrl;
|
|
@@ -77,7 +78,6 @@ export class Tab2Page {
|
|
|
userPrompt += `,年龄:${currentUser?.get("age")}`
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// 弹窗形式聊天:开始聊天
|
|
|
localStorage.setItem("company","E4KpGvTEto")
|
|
|
// 创建聊天记录对象
|
|
@@ -89,9 +89,6 @@ export class Tab2Page {
|
|
|
let ACL:any = {//公开访客 不可读 不可写
|
|
|
"*":{read:true,write:true}
|
|
|
}
|
|
|
- if(currentUser?.id){//当前用户 可读 可写
|
|
|
- ACL[currentUser?.id] = {read:true,write:true}
|
|
|
- }
|
|
|
|
|
|
consult.set({
|
|
|
title:`${chatpartner.get('expertise') || ""}领域聊天记录${dateStr}-${chatpartner.get('name')}`,
|
|
@@ -140,11 +137,8 @@ export class Tab2Page {
|
|
|
openChatPanelModal(this.modalCtrl,options)
|
|
|
|
|
|
}
|
|
|
-
|
|
|
matchedCounselor: { name: string; specialty: string } | null = null;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
async goChat(chatcompanion:CloudObject) {
|
|
|
// 验证用户登录
|
|
|
let currentUser = new CloudUser();
|
|
@@ -169,7 +163,7 @@ export class Tab2Page {
|
|
|
// 弹窗形式聊天:开始聊天
|
|
|
localStorage.setItem("company","E4KpGvTEto")
|
|
|
// 创建聊天记录对象
|
|
|
- let consult = new CloudObject("ChatRecord")
|
|
|
+ this.consult = new CloudObject("ChatRecord")
|
|
|
// 设置聊天记录的基本信息
|
|
|
let now = new Date();
|
|
|
let dateStr = `${now.getFullYear()}-${now.getMonth()+1}-${now.getDate()}`
|
|
@@ -177,10 +171,7 @@ export class Tab2Page {
|
|
|
let ACL:any = {//公开访客 不可读 不可写
|
|
|
"*":{read:true,write:true}
|
|
|
}
|
|
|
- if(currentUser?.id){//当前用户 可读 可写
|
|
|
- ACL[currentUser?.id] = {read:true,write:true}
|
|
|
- }
|
|
|
- consult.set({
|
|
|
+ this.consult.set({
|
|
|
title:`${chatcompanion.get('expertise') || ""}领域聊天记录${dateStr}-${chatcompanion.get('name')}`,
|
|
|
chatcompanion:chatcompanion.toPointer(),
|
|
|
user:currentUser.toPointer(),
|
|
@@ -201,7 +192,7 @@ export class Tab2Page {
|
|
|
# 角色设定
|
|
|
您是${chatcompanion.get("name")},一位${chatcompanion.get("bio")}的聊天伙伴,需要为用户提供陪伴和支持等积极情绪。
|
|
|
# 开始话语
|
|
|
- 当您准备好了,可以以一个关心用户的朋友的身份,向来访的用户打招呼。
|
|
|
+ 当您准备好了,可以以一个关心用户的朋友的身份,向来访的用户打招呼
|
|
|
# 对话环节
|
|
|
耐心与用户聊天,给人一种暖心陪伴的感觉
|
|
|
${userPrompt}
|
|
@@ -211,13 +202,16 @@ export class Tab2Page {
|
|
|
console.log("onMessage", message);
|
|
|
let content:any = message?.content
|
|
|
// 更新 consult 对象的内容
|
|
|
- consult.set({
|
|
|
- content: chat.messageList, // 直接存储数组
|
|
|
+ this.consult.set({
|
|
|
+ content: chat.messageList, // 直接存储数组
|
|
|
});
|
|
|
// 仅在内容发生变化时保存
|
|
|
- consult.save()
|
|
|
+ this.consult.save().then(() => {
|
|
|
+ // 生成聊天记录报告
|
|
|
+ this.generateReport(); // 确保此处 consult 已定义
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
- // chat?.chatSession?.id 本次会话的 chatId
|
|
|
onChatSaved:(chat:FmodeChat)=>{
|
|
|
console.log("onChatSaved",chat,chat?.chatSession,chat?.chatSession?.id)
|
|
|
}
|
|
@@ -225,8 +219,6 @@ export class Tab2Page {
|
|
|
openChatPanelModal(this.modalCtrl,options)
|
|
|
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
questions = [
|
|
|
{
|
|
|
title: '如何应对焦虑?',
|
|
@@ -244,12 +236,10 @@ export class Tab2Page {
|
|
|
expanded: false,
|
|
|
},
|
|
|
];
|
|
|
-
|
|
|
ngOnInit() {
|
|
|
this.loadChatPartnerList(),
|
|
|
this.loadChatCompanionList()
|
|
|
}
|
|
|
-
|
|
|
chatpartnerList:Array<CloudObject>=[]
|
|
|
async loadChatPartnerList(){
|
|
|
let query = new CloudQuery("ChatPartner");
|
|
@@ -260,4 +250,49 @@ export class Tab2Page {
|
|
|
let query = new CloudQuery("ChatCompanion");
|
|
|
this.chatcompanionList = await query.find()
|
|
|
}
|
|
|
+
|
|
|
+ async generateReport() {
|
|
|
+ if (!this.consult) {
|
|
|
+ console.error('Consult对象未定义');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let chatContent = this.consult.get('content') || [];
|
|
|
+ // 检查 chatContent 是否有效
|
|
|
+ let report = "聊天记录报告\n\n";
|
|
|
+ if (chatContent.length === 0) {
|
|
|
+ report += "没有聊天记录。\n\n";
|
|
|
+ } else {
|
|
|
+ chatContent.forEach((message: any, index: number) => {
|
|
|
+ report += `消息 ${index + 1}:\n\n`;
|
|
|
+ report += `内容: ${message.content}\n\n`;
|
|
|
+
|
|
|
+ // 假设有一个情感分析函数 analyzeSentiment
|
|
|
+ const sentiment = this.analyzeSentiment(message.content);
|
|
|
+ report += `心晴分析: ${sentiment}\n\n`;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // 显示报告
|
|
|
+ await this.showReportModal(report);
|
|
|
+ }
|
|
|
+ analyzeSentiment(text:String) {
|
|
|
+ // 这里可以使用简单的关键词匹配或更复杂的模型来分析情感
|
|
|
+ if (text.includes("好") || text.includes("喜欢")) {
|
|
|
+ return "积极";
|
|
|
+ } else if (text.includes("坏") || text.includes("不喜欢")) {
|
|
|
+ return "消极";
|
|
|
+ } else {
|
|
|
+ return "中性";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ extractKeywords(text:String): string[] {
|
|
|
+ // 这里可以实现简单的关键词提取逻辑
|
|
|
+ return text.split(/\s+/).filter(word => word.length > 0); // 示例:提取长度大于0的单词
|
|
|
+ }
|
|
|
+ async showReportModal(report: string) {
|
|
|
+ const modal = await this.modalCtrl.create({
|
|
|
+ component: ReportModalComponent, // 你需要创建这个组件来显示报告
|
|
|
+ componentProps: { report }
|
|
|
+ });
|
|
|
+ return await modal.present();
|
|
|
+ }
|
|
|
}
|