123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- import { Component, OnInit } from '@angular/core';
- import { LoadingController, ToastController } from '@ionic/angular';
- import * as Parse from 'parse';
- import { AgreementComponent } from '../../login/agreement/agreement.component';
- import { AlertController, ModalController } from '@ionic/angular';
- import { ActivatedRoute, Router } from '@angular/router';
- import { AuthService } from '../../../services/auth.service';
- import { AiChatService } from '../../../services/aichart.service';
- import { AccountService } from '../../../services/account.service';
- import { ionicStandaloneModules } from '../../ionic-standalone.modules';
- import { DatePipe, CommonModule } from '@angular/common';
- import { AvatarComponent } from '../../../app/components/avatar/avatar.component';
- import { HttpService } from '../../../services/http.service';
- @Component({
- selector: 'app-my',
- templateUrl: './my.component.html',
- styleUrls: ['./my.component.scss'],
- standalone: true,
- imports: [...ionicStandaloneModules, CommonModule,AvatarComponent],
- providers: [DatePipe],
- })
- export class MyComponent implements OnInit {
- profile?: Parse.Object; //身份信息
- user: Parse.Object = Parse.User.current()!;
- constructor(
- private loadingCtrl: LoadingController,
- private modalController: ModalController,
- private alertController: AlertController,
- public authServ: AuthService,
- private toastController: ToastController,
- private activateRoute: ActivatedRoute,
- private router: Router,
- public aiServ: AiChatService,
- private accServ: AccountService,
- private http: HttpService,
- ) {}
- tools: Array<{ icon: string; title: string; path: string }> = [
- {
- icon: 'img/钱包.png',
- title: '钱包',
- path: 'account/wattle',
- },
- {
- icon: 'img/相册.png',
- title: '相册',
- path: 'user/album',
- },
- {
- icon: 'img/邀请.png',
- title: '邀请',
- path: 'user/share',
- },
- {
- icon: 'img/访客.png',
- title: '访客记录',
- path: 'user/browse',
- },
- {
- icon: 'img/设置.png',
- title: '设置',
- path: 'user/setting',
- },
- ];
- registerAgreement: any; //用户协议
- liveAgreement: any; //直播协议
- company: string | null = localStorage?.getItem('company');
- userObj: any = {
- fans: 0,
- follow: 0,
- friendly_degree: 0,
- vip: null,
- };
- orderList: Array<any> = [];
- loading: boolean = true;
- ngOnInit() {
- this.activateRoute.paramMap.subscribe(async (params) => {
- this.refresh();
- });
- }
- async refresh() {
- const loading = await this.loadingCtrl.create({
- message: '加载中',
- });
- loading.present();
- this.user = Parse.User.current()!;
- await this.getProfile();
- this.getAgreement();
- const data = await this.aiServ.getFansAndFollow(this.user.id);
- // console.log(data);
- this.orderList = await this.aiServ.getOrderAnchor();
- console.log(this.orderList);
- const { fans, follow } = data.data[0];
- this.userObj = { fans, follow, friendly_degree: 0 };
- this.userObj.vip = this.accServ.userVip;
- if (!this.userObj.vip) {
- this.userObj.vip = await this.accServ.getVip();
- }
- console.log(this.userObj);
- await this.updateLevel()
- loading.dismiss();
- this.loading = false;
- }
- // 获取用户信息
- async getProfile() {
- let user = Parse.User.current();
- let query = new Parse.Query('Profile');
- query.equalTo('user', user?.id);
- query.notEqualTo('isDeleted', true);
- query.select('isCheck', 'isCross','birthdate','identyType');
- this.profile = await query.first();
- }
- getAgreement() {
- let Agreement = new Parse.Query('ContractAgreement');
- Agreement.equalTo('company', this.company);
- Agreement.equalTo('type', 'register');
- Agreement.first().then((res) => {
- console.log(res);
- this.registerAgreement = res;
- });
- let Agreement2 = new Parse.Query('ContractAgreement');
- Agreement2.equalTo('company', this.company);
- Agreement2.equalTo('type', 'live');
- Agreement2.first().then((res) => {
- console.log(res);
- this.liveAgreement = res;
- });
- }
- async onChange(e: any) {
- const loading = await this.loadingCtrl.create({
- message: '正在修改',
- });
- loading.present();
- let checked = e.detail.checked;
- console.log(checked);
- if (!this.profile?.id) {
- let obj = Parse.Object.extend('Profile');
- this.profile = new obj();
- this.profile?.set('mobile', Parse.User.current()?.get('mobile'));
- this.profile?.set('user', Parse.User.current()?.toPointer());
- this.profile?.set('company', {
- __type: 'Pointer',
- className: 'Company',
- objectId: this.authServ.company,
- });
- }
- this.profile?.set('isCheck', checked);
- await this.profile?.save();
- loading.dismiss();
- const toast = await this.toastController.create({
- message: `已${checked ? '开启' : '关闭'}`,
- color: 'success',
- duration: 1000,
- });
- toast.present();
- }
- toUrl(url: string, params?: Object) {
- console.log(url);
- if (params) {
- this.router.navigate([url, Object]);
- } else {
- this.router.navigate([url]);
- }
- }
- async showAgreement(type: string) {
- if (type == 'liveAgreement' || type == 'registerAgreement') {
- const modal = await this.modalController.create({
- component: AgreementComponent,
- cssClass: 'my-custom-class',
- componentProps: {
- agreement: this[type],
- },
- });
- return await modal.present();
- }
- }
- /* 进入直播间 */
- async goRoom() {
- if (
- !this.profile?.get('isCross') ||
- this.profile?.get('identyType') !== 'anchor'
- ) {
- const alert = await this.alertController.create({
- header: '提示',
- message: '你还未认证主播身份,请认证后再进入直播间',
- buttons: [
- {
- text: '取消',
- role: 'cancel',
- cssClass: 'secondary',
- handler: (blah) => {},
- },
- {
- text: '去认证',
- handler: () => {
- console.log('Confirm Cancel: blah');
- this.toUrl('/user/anchor');
- },
- },
- ],
- });
- await alert.present();
- } else {
- this.toUrl('/live/room-manage');
- }
- }
- /* 退出登录 */
- async onLogout() {
- const alert = await this.alertController.create({
- cssClass: 'my-custom-class',
- header: '',
- message: '你确定退出登录吗?',
- backdropDismiss:false,
- buttons: [
- {
- text: '确定',
- role: 'cancel',
- cssClass: 'secondary',
- handler: (blah) => {
- console.log('Confirm Cancel: blah');
- this.authServ.logout();
- },
- },
- {
- text: '取消',
- handler: () => {},
- },
- ],
- });
- await alert.present();
- }
- toService(){
- location.href = 'tel:4000-000-000';
- console.log('拨号');
- }
- async updateLevel(){
- let url = 'https://server.fmode.cn/api/ailiao/update/level'
- let data = await this.http.httpRequst(url,{pid: this.profile?.id},'POST')
- console.log(data);
- }
- }
|