tab4.page.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import { Component, OnInit } from '@angular/core';
  2. import { NavController } from '@ionic/angular';
  3. import { Router } from '@angular/router';
  4. import Parse from "parse";
  5. @Component({
  6. selector: 'app-tab4',
  7. templateUrl: './tab4.page.html',
  8. styleUrls: ['./tab4.page.scss'],
  9. })
  10. export class Tab4Page implements OnInit {
  11. constructor(private navCtrl: NavController,private router: Router) {}//this.selectedContent = '发布';
  12. selectedContent: string = '发布';
  13. publishedWorks: any[] = [
  14. {description: '这是发布作品1的描述' },
  15. {description: '这是发布作品2的描述' },
  16. // 其他发布作品信息
  17. ];
  18. collectedWorks: any[] = [
  19. {description: '这是收藏作品1的描述' },
  20. {description: '这是收藏作品2的描述' },
  21. // 其他收藏作品信息
  22. ];
  23. likedWorks: any[] = [
  24. {description: '这是点赞作品1的描述' },
  25. {description: '这是点赞作品2的描述' },
  26. // 其他点赞作品信息
  27. ];
  28. viewedWorks: any[] = [
  29. {description: '这是浏览作品1的描述' },
  30. {description: '这是浏览作品2的描述' },
  31. // 其他浏览作品信息
  32. ];
  33. selectedWorks: any[] = [];
  34. showContent(content: string) {
  35. this.selectedContent = content;
  36. switch(content) {
  37. case '发布':
  38. this.selectedWorks = this.publishedWorks;
  39. break;
  40. case '收藏':
  41. this.selectedWorks = this.collectedWorks;
  42. break;
  43. case '点赞':
  44. this.selectedWorks = this.likedWorks;
  45. break;
  46. case '浏览':
  47. this.selectedWorks = this.viewedWorks;
  48. break;
  49. default:
  50. this.selectedWorks = [];
  51. }
  52. }
  53. openFeedbackPage() {
  54. // 打开反馈页面
  55. this.navCtrl.navigateForward('/feedback');
  56. }
  57. openSettingsPage() {
  58. // 打开设置页面
  59. this.router.navigate(['/settings']);
  60. }
  61. openLoginPage() {
  62. //打开登录页面
  63. this.navCtrl.navigateForward('/user/login');
  64. }
  65. openLogin2Page() {
  66. //按钮
  67. if (this.user?.id) {
  68. this.router.navigate(['/creator']); // 如果已登录,跳转到 creator 页面
  69. } else {
  70. this.navCtrl.navigateForward('/user/login'); // 如果未登录,跳转到 login 页面
  71. }
  72. }
  73. openFollowingPage(){
  74. //打开关注页面
  75. this.router.navigate(['/following']);
  76. }
  77. openFollowerPage(){
  78. //打开粉丝页面
  79. this.router.navigate(['/follower']);
  80. }
  81. userCount={
  82. followers: 3,
  83. following: 2,
  84. likes: 0
  85. }
  86. // 由于Parse.User.current()是随着localStorage变化的属性
  87. // 为了避免首次复制后用户状态变化,页面不同步,通过get方法实现实时获取
  88. user:Parse.User|undefined
  89. async ngOnInit() {
  90. this.showContent(this.selectedContent);
  91. this.user = await Parse.User.current()
  92. setInterval(async ()=>{
  93. this.user = await Parse.User.current()
  94. },1000)
  95. }
  96. logout(){
  97. Parse.User.logOut();
  98. }
  99. }