chapter-generator.page.ts 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // chapter-generator.page.ts
  2. import { CommonModule } from '@angular/common';
  3. import { Component } from '@angular/core';
  4. import { FormsModule } from '@angular/forms'; // 导入 FormsModule
  5. import { IonBackButton, IonButton, IonButtons, IonContent, IonFab, IonFabButton, IonHeader, IonIcon, IonInput, IonItem, IonLabel, IonList, IonMenu, IonMenuButton, IonRouterOutlet, IonTitle, IonToolbar } from '@ionic/angular/standalone';
  6. import { addIcons } from 'ionicons';
  7. import { chevronForward } from 'ionicons/icons';
  8. addIcons({ chevronForward });
  9. @Component({
  10. selector: 'app-chapter-generator',
  11. templateUrl: './chapter-generator.page.html',
  12. styleUrls: ['./chapter-generator.page.scss'],
  13. standalone: true,
  14. imports: [
  15. FormsModule, // 添加 FormsModule
  16. IonIcon, IonRouterOutlet,
  17. IonList, IonFab, IonBackButton,
  18. IonFabButton, CommonModule,
  19. IonTitle, IonMenuButton, IonMenu,
  20. IonContent, IonItem, IonInput, IonLabel, IonButton, IonButtons, IonHeader, IonToolbar
  21. ]
  22. })
  23. export class ChapterGeneratorPage {
  24. chapters = [
  25. { title: 'Chapter 1', content: '这是第一章的内容。' },
  26. // 其他章节...
  27. ];
  28. isSideShow: boolean = true;
  29. toggleSide() {
  30. this.isSideShow = !this.isSideShow;
  31. }
  32. addChapter() {
  33. const newChapter = { title: `Chapter ${this.chapters.length + 1}`, content: '' };
  34. this.chapters.push(newChapter);
  35. this.selectChapter(this.chapters.length - 1); // 自动编辑新添加的章节
  36. }
  37. deleteChapter(index: number) {
  38. if (index === this.selectedChapterIndex) {
  39. this.selectedChapterIndex = null;
  40. this.selectedChapterTitle = '';
  41. this.selectedChapterContent = '';
  42. }
  43. this.chapters.splice(index, 1);
  44. }
  45. selectedChapterIndex: number | null = null;
  46. selectedChapterTitle: string = '';
  47. selectedChapterContent: string = '';
  48. selectChapter(index: number) {
  49. this.editChapter(index);
  50. this.isSideShow = false; // 隐藏侧边栏
  51. }
  52. editChapter(index: number) {
  53. this.selectedChapterIndex = index;
  54. this.selectedChapterTitle = this.chapters[index].title;
  55. this.selectedChapterContent = this.chapters[index].content; // 初始化内容为当前章节的内容
  56. }
  57. saveChapter() {
  58. if (this.selectedChapterIndex !== null) {
  59. this.chapters[this.selectedChapterIndex].title = this.selectedChapterTitle;
  60. this.chapters[this.selectedChapterIndex].content = this.selectedChapterContent;
  61. console.log('章节内容已保存:', this.selectedChapterContent);
  62. this.selectedChapterIndex = null;
  63. this.selectedChapterTitle = '';
  64. this.selectedChapterContent = '';
  65. this.isSideShow = true; // 显示侧边栏
  66. }
  67. }
  68. }