throw-drift-bottle.component.ts 3.4 KB

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