Browse Source

feat(novel-app): 添加聊天组件并更新路由

18460000105 4 months ago
parent
commit
83fc10aa71

+ 6 - 3
novel-app/src/app/app.routes.ts

@@ -30,9 +30,12 @@ export const routes: Routes = [
   },
   {
     path: 'login',
-    loadComponent: () => import('./login/login.page').then(m => m.LoginPage)
-  }
-
+    loadComponent: () => import('./login/login.page').then(m => m.LoginPage)}
+  // ,
+  // {
+  //   path: 'chat',
+  //   loadComponent: () => import('./chat/chat.component').then(m => m.ChatComponent)
+  // }
 
 ];
 

+ 3 - 0
novel-app/src/app/chat/chat.component.html

@@ -0,0 +1,3 @@
+<p>
+  chat works!
+</p>

+ 0 - 0
novel-app/src/app/chat/chat.component.scss


+ 24 - 0
novel-app/src/app/chat/chat.component.spec.ts

@@ -0,0 +1,24 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { IonicModule } from '@ionic/angular';
+
+import { ChatComponent } from './chat.component';
+
+describe('ChatComponent', () => {
+  let component: ChatComponent;
+  let fixture: ComponentFixture<ChatComponent>;
+
+  beforeEach(waitForAsync(() => {
+    TestBed.configureTestingModule({
+      declarations: [ ChatComponent ],
+      imports: [IonicModule.forRoot()]
+    }).compileComponents();
+
+    fixture = TestBed.createComponent(ChatComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  }));
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
novel-app/src/app/chat/chat.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-chat',
+  templateUrl: './chat.component.html',
+  styleUrls: ['./chat.component.scss'],
+  standalone: true
+})
+export class ChatComponent  implements OnInit {
+
+  constructor() { }
+
+  ngOnInit() {}
+
+}

+ 3 - 10
novel-app/src/app/tabs/tabs.routes.ts

@@ -22,17 +22,10 @@ export const routes: Routes = [
           import('../person/person.page').then((m) => m.PersonPage),
       },
 
+      
       {
-        path: 'character-creator',
-        loadComponent: () => import('../character-creator/character-creator.page').then(m => m.CharacterCreatorPage)
-      },
-      {
-        path: 'story-generator',
-        loadComponent: () => import('../story-generator/story-generator.page').then(m => m.StoryGeneratorPage)
-      },
-      {
-        path: 'toolbox',
-        loadComponent: () => import('../toolbox/toolbox.page').then(m => m.ToolboxPage)
+        path: 'chat',
+        loadComponent: () => import('../chat/chat.component').then(m => m.ChatComponent)
       },
       {
         path: '',