Просмотр исходного кода

refactor(novel-app): 重构词条和标题相关代码

18460000105 3 месяцев назад
Родитель
Сommit
e45c580b95

+ 2 - 2
novel-app/src/app/comp-word-entry/comp-word-entry.component.html

@@ -1,7 +1,7 @@
 @for(entry of entryList;let idx = $index;track entry){
   <ion-card>
     <ion-card-header>
-          <ion-card-title>{{entry?.title || "新词条"}}
+          <ion-card-title>{{entry?.name || "新词条"}}
           <ion-button (click)="deleteEntry(idx)" color="danger">删除</ion-button>
 
           </ion-card-title>
@@ -14,7 +14,7 @@
             <ion-select-option value="道具">道具</ion-select-option>
             <ion-select-option value="场景">场景</ion-select-option>
           </ion-select>
-          <ion-input [value]="entry.title" (ionChange)="onIonChange(entry,'title',$event)" placeholder="请输入词条名称"></ion-input>
+          <ion-input [value]="entry.name" (ionChange)="onIonChange(entry,'name',$event)" placeholder="请输入词条名称"></ion-input>
         </ion-item>
         <ion-item>
           <ion-input label="标签" [value]="entry.newTag" (ionChange)="onIonChange(entry,'newTag',$event)"></ion-input>

+ 2 - 2
novel-app/src/app/comp-word-entry/comp-word-entry.component.ts

@@ -3,7 +3,7 @@ import { IonButton, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, Ion
 
 
 interface WordEntry{
-  title :string // 名称
+  name :string // 名称
   type:"人物"|"道具"|"场景" // 类型
   important:"重要"|"不重要" //  重要程度
   desc:string // 词条简介
@@ -46,7 +46,7 @@ export class CompWordEntryComponent  implements OnInit {
 
   addEntry(){
     this.entryList.push({
-      title:"",
+      name:"",
       type:"人物",
       important:"重要",
       desc:"简介"

+ 1 - 1
novel-app/src/app/short-generator/short-generator.page.html

@@ -10,7 +10,7 @@
 <ion-content class="ion-padding">
 
   <h1>标题</h1>
-  <ion-input [value]="title" placeholder="输入标题" (ionInput)="titleInput($event)"></ion-input>
+  <ion-input [value]="titlel" placeholder="输入标题" (ionInput)="titleInput($event)"></ion-input>
   <h1>要求</h1>
   <ion-input [value]="style" (ionInput)="styleInput($event)"></ion-input>
 

+ 12 - 7
novel-app/src/app/short-generator/short-generator.page.ts

@@ -57,10 +57,10 @@ export class ShortGeneratorPage implements OnInit {
   }
 
   // 用户输入提示词
-  title: string = "";
+  titlel: string = "";
   titleInput(ev: any) {
     console.log(ev.detail.value);
-    this.title = ev.detail.value;
+    this.titlel = ev.detail.value;
   }
 
   style: string = "玄幻";
@@ -72,10 +72,12 @@ export class ShortGeneratorPage implements OnInit {
   // 人物词条
   entryList: Array<any> = []
   list: any = [];
+  entry: string = ''; 
   onEntryListChange(ev: any) {
     this.entryList = ev;
     let list =JSON.stringify(this.entryList) ;
-    console.log(list)
+    console.log(list);
+
   }
   
   showEntryList() {
@@ -96,12 +98,15 @@ export class ShortGeneratorPage implements OnInit {
 
   sendMessage() {
     console.log("create");
-
+    console.log(JSON.stringify(this.entryList));
+    console.log(this.titlel);
+    this.entry = JSON.stringify(this.entryList); // 将 entryList 转换为字符串并存储在 entry 中
+    console.log(this.entry); // 输出 entry 的值
     let PromptTemplate = `
-    您作为一名专业的${this.style}作者,请您根据用户提供的标题${this.title},根据添加的词条${this.entryList},给出短篇小说大纲。
+    您作为一名专业的${this.style}作者,请您根据用户提供的标题${this.titlel},根据这个词条${this.entry}的内容,添加文章信息,并给出短篇小说大纲。
     
     `;
-
+    console.log(PromptTemplate);
     let completion = new FmodeChatCompletion([
       { role: "system", content: "" },
       { role: "user", content: PromptTemplate }
@@ -167,7 +172,7 @@ export class ShortGeneratorPage implements OnInit {
             // gender: `${this.gender}`,
             // desc: `${this.desc}`,
             // user: this.currentUser.toPointer(),
-            title: `${this.title}`,
+            title: `${this.titlel}`,
             topic: `${this.style}`,
             content2: `${this.generatedContent}`,
             date: dateStr,

+ 1 - 1
novel-app/src/app/tab2/tab2.page.ts

@@ -109,7 +109,7 @@ setSlidePosition() {
   async loadCards() {
     const query = new CloudQuery('NovelAriticle');
     this.allCards = await query.find(); 
-    console.log(this.allCards)s;
+    console.log(this.allCards);
     this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
     console.log(this.cards);
   }