home.component.ts 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import { Component, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import * as Parse from 'parse';
  4. import { ModalController } from '@ionic/angular';
  5. import { PageChatPanelComponent } from '../page-chat-panel/page-chat-panel.component'; // 引入PageChatPanelComponent
  6. interface Item {
  7. name: string;
  8. description: string;
  9. imgUrl: string;
  10. detailId: string;
  11. }
  12. @Component({
  13. selector: 'app-home',
  14. templateUrl: './home.component.html',
  15. styleUrls: ['./home.component.scss']
  16. })
  17. export class HomeComponent implements OnInit {
  18. items: Item[] = [];
  19. currentContent: string = 'module-one';
  20. chatPanelOpen: boolean = false; // 添加一个标记来跟踪聊天面板的打开状态
  21. constructor(private router: Router,private modalController: ModalController) {}
  22. ngOnInit() {
  23. this.getData();
  24. }
  25. getData() {
  26. (Parse as any).serverURL = 'https://web2023.fmode.cn/parse';
  27. Parse.initialize('dev');
  28. let query: Parse.Query;
  29. if (this.currentContent === 'module-one') {
  30. query = new Parse.Query('LcmModuleOne');
  31. } else if (this.currentContent === 'module-two') {
  32. query = new Parse.Query('LcmModuleTwo');
  33. } else if (this.currentContent === 'module-three') {
  34. query = new Parse.Query('LcmModuleThree');
  35. } else {
  36. return; // 如果没有匹配的模块,退出方法
  37. }
  38. query.find()
  39. .then((results) => {
  40. this.items = results.map((result) => ({
  41. name: result.get('name'),
  42. description: result.get('description'),
  43. imgUrl: result.get('imgUrl'),
  44. detailId: result.get('detailId')
  45. }));
  46. console.log(this.items);
  47. })
  48. .catch((error) => {
  49. console.error('Error retrieving data from Parse:', error);
  50. });
  51. }
  52. selectItem(item: Item) {
  53. localStorage.setItem('selectedItem', JSON.stringify(item)); // 存储选定的项目到localStorage
  54. console.log(this.selectItem);
  55. this.router.navigate(['/page-item-detail', item.detailId]); // 导航到详情页,并传递选定的项目ID作为参数
  56. console.log(this.router.navigate)
  57. }
  58. showContent(content: string) {
  59. this.currentContent = content;
  60. this.getData();
  61. }
  62. async openChatPanel() {
  63. if (this.chatPanelOpen) {
  64. const modal = await this.modalController.getTop();
  65. if (modal) {
  66. modal.dismiss();
  67. }
  68. this.chatPanelOpen = false;
  69. } else {
  70. const modal = await this.modalController.create({
  71. component: PageChatPanelComponent,
  72. cssClass: 'chat-panel-modal',
  73. componentProps: {}
  74. });
  75. modal.style.height = '40vh'; // 设置弹框高度为50%
  76. modal.style.margin = '40vh 0 0 40vw'; // 设置弹框高度为50%
  77. await modal.present();
  78. this.chatPanelOpen = true;
  79. }
  80. }
  81. }