|
@@ -1,11 +1,13 @@
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
-import { IonAvatar, IonButton, IonCard, IonCardHeader, IonCardSubtitle, IonCardTitle, IonContent, IonHeader, IonIcon, IonInput, IonItem, IonList, IonTitle, IonToolbar } from '@ionic/angular/standalone';
|
|
|
+import { IonAvatar, IonButton, IonCard, IonCardHeader, IonCardSubtitle, IonCardTitle, IonContent, IonHeader, IonIcon, IonInput, IonItem, IonList, IonTitle, IonToolbar, ModalController } from '@ionic/angular/standalone';
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
import { NavigationExtras, Router } from '@angular/router';
|
|
|
import { PostService } from '../post.service'; // 导入服务
|
|
|
import { IonButtons } from '@ionic/angular/standalone';
|
|
|
import { IonCardContent } from '@ionic/angular/standalone';
|
|
|
+import { CloudObject, CloudQuery, CloudUser } from 'src/lib/ncloud';
|
|
|
+import { openUserLoginModal } from 'src/lib/user/modal-user-login/modal-user-login.component';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-community',
|
|
@@ -19,7 +21,10 @@ import { IonCardContent } from '@ionic/angular/standalone';
|
|
|
export class CommunityPage implements OnInit {
|
|
|
posts: { id: number; username: string; date: Date; text: string; imageUrl?: string; avatarUrl?: string }[] = [];
|
|
|
|
|
|
- constructor(private router: Router,private postService: PostService) {
|
|
|
+ constructor(private router: Router,private postService: PostService,
|
|
|
+ private modalCtrl: ModalController,
|
|
|
+
|
|
|
+ ) {
|
|
|
}
|
|
|
|
|
|
ngOnInit() {
|
|
@@ -41,9 +46,19 @@ export class CommunityPage implements OnInit {
|
|
|
// }
|
|
|
viewPost(postId: number) {
|
|
|
// 直接导航到动态详情页面
|
|
|
- this.router.navigate(['/tabs/post-page', postId]);
|
|
|
+ this.router.navigate(['/post-page', postId]);
|
|
|
}
|
|
|
- sharePost() {
|
|
|
+ async sharePost() {
|
|
|
+ let currentUser = new CloudUser();
|
|
|
+
|
|
|
+ if (!currentUser?.id) {
|
|
|
+ console.log("用户未登录,请登录后重试");
|
|
|
+ let user = await openUserLoginModal(this.modalCtrl);
|
|
|
+ if (!user?.id) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ currentUser = user;
|
|
|
+ }
|
|
|
this.router.navigate(['/tabs/share-page']); // 导航到分享动态页面
|
|
|
}
|
|
|
}
|