post-page.component.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. import { Component, OnInit } from '@angular/core';
  2. import { ActivatedRoute, Router } from '@angular/router';
  3. import { IonAvatar, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonContent, IonHeader, IonInput, IonItem, IonLabel, IonList, IonTitle, IonToolbar } from '@ionic/angular/standalone';
  4. import { IonBackButton } from '@ionic/angular/standalone';
  5. import { IonIcon } from '@ionic/angular/standalone';
  6. import { CommonModule } from '@angular/common';
  7. import { PostService } from '../post.service'; // 导入服务
  8. import { FormsModule } from '@angular/forms';
  9. @Component({
  10. selector: 'app-post-page',
  11. templateUrl: './post-page.component.html',
  12. styleUrls: ['./post-page.component.scss'],
  13. standalone: true,
  14. imports: [IonHeader,IonToolbar,IonButtons,IonBackButton,IonTitle,IonContent,
  15. IonCard,IonCardHeader,IonItem,IonAvatar,IonCardTitle,IonCardSubtitle,IonCardContent,
  16. IonButton,IonIcon,IonItem,IonInput,IonList,IonLabel,FormsModule,CommonModule
  17. ],
  18. })
  19. export class PostPageComponent implements OnInit {
  20. post: any;
  21. liked: boolean = false;
  22. newComment: string = '';
  23. comments: { username: string; text: string }[] = [];
  24. postId: any;
  25. constructor(private router: Router,private route: ActivatedRoute,private postService: PostService) {}
  26. ngOnInit() {
  27. // this.loadDaata();
  28. // console.log(this.post);
  29. // 使用 route.params 订阅参数变化
  30. // 获取动态 ID
  31. this.route.params.subscribe(params => {
  32. const postId = Number(params['id']); // 获取动态 ID
  33. if (!isNaN(postId)) {
  34. this.post = this.postService.getPostById(postId); // 根据 ID 获取动态内容
  35. } else {
  36. console.error('Invalid post ID');
  37. }
  38. });
  39. // 这里可以添加逻辑来根据 postId 更新页面内容
  40. // const postId = Number(this.route.snapshot.paramMap.get('id')); // 获取动态 ID
  41. // 根据 ID 获取动态内容
  42. }
  43. // ngDoCheck(){
  44. // this.loadDaata();
  45. // console.log(this.post);
  46. // }
  47. // async loadDaata(){
  48. // const navigation = this.router.getCurrentNavigation();
  49. // if (navigation && navigation.extras && navigation.extras.state) {
  50. // const state = navigation.extras.state;
  51. // console.log(state['postId']); // 访问传递的对象数据
  52. // const postId=state['postId']
  53. // this.post =await this.postService.getPostById(postId);
  54. // if (postId !== null) {
  55. // this.post =await this.postService.getPostById(postId); // 根据 ID 获取动态内容
  56. // } else {
  57. // console.error('Invalid post ID'); // 处理无效的 ID
  58. // }
  59. // }
  60. // }
  61. likePost() {
  62. this.liked = !this.liked;
  63. }
  64. addComment() {
  65. if (this.newComment.trim()) {
  66. const newCommentObj = {
  67. username: '当前用户', // 可以替换为实际的用户名
  68. text: this.newComment,
  69. };
  70. this.comments.push(newCommentObj);
  71. this.newComment = ''; // 清空输入框
  72. }
  73. }
  74. }