throw-drift-bottle.component.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. import { Component, OnInit } from '@angular/core';
  2. import { ModalController, ToastController, IonInput, IonItem, IonButton, IonCard, IonCardHeader, IonCardTitle, IonCardContent } from '@ionic/angular/standalone';
  3. import { CloudObject } from 'src/lib/ncloud';
  4. import { FormsModule } from '@angular/forms'; // 导入 FormsModule
  5. import { CommonModule } from '@angular/common';
  6. import { UserService } from 'src/app/user.service'; // 假设这是你的用户服务
  7. @Component({
  8. selector: 'app-throw-drift-bottle',
  9. templateUrl: './throw-drift-bottle.component.html',
  10. styleUrls: ['./throw-drift-bottle.component.scss'],
  11. standalone: true,
  12. imports: [
  13. IonCard,
  14. IonCardHeader,
  15. IonCardTitle,
  16. IonCardContent,
  17. IonButton,
  18. IonInput,
  19. IonItem,
  20. FormsModule,
  21. CommonModule
  22. ],
  23. })
  24. export class ThrowDriftBottleComponent implements OnInit {
  25. driftbottleData: { content: string, username: string, status: string, throwtime: Date } = {
  26. content: '',
  27. username: '',
  28. status: 'drifting',
  29. throwtime: new Date() // 初始化为当前时间
  30. }; // 漂流瓶内容、用户名、状态和投掷时间
  31. constructor(
  32. private modalCtrl: ModalController,
  33. private userService: UserService, // 注入用户服务
  34. private toastCtrl: ToastController // 注入 ToastController
  35. ) {}
  36. ngOnInit() {
  37. const username = this.userService.getUsername(); // 获取当前用户的用户名
  38. if (username) {
  39. this.driftbottleData.username = username;
  40. } else {
  41. console.error('用户未登录或未找到用户名');
  42. }
  43. }
  44. async throw() {
  45. // 更新投掷时间为当前时间
  46. this.driftbottleData.throwtime = new Date();
  47. console.log('投掷漂流瓶:');
  48. console.log(`内容: ${this.driftbottleData.content}`);
  49. console.log(`用户名: ${this.driftbottleData.username}`);
  50. console.log(`状态: ${this.driftbottleData.status}`);
  51. console.log(`投掷时间: ${this.driftbottleData.throwtime}`);
  52. const driftbottleData = {
  53. content: this.driftbottleData.content,
  54. username: this.driftbottleData.username,
  55. status: this.driftbottleData.status,
  56. throwtime: this.driftbottleData.throwtime.toISOString(), // 存储为 ISO 格式字符串
  57. };
  58. let driftbottle = new CloudObject("Driftbottle");
  59. driftbottle.set(driftbottleData);
  60. try {
  61. await driftbottle.save();
  62. console.log('漂流瓶已成功投掷');
  63. // 显示成功的 toast 提示
  64. const toast = await this.toastCtrl.create({
  65. message: '扔出成功!',
  66. duration: 2000,
  67. position: 'middle'
  68. });
  69. toast.present();
  70. this.modalCtrl.dismiss(driftbottle, "confirm");
  71. } catch (err) {
  72. console.error('投掷漂流瓶时出错', err);
  73. // 显示错误的 toast 提示
  74. const toast = await this.toastCtrl.create({
  75. message: '扔出失败,请重试。',
  76. duration: 2000,
  77. position: 'middle'
  78. });
  79. toast.present();
  80. }
  81. }
  82. cancel() {
  83. this.modalCtrl.dismiss(null, "cancel");
  84. }
  85. }
  86. export async function openThrowDriftBottleModal(modalCtrl: ModalController): Promise<any> {
  87. const modal = await modalCtrl.create({
  88. component: ThrowDriftBottleComponent,
  89. breakpoints: [0.7, 1.0],
  90. initialBreakpoint: 0.7
  91. });
  92. modal.present();
  93. const { data, role } = await modal.onWillDismiss();
  94. if (role === 'confirm') {
  95. return data;
  96. }
  97. return null;
  98. }