cainiao-hue 3 months ago
parent
commit
0a3817ebb4

+ 2 - 12
soul-app/src/app/report-modal/report-modal.component.ts

@@ -35,14 +35,10 @@ export class ReportModalComponent  implements OnInit {
     // 获取当前用户的 ObjectId
     const currentUser = new CloudUser();
     await currentUser.current(); // 确保用户信息已加载
-    const userId = currentUser.id; // 获取当前用户的 ObjectId
-
     // 创建查询并添加过滤条件
     let query = new CloudQuery("ChatRecord");
     query.equalTo("user", currentUser.toPointer()); // 过滤条件,确保只获取当前用户的记录
-
     this.chatrecordList = await query.find();
-
     // 遍历 chatrecordList,去除每个记录中 user 的第一条 content
     this.chatrecordList.forEach(chatrecord => {
         const contentArray = chatrecord.get('content');
@@ -54,7 +50,7 @@ export class ReportModalComponent  implements OnInit {
             }
         }
     });
-}
+  }
   analyzeUserFeeling(content: string): { score: number; label: string } {
     const moodScores = {
       positive: {
@@ -70,9 +66,7 @@ export class ReportModalComponent  implements OnInit {
         score: -1
       }
     };
-
     let totalScore = 0;
-
     // 分析内容并计算分数
     const contentWords = content.split(/\s+/);
     contentWords.forEach(word => {
@@ -82,7 +76,6 @@ export class ReportModalComponent  implements OnInit {
         }
       }
     });
-
     // 判断心情状态
     let label = '中性';
     if (totalScore > 0) {
@@ -90,11 +83,8 @@ export class ReportModalComponent  implements OnInit {
     } else if (totalScore < 0) {
       label = '消极';
     }
-
     return { score: totalScore, label };
   }
-
-
   async ngOnInit() {
     await this.loadChatRecordList();
     // 在这里可以遍历 chatrecordList 中的用户内容并进行情感分析
@@ -107,5 +97,5 @@ export class ReportModalComponent  implements OnInit {
             }
         });
     });
-} 
+  } 
 }

+ 1 - 1
soul-app/src/app/tab1/tab1.page.html

@@ -7,7 +7,7 @@
       </ion-avatar>
  
       <!-- 搜索框 -->
-      <ion-searchbar slot="end" expand="with-icon"></ion-searchbar>
+      <ion-searchbar slot="end" expand="with-icon" [placeholder]="placeholderText" class="custom-searchbar"></ion-searchbar>
     </ion-item>
   </ion-toolbar>
 </ion-header>

+ 11 - 5
soul-app/src/app/tab1/tab1.page.ts

@@ -21,11 +21,16 @@ import { openUserLoginModal } from 'src/lib/user/modal-user-login/modal-user-log
   schemas: [CUSTOM_ELEMENTS_SCHEMA],
 })
 export class Tab1Page {
-  onSearch(event: any) {
-    const searchTerm = event.target.value; // 获取用户输入的搜索内容
-    console.log('搜索内容:', searchTerm);
-    // 在这里添加搜索逻辑,例如过滤列表或导航到搜索结果页面
+  placeholderText: string = '';
+  placeholderIndex: number = 0;
+  placeholders: string[] = ['热门话题', '心理普查', '漂流瓶','用户评价'];
+  cyclePlaceholder() {
+    setInterval(() => {
+      this.placeholderText = this.placeholders[this.placeholderIndex];
+      this.placeholderIndex = (this.placeholderIndex + 1) % this.placeholders.length;
+    }, 2000); // 每2秒切换一次
   }
+
   topics = [
     {
       id: 1,
@@ -99,7 +104,8 @@ export class Tab1Page {
     this.router.navigate([`tabs/${route}`, { id: topicId }]);
   }
   constructor(private router: Router,private modalCtrl: ModalController) {
-    // 其他构造函数代码
+    this.cyclePlaceholder();
+        // 其他构造函数代码
   }
   matchedCounselor: { content: string; rating: number } | null = null;
   review: any = { rating: 5 };  // 示例数据

+ 3 - 5
soul-app/src/app/tab2/tab2.page.ts

@@ -24,7 +24,6 @@ import { CustomerServiceComponent } from '../customer-service/customer-service.c
 })
 export class Tab2Page {
 
-  isModalOpen: boolean = false; // 定义 isModalOpen 属性
   placeholderText: string = '';
   placeholderIndex: number = 0;
   placeholders: string[] = ['智能陪聊', '普通聊天', '小贴心建议'];
@@ -50,14 +49,13 @@ export class Tab2Page {
     this.cyclePlaceholder();
   }
   matchedCounselor: { name: string; specialty: string } | null = null;
+  isModalOpen: boolean = false; // 定义 isModalOpen 属性
   async clickToConsult(chatpartner: CloudObject) {
       await this.initChat(chatpartner, true);
   }
-
   async goChat(chatcompanion: CloudObject) {
       await this.initChat(chatcompanion, false);
   }
-
   private async initChat(partner: CloudObject, isConsult: boolean) {
       // 验证用户登录
       let currentUser = new CloudUser();
@@ -106,10 +104,10 @@ export class Tab2Page {
             chat.role.set("name", partner.get("name"));
             chat.role.set("bio", partner.get("bio"));
             chat.role.set("expertise", partner.get("expertise"));
-            chat.role.set("avatar", partner.get("avatar") || "/assets/img/2.png"); // 设置聊天伙伴头像
+            chat.role.set("avatar", partner.get("avatar") || "/assets/img/2.png");
             chat.role.set("prompt", `
             # 角色设定
-            您是${partner.get("name")},一位${partner.get("bio")}的聊天伙伴,需要为用户提供陪伴和支持等积极情绪。
+            您是${partner.get("name")},一位在${partner.get("expertise")}专业领域的${partner.get("bio")}的聊天伙伴,需要为用户提供陪伴和支持等积极情绪。
             # 开始话语
             当您准备好了,可以以一个关心用户的朋友的身份,向来访的用户打招呼
             # 对话环节