|
@@ -1,7 +1,7 @@
|
|
|
// chapter-generator.page.ts
|
|
|
-import { Component, OnInit } from '@angular/core';
|
|
|
+import { Component } from '@angular/core';
|
|
|
import { FormsModule } from '@angular/forms'; // 导入 FormsModule
|
|
|
-import { IonRouterOutlet, NavController } from '@ionic/angular/standalone';
|
|
|
+import { IonRouterOutlet } from '@ionic/angular/standalone';
|
|
|
import { addIcons } from 'ionicons';
|
|
|
import { chevronForward } from 'ionicons/icons';
|
|
|
import { IonicModule, ModalController } from '@ionic/angular';
|
|
@@ -22,31 +22,17 @@ addIcons({ chevronForward });
|
|
|
IonRouterOutlet, CommonModule, IonicModule, AiExpandModalComponent, AiPolishModalComponent, AiContinueModalComponent
|
|
|
]
|
|
|
})
|
|
|
-export class ChapterGeneratorPage implements OnInit {
|
|
|
- chapters: { title: string, content: string }[] = [];
|
|
|
+export class ChapterGeneratorPage {
|
|
|
+ chapters = [
|
|
|
+ { title: 'Chapter 1', content: '这是第一章的内容。' },
|
|
|
+ // 其他章节...
|
|
|
+ ];
|
|
|
isSideShow: boolean = true;
|
|
|
selectedChapterIndex: number | null = null;
|
|
|
selectedChapterTitle: string = '';
|
|
|
selectedChapterContent: string = '';
|
|
|
- novelTitle: string = '';
|
|
|
- workId: string | null = null;
|
|
|
|
|
|
- constructor(
|
|
|
- private modalCtrl: ModalController,
|
|
|
- private navCtrl: NavController
|
|
|
- ) { }
|
|
|
-
|
|
|
- ngOnInit() {
|
|
|
- // 从本地存储获取当前作品信息
|
|
|
- const currentWork = localStorage.getItem('currentWork');
|
|
|
- if (currentWork) {
|
|
|
- const work = JSON.parse(currentWork);
|
|
|
- this.workId = work.id;
|
|
|
- this.novelTitle = work.title;
|
|
|
- this.chapters = work.chapters;
|
|
|
- this.selectChapter(0); // 默认选择第一个章节
|
|
|
- }
|
|
|
- }
|
|
|
+ constructor(private modalCtrl: ModalController) { }
|
|
|
|
|
|
async openAiExpandModal() {
|
|
|
const modal = await this.modalCtrl.create({
|
|
@@ -126,37 +112,4 @@ export class ChapterGeneratorPage implements OnInit {
|
|
|
this.selectedChapterContent += text; // 更新显示的内容
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- saveWork() {
|
|
|
- if (!this.workId) {
|
|
|
- // 如果没有 workId,则创建一个新的作品
|
|
|
- this.workId = Date.now().toString(); // 使用当前时间戳作为唯一ID
|
|
|
- }
|
|
|
-
|
|
|
- const work = {
|
|
|
- id: this.workId,
|
|
|
- cover: 'default-cover.jpg', // 默认封面,可以根据需要修改
|
|
|
- title: this.novelTitle,
|
|
|
- createTime: new Date(),
|
|
|
- type: '长篇小说',
|
|
|
- chapters: this.chapters,
|
|
|
- };
|
|
|
-
|
|
|
- // 从本地存储获取所有作品信息
|
|
|
- const existingWorks = JSON.parse(localStorage.getItem('works') || '[]');
|
|
|
-
|
|
|
- // 找到并更新对应的作品信息
|
|
|
- const workIndex = existingWorks.findIndex((w: { id: string | null; }) => w.id === this.workId);
|
|
|
- if (workIndex !== -1) {
|
|
|
- existingWorks[workIndex] = work;
|
|
|
- } else {
|
|
|
- existingWorks.push(work);
|
|
|
- }
|
|
|
-
|
|
|
- // 将更新后的工作信息存储在本地存储
|
|
|
- localStorage.setItem('works', JSON.stringify(existingWorks));
|
|
|
-
|
|
|
- // 跳转到home页面
|
|
|
- this.navCtrl.navigateRoot(['/']);
|
|
|
- }
|
|
|
}
|