my.component.ts 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. import { Component, OnInit } from '@angular/core';
  2. import { LoadingController, ToastController } from '@ionic/angular';
  3. import * as Parse from 'parse';
  4. import { AgreementComponent } from '../../login/agreement/agreement.component';
  5. import { AlertController, ModalController } from '@ionic/angular';
  6. import { ActivatedRoute, Router } from '@angular/router';
  7. import { AuthService } from '../../../services/auth.service';
  8. import { AiChatService } from '../../../services/aichart.service';
  9. import { AccountService } from '../../../services/account.service';
  10. import { ionicStandaloneModules } from '../../ionic-standalone.modules';
  11. import { DatePipe, CommonModule } from '@angular/common';
  12. import { AvatarComponent } from '../../../app/components/avatar/avatar.component';
  13. import { HttpService } from '../../../services/http.service';
  14. @Component({
  15. selector: 'app-my',
  16. templateUrl: './my.component.html',
  17. styleUrls: ['./my.component.scss'],
  18. standalone: true,
  19. imports: [...ionicStandaloneModules, CommonModule,AvatarComponent],
  20. providers: [DatePipe],
  21. })
  22. export class MyComponent implements OnInit {
  23. profile?: Parse.Object; //身份信息
  24. user: Parse.Object = Parse.User.current()!;
  25. constructor(
  26. private loadingCtrl: LoadingController,
  27. private modalController: ModalController,
  28. private alertController: AlertController,
  29. public authServ: AuthService,
  30. private toastController: ToastController,
  31. private activateRoute: ActivatedRoute,
  32. private router: Router,
  33. public aiServ: AiChatService,
  34. private accServ: AccountService,
  35. private http: HttpService,
  36. ) {}
  37. tools: Array<{ icon: string; title: string; path: string }> = [
  38. {
  39. icon: 'img/钱包.png',
  40. title: '钱包',
  41. path: 'account/wattle',
  42. },
  43. {
  44. icon: 'img/相册.png',
  45. title: '相册',
  46. path: 'user/album',
  47. },
  48. {
  49. icon: 'img/邀请.png',
  50. title: '邀请',
  51. path: 'user/share',
  52. },
  53. {
  54. icon: 'img/访客.png',
  55. title: '访客记录',
  56. path: 'user/browse',
  57. },
  58. {
  59. icon: 'img/设置.png',
  60. title: '设置',
  61. path: 'user/setting',
  62. },
  63. ];
  64. registerAgreement: any; //用户协议
  65. liveAgreement: any; //直播协议
  66. company: string | null = localStorage?.getItem('company');
  67. userObj: any = {
  68. fans: 0,
  69. follow: 0,
  70. friendly_degree: 0,
  71. vip: null,
  72. };
  73. orderList: Array<any> = [];
  74. loading: boolean = true;
  75. ngOnInit() {
  76. this.activateRoute.paramMap.subscribe(async (params) => {
  77. this.refresh();
  78. });
  79. }
  80. async refresh() {
  81. const loading = await this.loadingCtrl.create({
  82. message: '加载中',
  83. });
  84. loading.present();
  85. this.user = Parse.User.current()!;
  86. await this.getProfile();
  87. this.getAgreement();
  88. const data = await this.aiServ.getFansAndFollow(this.user.id);
  89. // console.log(data);
  90. this.orderList = await this.aiServ.getOrderAnchor();
  91. console.log(this.orderList);
  92. const { fans, follow } = data.data[0];
  93. this.userObj = { fans, follow, friendly_degree: 0 };
  94. this.userObj.vip = this.accServ.userVip;
  95. if (!this.userObj.vip) {
  96. this.userObj.vip = await this.accServ.getVip();
  97. }
  98. console.log(this.userObj);
  99. await this.updateLevel()
  100. loading.dismiss();
  101. this.loading = false;
  102. }
  103. // 获取用户信息
  104. async getProfile() {
  105. let user = Parse.User.current();
  106. let query = new Parse.Query('Profile');
  107. query.equalTo('user', user?.id);
  108. query.notEqualTo('isDeleted', true);
  109. query.select('isCheck', 'isCross','birthdate','identyType');
  110. this.profile = await query.first();
  111. }
  112. getAgreement() {
  113. let Agreement = new Parse.Query('ContractAgreement');
  114. Agreement.equalTo('company', this.company);
  115. Agreement.equalTo('type', 'register');
  116. Agreement.first().then((res) => {
  117. console.log(res);
  118. this.registerAgreement = res;
  119. });
  120. let Agreement2 = new Parse.Query('ContractAgreement');
  121. Agreement2.equalTo('company', this.company);
  122. Agreement2.equalTo('type', 'live');
  123. Agreement2.first().then((res) => {
  124. console.log(res);
  125. this.liveAgreement = res;
  126. });
  127. }
  128. async onChange(e: any) {
  129. const loading = await this.loadingCtrl.create({
  130. message: '正在修改',
  131. });
  132. loading.present();
  133. let checked = e.detail.checked;
  134. console.log(checked);
  135. if (!this.profile?.id) {
  136. let obj = Parse.Object.extend('Profile');
  137. this.profile = new obj();
  138. this.profile?.set('mobile', Parse.User.current()?.get('mobile'));
  139. this.profile?.set('user', Parse.User.current()?.toPointer());
  140. this.profile?.set('company', {
  141. __type: 'Pointer',
  142. className: 'Company',
  143. objectId: this.authServ.company,
  144. });
  145. }
  146. this.profile?.set('isCheck', checked);
  147. await this.profile?.save();
  148. loading.dismiss();
  149. const toast = await this.toastController.create({
  150. message: `已${checked ? '开启' : '关闭'}`,
  151. color: 'success',
  152. duration: 1000,
  153. });
  154. toast.present();
  155. }
  156. toUrl(url: string, params?: Object) {
  157. console.log(url);
  158. if (params) {
  159. this.router.navigate([url, Object]);
  160. } else {
  161. this.router.navigate([url]);
  162. }
  163. }
  164. async showAgreement(type: string) {
  165. if (type == 'liveAgreement' || type == 'registerAgreement') {
  166. const modal = await this.modalController.create({
  167. component: AgreementComponent,
  168. cssClass: 'my-custom-class',
  169. componentProps: {
  170. agreement: this[type],
  171. },
  172. });
  173. return await modal.present();
  174. }
  175. }
  176. /* 进入直播间 */
  177. async goRoom() {
  178. if (
  179. !this.profile?.get('isCross') ||
  180. this.profile?.get('identyType') !== 'anchor'
  181. ) {
  182. const alert = await this.alertController.create({
  183. header: '提示',
  184. message: '你还未认证主播身份,请认证后再进入直播间',
  185. buttons: [
  186. {
  187. text: '取消',
  188. role: 'cancel',
  189. cssClass: 'secondary',
  190. handler: (blah) => {},
  191. },
  192. {
  193. text: '去认证',
  194. handler: () => {
  195. console.log('Confirm Cancel: blah');
  196. this.toUrl('/user/anchor');
  197. },
  198. },
  199. ],
  200. });
  201. await alert.present();
  202. } else {
  203. this.toUrl('/live/room-manage');
  204. }
  205. }
  206. /* 退出登录 */
  207. async onLogout() {
  208. const alert = await this.alertController.create({
  209. cssClass: 'my-custom-class',
  210. header: '',
  211. message: '你确定退出登录吗?',
  212. backdropDismiss:false,
  213. buttons: [
  214. {
  215. text: '确定',
  216. role: 'cancel',
  217. cssClass: 'secondary',
  218. handler: (blah) => {
  219. console.log('Confirm Cancel: blah');
  220. this.authServ.logout();
  221. },
  222. },
  223. {
  224. text: '取消',
  225. handler: () => {},
  226. },
  227. ],
  228. });
  229. await alert.present();
  230. }
  231. toService(){
  232. location.href = 'tel:4000-000-000';
  233. console.log('拨号');
  234. }
  235. async updateLevel(){
  236. let url = 'https://server.fmode.cn/api/ailiao/update/level'
  237. let data = await this.http.httpRequst(url,{pid: this.profile?.id},'POST')
  238. console.log(data);
  239. }
  240. }