|
@@ -1,6 +1,6 @@
|
|
|
import { Component, OnInit, OnDestroy, Renderer2, ElementRef, ViewChild } from '@angular/core';
|
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
|
-import { IonicModule } from '@ionic/angular';
|
|
|
+import { IonicModule, ToastController } from '@ionic/angular';
|
|
|
import { openThrowDriftBottleModal } from '../throw-drift-bottle/throw-drift-bottle.component';
|
|
|
import { ModalController } from '@ionic/angular/standalone';
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
@@ -20,27 +20,24 @@ import { CommonModule } from '@angular/common'; // 导入 CommonModule
|
|
|
]
|
|
|
})
|
|
|
export class DriftBottleComponent implements OnInit, OnDestroy {
|
|
|
- alertHeader: string = '';
|
|
|
- alertMessage: string = '';
|
|
|
-
|
|
|
@ViewChild('backgroundAudio', { static: false }) audioElement!: ElementRef<HTMLAudioElement>;
|
|
|
|
|
|
constructor(
|
|
|
private router: Router,
|
|
|
private modalCtrl: ModalController,
|
|
|
- private route:ActivatedRoute,
|
|
|
+ private route: ActivatedRoute,
|
|
|
private http: HttpClient,
|
|
|
private renderer: Renderer2,
|
|
|
- private userService: UserService // 注入用户服务
|
|
|
+ private userService: UserService, // 注入用户服务
|
|
|
+ private toastCtrl: ToastController // 注入 ToastController
|
|
|
) {}
|
|
|
|
|
|
ngOnInit() {
|
|
|
-
|
|
|
- this.route.params.subscribe(data=>{
|
|
|
- if (this.audioElement && this.audioElement.nativeElement) {
|
|
|
- const audio = this.audioElement.nativeElement;
|
|
|
+ this.route.params.subscribe(data => {
|
|
|
+ if (this.audioElement && this.audioElement.nativeElement) {
|
|
|
+ const audio = this.audioElement.nativeElement;
|
|
|
audio.loop = true;
|
|
|
- audio.play().catch((error:any) => {
|
|
|
+ audio.play().catch((error: any) => {
|
|
|
console.error('Failed to play audio:', error);
|
|
|
});
|
|
|
} else {
|
|
@@ -48,19 +45,20 @@ export class DriftBottleComponent implements OnInit, OnDestroy {
|
|
|
}
|
|
|
|
|
|
let listenLeaveInt = setInterval(() => {
|
|
|
- let isLeave = location.pathname?.indexOf("drift-bottle")==-1
|
|
|
- if(isLeave){
|
|
|
- this.stop()
|
|
|
+ let isLeave = location.pathname?.indexOf("drift-bottle") == -1;
|
|
|
+ if (isLeave) {
|
|
|
+ this.stop();
|
|
|
clearInterval(listenLeaveInt);
|
|
|
}
|
|
|
}, 500);
|
|
|
- })
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
ngOnDestroy() {
|
|
|
- this.stop()
|
|
|
+ this.stop();
|
|
|
}
|
|
|
- stop(){
|
|
|
+
|
|
|
+ stop() {
|
|
|
if (this.audioElement && this.audioElement.nativeElement) {
|
|
|
const audio = this.audioElement.nativeElement;
|
|
|
audio.pause();
|
|
@@ -75,16 +73,16 @@ export class DriftBottleComponent implements OnInit, OnDestroy {
|
|
|
throwDriftBottleModal() {
|
|
|
openThrowDriftBottleModal(this.modalCtrl);
|
|
|
}
|
|
|
-//点击捞一个时,随机打捞一个状态为漂流中的漂流瓶,将其状态(status)改为被打捞,打捞时间(catchtime)改为当前时间,打捞者(catcher)改为该用户的username
|
|
|
-//如果打捞成功,则在页面中间显示“打捞成功!快去看看吧!”,如果数据库中没有状态为drifting的漂流瓶,则打捞失败,在页面中间显示“没捞着哭哭~”
|
|
|
- catchDriftBottle() {
|
|
|
+
|
|
|
+ async catchDriftBottle() {
|
|
|
const query = new CloudQuery("Driftbottle");
|
|
|
query.equalTo("status", "drifting");
|
|
|
|
|
|
- query.find().then((driftingBottles: any[]) => {
|
|
|
+ try {
|
|
|
+ const driftingBottles = await query.find();
|
|
|
+
|
|
|
if (driftingBottles.length === 0) {
|
|
|
- this.alertHeader = '失败';
|
|
|
- this.alertMessage = '没捞到…';
|
|
|
+ this.presentToast('没捞到…', 'middle');
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -94,33 +92,32 @@ export class DriftBottleComponent implements OnInit, OnDestroy {
|
|
|
const username = this.userService.getUsername(); // 获取当前用户的用户名
|
|
|
if (!username) {
|
|
|
console.error('用户未登录或未找到用户名');
|
|
|
- this.alertHeader = '错误';
|
|
|
- this.alertMessage = '用户未登录,请先登录。';
|
|
|
+ this.presentToast('用户未登录,请先登录。', 'middle');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- bottleToCatch.set("status", "caught");
|
|
|
- bottleToCatch.set("catcher", username); // 设置打捞者
|
|
|
- bottleToCatch.set("catchTime", new Date()); // 设置打捞时间
|
|
|
-
|
|
|
- bottleToCatch.save().then(() => {
|
|
|
- this.alertHeader = '成功';
|
|
|
- this.alertMessage = '捞到啦!快去看看吧!';
|
|
|
- }).catch((err: any) => {
|
|
|
- console.error('更新漂流瓶状态时出错:', err);
|
|
|
- this.alertHeader = '错误';
|
|
|
- this.alertMessage = '发生错误,请重试。';
|
|
|
+ // 使用对象来设置多个字段
|
|
|
+ bottleToCatch.set({
|
|
|
+ status: "caught",
|
|
|
+ catcher: username,
|
|
|
+ catchtime: new Date()
|
|
|
});
|
|
|
- }).catch((err) => {
|
|
|
+
|
|
|
+ await bottleToCatch.save();
|
|
|
+ this.presentToast('捞到啦!快去看看吧!', 'middle');
|
|
|
+ } catch (err) {
|
|
|
console.error('获取漂流瓶时出错:', err);
|
|
|
- this.alertHeader = '错误';
|
|
|
- this.alertMessage = '发生错误,请重试。';
|
|
|
- });
|
|
|
+ this.presentToast('发生错误,请重试。', 'middle');
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- dismissAlert() {
|
|
|
- this.alertHeader = '';
|
|
|
- this.alertMessage = '';
|
|
|
+ async presentToast(message: string, position: 'top' | 'middle' | 'bottom') {
|
|
|
+ const toast = await this.toastCtrl.create({
|
|
|
+ message: message,
|
|
|
+ duration: 2000,
|
|
|
+ position: position
|
|
|
+ });
|
|
|
+ toast.present();
|
|
|
}
|
|
|
|
|
|
goMydriftbottle() {
|