drift-bottle.component_20241227185338.ts 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import { Component, OnInit, OnDestroy, Renderer2, ElementRef, ViewChild } 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. import { UserService } from 'src/app/user.service'; // 假设这是你的用户服务
  9. import { CommonModule } from '@angular/common'; // 导入 CommonModule
  10. @Component({
  11. selector: 'app-drift-bottle',
  12. templateUrl: './drift-bottle.component.html',
  13. styleUrls: ['./drift-bottle.component.scss'],
  14. standalone: true,
  15. imports: [
  16. IonicModule,
  17. CommonModule, // 添加 CommonModule
  18. // 其他导入项...
  19. ]
  20. })
  21. export class DriftBottleComponent implements OnInit, OnDestroy {
  22. alertHeader: string = '';
  23. alertMessage: string = '';
  24. @ViewChild('backgroundAudio', { static: false }) audioElement!: ElementRef<HTMLAudioElement>;
  25. constructor(
  26. private router: Router,
  27. private modalCtrl: ModalController,
  28. private http: HttpClient,
  29. private renderer: Renderer2,
  30. private userService: UserService // 注入用户服务
  31. ) {}
  32. ngOnInit() {
  33. if (this.audioElement && this.audioElement.nativeElement) {
  34. const audio = this.audioElement.nativeElement;
  35. audio.loop = true;
  36. audio.play().catch(error => {
  37. console.error('Failed to play audio:', error);
  38. });
  39. } else {
  40. console.warn('Audio element not found');
  41. }
  42. }
  43. ngOnDestroy() {
  44. if (this.audioElement && this.audioElement.nativeElement) {
  45. const audio = this.audioElement.nativeElement;
  46. audio.pause();
  47. audio.currentTime = 0; // 重置音频时间
  48. console.log('Audio element paused and reset');
  49. } else {
  50. console.warn('Audio element not found during destroy');
  51. }
  52. console.log('ngOnDestroy called');
  53. }
  54. throwDriftBottleModal() {
  55. openThrowDriftBottleModal(this.modalCtrl);
  56. }
  57. catchDriftBottle() {
  58. const query = new CloudQuery("DriftBottle");
  59. query.equalTo("status", "drifting");
  60. query.find().then((driftingBottles: any[]) => {
  61. if (driftingBottles.length === 0) {
  62. this.alertHeader = '失败';
  63. this.alertMessage = '没捞到…';
  64. return;
  65. }
  66. const randomIndex = Math.floor(Math.random() * driftingBottles.length);
  67. const bottleToCatch = driftingBottles[randomIndex];
  68. const username = this.userService.getUsername(); // 获取当前用户的用户名
  69. if (!username) {
  70. console.error('用户未登录或未找到用户名');
  71. this.alertHeader = '错误';
  72. this.alertMessage = '用户未登录,请先登录。';
  73. return;
  74. }
  75. bottleToCatch.set("status", "caught");
  76. bottleToCatch.set("catcher", username); // 设置打捞者
  77. bottleToCatch.set("catchTime", new Date()); // 设置打捞时间
  78. bottleToCatch.save().then(() => {
  79. this.alertHeader = '成功';
  80. this.alertMessage = '捞到啦!快去看看吧!';
  81. }).catch((err: any) => {
  82. console.error('更新漂流瓶状态时出错:', err);
  83. this.alertHeader = '错误';
  84. this.alertMessage = '发生错误,请重试。';
  85. });
  86. }).catch((err) => {
  87. console.error('获取漂流瓶时出错:', err);
  88. this.alertHeader = '错误';
  89. this.alertMessage = '发生错误,请重试。';
  90. });
  91. }
  92. dismissAlert() {
  93. this.alertHeader = '';
  94. this.alertMessage = '';
  95. }
  96. goMydriftbottle() {
  97. this.router.navigate(['tabs/my-drift-bottle']);
  98. }
  99. }