19136808282 3 сар өмнө
parent
commit
4fbf657d8d

+ 118 - 0
.history/docs-prod/schema_20241218212656.md

@@ -0,0 +1,118 @@
+# 类图
+```plantuml
+' 聊天项目类图英文版
+@startuml
+class User { 
+    + objectId: String //用户唯一标识符
+    + name: String //用户名
+    + password: String //用户密码
+    + email: String //用户邮箱
+    + avatar: String //用户头像
+    + bio: String //用户个人简介
+    + startChat(): void 
+    + chooseChatPartner(): String
+    + summarizeChatHistory(): void
+}
+
+' Store information about chat partners
+class ChatPartner {
+    + objectId: String //陪聊师唯一标识符
+    + name: String //陪聊师姓名
+    + expertise: String //陪聊师专业领域(普通陪聊师可为空)
+    + avatar: String //陪聊师头像
+    + bio: String //陪聊师个人简介
+    + provideChat(): String 
+}
+
+' Record chat history between users and chat partners
+class ChatRecord {
+    + objectId: String //聊天记录唯一标识符
+    + title:String //聊天标题
+    + timestamp: Date //聊天时间
+    + content:String //聊天内容
+    - chatList: Array //聊天记录
+    + user: Pointer<User> //关联的用户对象
+    + chatpartner: Pointer<ChatPartner> //关联的聊天机器人对象
+    + getChatHistory(): List
+}
+
+' Record generated reports
+class Report {
+    + objectId: String //报告唯一标识符
+    - analysisResult: String //分析结果
+    + generateReport(): String //生成报告的方法
+}
+
+User "1" --> "*" ChatRecord     
+ChatPartner "1" --> "*" ChatRecord 
+ChatRecord "1" -- "1" Report      
+@enduml
+```
+# 时序图
+```plantuml
+@startuml
+actor 用户
+participant "专业陪聊师" as 专业陪聊师
+participant "普通陪聊师" as 普通陪聊师
+participant "聊天记录" as 聊天记录
+participant "报告" as 报告
+
+用户 -> 用户: 选择陪聊师()
+alt 选择专业陪聊师
+    用户 -> 专业陪聊师: 提供聊天()
+else 选择普通陪聊师
+    用户 -> 普通陪聊师: 提供聊天()
+end
+用户 -> 用户: 开始聊天()
+用户 -> 聊天记录: 总结聊天记录()
+聊天记录 -> 聊天记录: 获取聊天记录()
+
+聊天记录 -> 报告: 生成报告()
+报告 -> 用户: 返回分析报告
+
+@enduml
+```
+
+# 状态图
+```plantuml
+@startuml
+[*] --> 选择陪聊师
+
+选择陪聊师 -->  聊天中: 开始聊天
+聊天中 --> 继续聊天 : 选择继续聊天
+聊天中 --> 退出聊天 : 选择退出聊天
+退出聊天 --> 总结中 : 总结聊天记录
+
+总结中 --> 生成报告 : 生成分析报告
+生成报告 --> 生成失败 : 报告生成失败
+生成报告 --> 生成成功 : 报告生成成功
+
+生成成功 --> [*] : 聊天结束
+生成失败 --> 生成报告 : 重新生成
+@enduml
+```
+
+# 活动图
+```plantuml
+@startuml
+|用户|
+start
+:发送消息;
+|专业陪聊机器人|
+:回复消息;
+|用户|
+repeat
+if (继续聊天?) then (是)
+    |用户|
+    :发送消息;
+    |专业陪聊机器人|
+    :回复消息;
+else (否)
+    |管理员|
+    :记录消息;
+    stop
+endif
+repeat while (回复消息)
+@enduml
+
+```

+ 261 - 0
.history/docs-prod/schema_20241219200049.md

@@ -0,0 +1,261 @@
+# //陪聊部分
+# 类图
+```plantuml
+' 聊天项目类图英文版
+@startuml
+class User { 
+    + objectId: String //用户唯一标识符
+    + name: String //用户名
+    + password: String //用户密码
+    + email: String //用户邮箱
+    + avatar: String //用户头像
+    + bio: String //用户个人简介
+    + startChat(): void 
+    + chooseChatPartner(): String
+    + summarizeChatHistory(): void
+}
+
+' Store information about chat partners
+class ChatPartner {
+    + objectId: String //陪聊师唯一标识符
+    + name: String //陪聊师姓名
+    + expertise: String //陪聊师专业领域(普通陪聊师可为空)
+    + avatar: String //陪聊师头像
+    + bio: String //陪聊师个人简介
+    + provideChat(): String 
+}
+
+' Record chat history between users and chat partners
+class ChatRecord {
+    + objectId: String //聊天记录唯一标识符
+    + title:String //聊天标题
+    + timestamp: Date //聊天时间
+    + content:String //聊天内容
+    - chatList: Array //聊天记录
+    + user: Pointer<User> //关联的用户对象
+    + chatpartner: Pointer<ChatPartner> //关联的聊天机器人对象
+    + getChatHistory(): List
+}
+
+' Record generated reports
+class Report {
+    + objectId: String //报告唯一标识符
+    - analysisResult: String //分析结果
+    + generateReport(): String //生成报告的方法
+}
+
+User "1" --> "*" ChatRecord     
+ChatPartner "1" --> "*" ChatRecord 
+ChatRecord "1" -- "1" Report      
+@enduml
+```
+# 时序图
+```plantuml
+@startuml
+actor 用户
+participant "专业陪聊师" as 专业陪聊师
+participant "普通陪聊师" as 普通陪聊师
+participant "聊天记录" as 聊天记录
+participant "报告" as 报告
+
+用户 -> 用户: 选择陪聊师()
+alt 选择专业陪聊师
+    用户 -> 专业陪聊师: 提供聊天()
+else 选择普通陪聊师
+    用户 -> 普通陪聊师: 提供聊天()
+end
+用户 -> 用户: 开始聊天()
+用户 -> 聊天记录: 总结聊天记录()
+聊天记录 -> 聊天记录: 获取聊天记录()
+
+聊天记录 -> 报告: 生成报告()
+报告 -> 用户: 返回分析报告
+
+@enduml
+```
+
+# 状态图
+```plantuml
+@startuml
+[*] --> 选择陪聊师
+
+选择陪聊师 -->  聊天中: 开始聊天
+聊天中 --> 继续聊天 : 选择继续聊天
+聊天中 --> 退出聊天 : 选择退出聊天
+退出聊天 --> 总结中 : 总结聊天记录
+
+总结中 --> 生成报告 : 生成分析报告
+生成报告 --> 生成失败 : 报告生成失败
+生成报告 --> 生成成功 : 报告生成成功
+
+生成成功 --> [*] : 聊天结束
+生成失败 --> 生成报告 : 重新生成
+@enduml
+```
+
+# 活动图
+```plantuml
+@startuml
+|用户|
+start
+:发送消息;
+|专业陪聊机器人|
+:回复消息;
+|用户|
+repeat
+if (继续聊天?) then (是)
+    |用户|
+    :发送消息;
+    |专业陪聊机器人|
+    :回复消息;
+else (否)
+    |管理员|
+    :记录消息;
+    stop
+endif
+repeat while (回复消息)
+@enduml
+
+```
+
+# //社区部分
+
+
+# 用例图
+```plantuml
+@startuml
+actor 学生用户
+actor 学校管理员
+
+rectangle "心理社区" {
+    学生用户 -- (填写心理普查问卷)
+    学生用户 -- (使用心理测试)
+    学校管理员 -- (发布心理普查问卷)
+    学校管理员 -- (发布心理活动通知)
+    学校管理员 -- (设置星标用户)
+}
+
+@enduml
+```
+# 类图
+
+```plantuml
+@startuml
+class 用户 {
+    +用户ID: String
+    +用户名: String
+    +密码: String
+    +电子邮件: String
+    +角色: String
+    +注册账户(): void
+    +登录(): void
+    +填写心理测试(): void
+}
+
+class 心理社区 {
+    +社区ID: String
+    +话题: String
+    +帖子: List<帖子>
+    +加入社区(): void
+    +发布消息(): void
+}
+
+class 帖子 {
+    +帖子ID: String
+    +内容: String
+    +作者: 用户
+    +时间戳: Date
+}
+
+class 心理活动 {
+    +活动ID: String
+    +标题: String
+    +描述: String
+    +日期: Date
+    +地点: String
+    +发布活动(): void
+}
+
+class 心理普查问卷 {
+    +问卷ID: String
+    +内容: String
+    +发布者: 学校管理员
+    +填写结果: List<用户>
+    +发布问卷(): void
+    +分析结果(): void
+}
+
+class 学校管理员 {
+    +管理员ID: String
+    +姓名: String
+    +邮箱: String
+    +发布心理活动(): void
+    +发布心理普查问卷(): void
+    +分析问卷结果(): void
+    +设置星标用户(): void
+}
+
+用户 "1" -- "0..*" 心理社区
+心理社区 "1" -- "0..*" 帖子
+心理活动 "1" -- "0..*" 用户
+学校管理员 "1" -- "0..*" 心理活动
+学校管理员 "1" -- "0..*" 心理普查问卷
+心理普查问卷 "1" -- "0..*" 用户
+@enduml
+```
+
+# 时序图
+
+```mermaid
+sequenceDiagram
+    participant Admin as 学校管理员
+    participant Student as 学生用户
+    participant System as 系统
+
+    Admin->>System: 发布心理普查问卷
+    Student->>System: 填写心理普查问卷
+    System->>Admin: 收集问卷结果
+    Admin->>System: 分析问卷结果
+    alt 心理健康有问题的学生人数达到阈值
+        System->>Admin: 发布心理团辅
+        System->>Student: 升级为心理星标用户
+    end
+    Admin->>System: 制定后续心理活动
+    System->>Student: 通知学生参与活动
+    Student->>System: 使用心理测试
+```
+# 活动图
+
+```mermaid
+graph TD
+    A[开始] --> B[发布心理普查问卷]
+    B --> C[学生填写问卷]
+    C --> D[提交问卷]
+    D --> E[学校管理员分析结果]
+    E --> F{心理健康有问题的学生人数达到阈值?}
+    F -->|是| G[发布心理团辅]
+    F -->|否| H[继续监控]
+    G --> I[通知学生参与团辅]
+    E --> J[设置星标用户]
+    J --> K
+    H --> K
+    I --> K[结束]
+```
+
+# 状态图
+```mermaid
+stateDiagram-v2
+    [*] --> 发布问卷
+    发布问卷 --> 问卷收集中: 学生填写问卷
+    问卷收集中 --> 结果分析中: 提交问卷
+    结果分析中 --> 后续活动设计中: 学校管理员查看分析
+    结果分析中 --> 初期活动发布中: 心理状况有问题学生人数达到阈值
+    初期活动发布中 --> 团辅进行中: 发布心理团辅
+    初期活动发布中 --> 升级星标用户: 升级为心理星标用户
+    后续活动设计中 --> 后续活动开展中: 发布后续活动
+    后续活动开展中 --> [*]
+    团辅进行中 --> [*]
+    升级星标用户 --> [*]
+    
+```
+

+ 30 - 0
.history/soul-app/src/app/page-psysurvey/page-psysurvey.component_20241219161716.ts

@@ -0,0 +1,30 @@
+import { CommonModule } from '@angular/common';
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router';
+import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList, 
+  IonListHeader,IonCardHeader,IonCardTitle,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar } from '@ionic/angular/standalone';
+
+@Component({
+  selector: 'app-page-psysurvey',
+  templateUrl: './page-psysurvey.component.html',
+  styleUrls: ['./page-psysurvey.component.scss'],
+  standalone: true,
+  imports: [IonHeader,IonToolbar,IonTitle,IonContent,
+      IonList,IonListHeader,IonItem,IonCardTitle,
+      IonLabel,IonIcon,IonButton,IonCardContent,
+      IonInput,IonSearchbar,IonCard,IonCardHeader,
+      CommonModule
+    ]
+})
+export class PagePsysurveyComponent  implements OnInit {
+
+  constructor(private router: Router) { }
+  goTab1(){
+    this.router.navigate(['tabs/tab1']);
+   }
+   goPublishSurvey(){
+    this.router.navigate(['tabs/page-publishsurvey'])
+   }
+  ngOnInit() {}
+
+}

+ 59 - 0
.history/soul-app/src/app/page-publishsurvey/page-publishsurvey.component_20241219161522.ts

@@ -0,0 +1,59 @@
+import { Component, OnInit,NgModule } from '@angular/core';
+import { Router } from '@angular/router';
+import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList, 
+  IonListHeader,IonCardHeader,IonCardTitle,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption } from '@ionic/angular/standalone';
+  import { CommonModule } from '@angular/common';
+  import { FormsModule } from '@angular/forms';
+
+@Component({
+  selector: 'app-page-publishsurvey',
+  templateUrl: './page-publishsurvey.component.html',
+  styleUrls: ['./page-publishsurvey.component.scss'],
+  standalone: true,
+  imports: [
+
+    IonHeader,IonToolbar,IonTitle,IonContent,IonSegment,IonSegmentButton,IonSelect,IonSelectOption,
+    IonList,IonListHeader,IonItem,IonCardTitle,
+    IonLabel,IonIcon,IonButton,IonCardContent,
+    IonInput,IonSearchbar,IonCard,IonCardHeader,
+    CommonModule,FormsModule
+  ]
+})
+
+
+export class PagePublishsurveyComponent  implements OnInit {
+  category: string = 'school'; // 默认类别
+  surveyTitle: string = '';
+  surveyLink: string = '';
+  targetAudience: string = 'all'; // 默认面向对象
+  societySurveyTitle: string = '';
+  societySurveyLink: string = '';
+
+  onCategoryChange() {
+    console.log(`当前选择的类别: ${this.category}`);
+  }
+
+  publishSurvey() {
+    console.log('发布学校问卷:');
+    console.log(`标题: ${this.surveyTitle}`);
+    console.log(`链接: ${this.surveyLink}`);
+    console.log(`面向对象: ${this.targetAudience}`);
+    // 这里可以添加逻辑将问卷发布到后端或其他处理
+  }
+
+  publishSocietySurvey() {
+    console.log('发布社会问卷:');
+    console.log(`标题: ${this.societySurveyTitle}`);
+    console.log(`链接: ${this.societySurveyLink}`);
+    // 这里可以添加逻辑将问卷发布到后端或其他处理
+  }
+
+  constructor(private router: Router) { }
+  goTab1(){
+    this.router.navigate(['tabs/tab1']);
+   }
+
+
+  ngOnInit() {}
+
+}

+ 63 - 0
.history/soul-app/src/app/page-publishsurvey/page-publishsurvey.component_20241219161802.html

@@ -0,0 +1,63 @@
+<ion-header>
+  <ion-toolbar>
+    <div class="toolbar-content">
+      <div class="button-container">
+        <ion-button (click)="goTab1()" fill="clear">
+          <ion-icon name="chevron-back" slot="start"></ion-icon>返回
+        </ion-button>
+      </div>
+      <ion-title class="title-text">
+        发布问卷
+      </ion-title>
+    </div>
+  </ion-toolbar>
+</ion-header>
+
+<ion-content [fullscreen]="true">
+  <ion-segment [(ngModel)]="category" (ionChange)="onCategoryChange()">
+    <ion-segment-button value="school">
+      学校
+    </ion-segment-button>
+    <ion-segment-button value="society">
+      社会
+    </ion-segment-button>
+  </ion-segment>
+
+  <div *ngIf="category === 'school'">
+    <ion-item>
+      <ion-label position="floating">问卷标题</ion-label>
+      <ion-input [(ngModel)]="surveyTitle"></ion-input>
+    </ion-item>
+
+    <ion-item>
+      <ion-label position="floating">问卷链接</ion-label>
+      <ion-input [(ngModel)]="surveyLink"></ion-input>
+    </ion-item>
+
+    <ion-item>
+      <ion-label>面向对象</ion-label>
+      <ion-select [(ngModel)]="targetAudience">
+        <ion-select-option value="all">全校学生</ion-select-option>
+        <ion-select-option value="software">软件学院</ion-select-option>
+        <ion-select-option value="music">音乐学院</ion-select-option>
+      </ion-select>
+    </ion-item>
+
+    <ion-button expand="full" (click)="publishSurvey()">发布问卷</ion-button>
+  </div>
+
+  <div *ngIf="category === 'society'">
+    <!-- 社会问卷设置格式 -->
+    <ion-item>
+      <ion-label position="floating">社会问卷标题</ion-label>
+      <ion-input [(ngModel)]="societySurveyTitle"></ion-input>
+    </ion-item>
+
+    <ion-item>
+      <ion-label position="floating">社会问卷链接</ion-label>
+      <ion-input [(ngModel)]="societySurveyLink"></ion-input>
+    </ion-item>
+
+    <ion-button expand="full" (click)="publishSocietySurvey()">发布社会问卷</ion-button>
+  </div>
+</ion-content>

+ 144 - 1
docs-prod/schema.md

@@ -1,3 +1,4 @@
+# //陪聊部分
 # 类图
 ```plantuml
 ' 聊天项目类图英文版
@@ -115,4 +116,146 @@ endif
 repeat while (回复消息)
 @enduml
 
-```
+```
+
+# //社区部分
+
+
+# 用例图
+```plantuml
+@startuml
+actor 学生用户
+actor 学校管理员
+
+rectangle "心理社区" {
+    学生用户 -- (填写心理普查问卷)
+    学生用户 -- (使用心理测试)
+    学校管理员 -- (发布心理普查问卷)
+    学校管理员 -- (发布心理活动通知)
+    学校管理员 -- (设置星标用户)
+}
+
+@enduml
+```
+# 类图
+
+```plantuml
+@startuml
+class 用户 {
+    +用户ID: String
+    +用户名: String
+    +密码: String
+    +电子邮件: String
+    +角色: String
+    +注册账户(): void
+    +登录(): void
+    +填写心理测试(): void
+}
+
+class 心理社区 {
+    +社区ID: String
+    +话题: String
+    +帖子: List<帖子>
+    +加入社区(): void
+    +发布消息(): void
+}
+
+class 帖子 {
+    +帖子ID: String
+    +内容: String
+    +作者: 用户
+    +时间戳: Date
+}
+
+class 心理活动 {
+    +活动ID: String
+    +标题: String
+    +描述: String
+    +日期: Date
+    +地点: String
+    +发布活动(): void
+}
+
+class 心理普查问卷 {
+    +问卷ID: String
+    +内容: String
+    +发布者: 学校管理员
+    +填写结果: List<用户>
+    +发布问卷(): void
+    +分析结果(): void
+}
+
+class 学校管理员 {
+    +管理员ID: String
+    +姓名: String
+    +邮箱: String
+    +发布心理活动(): void
+    +发布心理普查问卷(): void
+    +分析问卷结果(): void
+    +设置星标用户(): void
+}
+
+用户 "1" -- "0..*" 心理社区
+心理社区 "1" -- "0..*" 帖子
+心理活动 "1" -- "0..*" 用户
+学校管理员 "1" -- "0..*" 心理活动
+学校管理员 "1" -- "0..*" 心理普查问卷
+心理普查问卷 "1" -- "0..*" 用户
+@enduml
+```
+
+# 时序图
+
+```mermaid
+sequenceDiagram
+    participant Admin as 学校管理员
+    participant Student as 学生用户
+    participant System as 系统
+
+    Admin->>System: 发布心理普查问卷
+    Student->>System: 填写心理普查问卷
+    System->>Admin: 收集问卷结果
+    Admin->>System: 分析问卷结果
+    alt 心理健康有问题的学生人数达到阈值
+        System->>Admin: 发布心理团辅
+        System->>Student: 升级为心理星标用户
+    end
+    Admin->>System: 制定后续心理活动
+    System->>Student: 通知学生参与活动
+    Student->>System: 使用心理测试
+```
+# 活动图
+
+```mermaid
+graph TD
+    A[开始] --> B[发布心理普查问卷]
+    B --> C[学生填写问卷]
+    C --> D[提交问卷]
+    D --> E[学校管理员分析结果]
+    E --> F{心理健康有问题的学生人数达到阈值?}
+    F -->|是| G[发布心理团辅]
+    F -->|否| H[继续监控]
+    G --> I[通知学生参与团辅]
+    E --> J[设置星标用户]
+    J --> K
+    H --> K
+    I --> K[结束]
+```
+
+# 状态图
+```mermaid
+stateDiagram-v2
+    [*] --> 发布问卷
+    发布问卷 --> 问卷收集中: 学生填写问卷
+    问卷收集中 --> 结果分析中: 提交问卷
+    结果分析中 --> 后续活动设计中: 学校管理员查看分析
+    结果分析中 --> 初期活动发布中: 心理状况有问题学生人数达到阈值
+    初期活动发布中 --> 团辅进行中: 发布心理团辅
+    初期活动发布中 --> 升级星标用户: 升级为心理星标用户
+    后续活动设计中 --> 后续活动开展中: 发布后续活动
+    后续活动开展中 --> [*]
+    团辅进行中 --> [*]
+    升级星标用户 --> [*]
+    
+```
+

+ 1 - 1
soul-app/src/app/page-psysurvey/page-psysurvey.component.ts

@@ -23,7 +23,7 @@ export class PagePsysurveyComponent  implements OnInit {
     this.router.navigate(['tabs/tab1']);
    }
    goPublishSurvey(){
-    this.router.navigate(['tabs/publishsurvey'])
+    this.router.navigate(['tabs/page-publishsurvey'])
    }
   ngOnInit() {}
 

+ 2 - 2
soul-app/src/app/page-publishsurvey/page-publishsurvey.component.html

@@ -1,4 +1,4 @@
-<!-- <ion-header>
+<ion-header>
   <ion-toolbar>
     <div class="toolbar-content">
       <div class="button-container">
@@ -11,7 +11,7 @@
       </ion-title>
     </div>
   </ion-toolbar>
-</ion-header> -->
+</ion-header>
 
 <ion-content [fullscreen]="true">
   <ion-segment [(ngModel)]="category" (ionChange)="onCategoryChange()">

+ 1 - 1
soul-app/src/app/page-publishsurvey/page-publishsurvey.component.ts

@@ -16,7 +16,7 @@ import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList,
     IonList,IonListHeader,IonItem,IonCardTitle,
     IonLabel,IonIcon,IonButton,IonCardContent,
     IonInput,IonSearchbar,IonCard,IonCardHeader,
-    CommonModule,FormsModule,
+    CommonModule,FormsModule
   ]
 })