tab3.page.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. import { Component } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { ToastController } from '@ionic/angular';
  4. @Component({
  5. selector: 'app-tab3',
  6. templateUrl: 'tab3.page.html',
  7. styleUrls: ['tab3.page.scss']
  8. })
  9. export class Tab3Page {
  10. constructor(private toastController: ToastController) {}
  11. activeTab:string = 'explore';
  12. likedPosts: number[] = [];
  13. favoritePosts: number[] = [];
  14. followedUsers: number[] = [];
  15. changeTab(event:any){
  16. this.activeTab = event.detail.value
  17. }
  18. openSettingsPage() {
  19. // 打开设置页面
  20. }
  21. // navigateToPage(page: string) {
  22. // this.router.navigate([`/tabs/${page}`]);
  23. // }
  24. sendComment() {
  25. // 模拟发送评论的操作
  26. this.presentToast('评论已发送');
  27. }
  28. async presentToast(message: string) {
  29. const toast = await this.toastController.create({
  30. message: message,
  31. duration: 2000
  32. });
  33. toast.present();
  34. }
  35. likePost(postId: number) {
  36. if (this.isPostLiked(postId)) {
  37. this.likedPosts = this.likedPosts.filter(id => id !== postId);
  38. } else {
  39. this.likedPosts.push(postId);
  40. }
  41. }
  42. isPostLiked(postId: number): boolean {
  43. return this.likedPosts.includes(postId);
  44. }
  45. toggleFavorite(postId: number) {
  46. if (this.isPostFavorite(postId)) {
  47. this.favoritePosts = this.favoritePosts.filter(id => id !== postId);
  48. } else {
  49. this.favoritePosts.push(postId);
  50. }
  51. }
  52. isPostFavorite(postId: number): boolean {
  53. return this.favoritePosts.includes(postId);
  54. }
  55. toggleFollow(userId: number) {
  56. if (this.isUserFollowed(userId)) {
  57. this.followedUsers = this.followedUsers.filter(id => id !== userId);
  58. } else {
  59. this.followedUsers.push(userId);
  60. }
  61. }
  62. isUserFollowed(userId: number): boolean {
  63. return this.followedUsers.includes(userId);
  64. }
  65. }