drift-bottle.component_20241227170446.ts 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. import { Component, OnInit, OnDestroy } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { IonicModule } from '@ionic/angular';
  4. import { openThrowDriftBottleModal } from '../throw-drift-bottle/throw-drift-bottle.component';
  5. import { ModalController } from '@ionic/angular/standalone';
  6. import { HttpClient } from '@angular/common/http';
  7. import { CloudObject, CloudQuery } from 'src/lib/ncloud';
  8. @Component({
  9. selector: 'app-drift-bottle',
  10. templateUrl: './drift-bottle.component.html',
  11. styleUrls: ['./drift-bottle.component.scss'],
  12. standalone: true,
  13. imports: [
  14. IonicModule,
  15. // 其他导入项...
  16. ]
  17. })
  18. export class DriftBottleComponent implements OnInit, OnDestroy {
  19. alertHeader: string = '';
  20. alertMessage: string = '';
  21. private audioElement!: HTMLAudioElement;
  22. constructor(
  23. private router: Router,
  24. private modalCtrl: ModalController,
  25. private http: HttpClient
  26. ) {}
  27. ngOnInit() {
  28. this.audioElement = document.getElementById('backgroundAudio') as HTMLAudioElement;
  29. if (this.audioElement) {
  30. this.audioElement.play();
  31. }
  32. }
  33. ngOnDestroy() {
  34. if (this.audioElement) {
  35. this.audioElement.pause();
  36. this.audioElement.currentTime = 0; // 重置音频时间
  37. }
  38. }
  39. throwDriftBottleModal() {
  40. openThrowDriftBottleModal(this.modalCtrl);
  41. }
  42. catchDriftBottle() {
  43. const query = new CloudQuery("DriftBottle");
  44. query.equalTo("status", "drifting");
  45. query.find().then((driftingBottles: any[]) => {
  46. if (driftingBottles.length === 0) {
  47. this.alertHeader = '失败';
  48. this.alertMessage = '没捞着…';
  49. return;
  50. }
  51. const randomIndex = Math.floor(Math.random() * driftingBottles.length);
  52. const bottleToCatch = driftingBottles[randomIndex];
  53. bottleToCatch.set("status", "catched");
  54. bottleToCatch.save().then(() => {
  55. this.alertHeader = '成功';
  56. this.alertMessage = '捞到啦!';
  57. }).catch((err: any) => {
  58. console.error('更新漂流瓶状态时出错:', err);
  59. this.alertHeader = '错误';
  60. this.alertMessage = '发生错误,请重试。';
  61. });
  62. }).catch((err) => {
  63. console.error('获取漂流瓶时出错:', err);
  64. this.alertHeader = '错误';
  65. this.alertMessage = '发生错误,请重试。';
  66. });
  67. }
  68. dismissAlert() {
  69. this.alertHeader = '';
  70. this.alertMessage = '';
  71. }
  72. goMydriftbottle() {
  73. this.router.navigate(['tabs/my-drift-bottle']);
  74. }
  75. }