profile.component.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. import { Component, OnInit, ViewChild } from '@angular/core';
  2. import { CommonModule, DatePipe } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { NavComponent } from '../../../app/components/nav/nav.component';
  5. import { ActivatedRoute, Router } from '@angular/router';
  6. import * as Parse from 'parse';
  7. import { ImagePreviewComponent } from '../../../app/components/image-preview/image-preview.component';
  8. import { AiChatService } from '../../../services/aichart.service';
  9. import { UploadComponent } from '../../../app/components/upload/upload.component';
  10. import { GiftModalComponent } from '../../../app/components/gift-modal/gift-modal.component';
  11. // import { MessageService } from '../../../services/message.service';
  12. import { ConnectTaskService } from '../../../services/connectTask.service';
  13. import { getBirthdatByIdNo, getConstellation } from '../../../services/utils';
  14. import {
  15. ionicStandaloneModules,
  16. // AlertController,
  17. LoadingController,
  18. ToastController,
  19. } from '../../ionic-standalone.modules';
  20. import { AccountService } from '../../../services/account.service';
  21. import { CallModalComponent } from '../../../app/components/call-modal/call-modal.component';
  22. import { AvatarComponent } from '../../../app/components/avatar/avatar.component';
  23. import { AppraiseComponent } from '../../../app/components/appraise/appraise.component';
  24. @Component({
  25. selector: 'app-profile',
  26. templateUrl: './profile.component.html',
  27. styleUrls: ['./profile.component.scss'],
  28. standalone: true,
  29. imports: [
  30. ...ionicStandaloneModules,
  31. FormsModule,
  32. // DatePipe,
  33. NavComponent,
  34. CommonModule,
  35. ImagePreviewComponent,
  36. UploadComponent,
  37. GiftModalComponent,
  38. CallModalComponent,
  39. AvatarComponent,
  40. AppraiseComponent
  41. ],
  42. providers: [DatePipe],
  43. })
  44. export class ProfileComponent implements OnInit {
  45. // @ViewChild('upload') upload!: UploadComponent;
  46. @ViewChild('call') call!: CallModalComponent;
  47. uid: string = '';
  48. currentUser?: Parse.Object = Parse.User.current(); //当前登录用户
  49. user?: Parse.Object; // 查看用户
  50. @ViewChild('preview') preview!: ImagePreviewComponent;
  51. friends?: Parse.Object; // 好友
  52. profile?: Parse.Object;
  53. active: number = 0;
  54. currenImg: string = '';
  55. numsObject: { fans: number; follow: number; gift: number } = {
  56. fans: 0, //粉丝量
  57. follow: 0, //关注量
  58. gift: 0, //送出礼物
  59. };
  60. isFollow: boolean = false;
  61. giftList: any[] = []; //礼物
  62. isOpen: boolean = false; //打开弹窗
  63. room?: Parse.Object;
  64. @ViewChild('gift') gift!: GiftModalComponent;
  65. // iscall: boolean = false;
  66. // isLiveing: boolean = false; // 是否在直播通话中
  67. userStatus: string = 'OFFLINE';
  68. loading: boolean = true;
  69. userVip:any
  70. commentObj:any = {
  71. score: 0,
  72. count:0,
  73. list: []
  74. }
  75. constructor(
  76. private activateRoute: ActivatedRoute,
  77. private router: Router,
  78. private toastController: ToastController,
  79. private loadingCtrl: LoadingController,
  80. public aiChatServ: AiChatService,
  81. // private alertController: AlertController,
  82. // private msgSer: MessageService,
  83. private connectTask: ConnectTaskService,
  84. public accServ: AccountService
  85. ) {}
  86. get state() {
  87. let map: any = {
  88. REFUSE: {
  89. val: '勿扰',
  90. color: '#f1ac16',
  91. },
  92. ONLINE: {
  93. val: '在线',
  94. color: '#28bb50',
  95. },
  96. OFFLINE: {
  97. val: '离线',
  98. color: '#a1a1a1',
  99. },
  100. CONNECTING: {
  101. val: '忙线',
  102. color: '#cf1b24',
  103. },
  104. '': {
  105. val: '离线',
  106. color: '#a1a1a1',
  107. },
  108. };
  109. return map?.[this.userStatus] || map['OFFLINE'];
  110. }
  111. birthdat?: string;
  112. constellation?: string;
  113. ngOnInit() {
  114. this.activateRoute.paramMap.subscribe(async (params) => {
  115. let id: any = params.get('id');
  116. this.uid = id;
  117. await this.refresh();
  118. if (this.uid !== this.currentUser?.id) {
  119. this.userStatus = await this.connectTask.getState(this.uid, this.uid);
  120. } else {
  121. this.userStatus = 'ONLINE';
  122. }
  123. if (this.profile?.get('isCheck') && this.userStatus == 'ONLINE') {
  124. this.userStatus = 'REFUSE';
  125. }
  126. });
  127. }
  128. ngOnDestroy(): void {
  129. // if (!this.isLiveing && this.uid !== this.currentUser?.id) {
  130. // console.log('断开连接');
  131. // this.msgSer?.unsubscribeMessage(this.uid);
  132. // }
  133. }
  134. async refresh() {
  135. const loading = await this.loadingCtrl.create({
  136. message: '加载中',
  137. });
  138. loading.present();
  139. this.userVip = await this.accServ.getVip(this.uid)
  140. await this.getFriends();
  141. await this.getProfile();
  142. await this.getFollwState();
  143. let res = await this.aiChatServ.getFansAndFollow(this.uid);
  144. this.numsObject.fans = res.data[0].fans;
  145. this.numsObject.follow = res.data[0].follow;
  146. let res1 = await this.aiChatServ.getGiftLogCount(this.uid);
  147. this.numsObject.gift = res1.data[0].gift ?? 0;
  148. this.giftList = await this.aiChatServ.getGiftList(this.uid, 16);
  149. await this.getCommentLeng()
  150. this.browseLog()
  151. // this.getRoom();
  152. loading.dismiss();
  153. this.loading = false;
  154. }
  155. async getFriends() {
  156. let query1 = new Parse.Query('Friends');
  157. query1.equalTo('user', this.currentUser?.id);
  158. query1.equalTo('friend', this.uid);
  159. let query2 = new Parse.Query('Friends');
  160. query2.equalTo('user', this.uid);
  161. query2.equalTo('friend', this.currentUser?.id);
  162. let query = Parse.Query.or(query1, query2);
  163. query.notEqualTo('isDeleted', true);
  164. query.select('objectId', 'isPass', 'channel');
  165. this.friends = await query.first();
  166. }
  167. async getProfile() {
  168. let queryProfile = new Parse.Query('Profile');
  169. queryProfile.equalTo('user', this.uid);
  170. queryProfile.notEqualTo('isDeleted', true);
  171. queryProfile.include('user');
  172. let p = await queryProfile.first();
  173. this.profile = p;
  174. if (this.profile?.id) {
  175. this.user = this.profile?.get('user');
  176. } else {
  177. let queryUser = new Parse.Query('_User');
  178. queryUser.equalTo('objectId', this.uid);
  179. this.user = await queryUser.first();
  180. }
  181. this.birthdat = getBirthdatByIdNo(this.profile?.get('idcard') || '');
  182. this.constellation = getConstellation(this.profile?.get('idcard') || '');
  183. }
  184. async getCommentLeng(){
  185. let query = new Parse.Query('Room');
  186. query.equalTo('user', this.uid);
  187. query.notEqualTo('isDeleted', true);
  188. query.select('objectId');
  189. let r = await query.first();
  190. if(r?.id){
  191. this.room = r;
  192. // this.commentObj.score = await this.aiChatServ.getCommentScore(r?.id);
  193. let queryPost = new Parse.Query('DramaPostLog');
  194. queryPost.equalTo('room', r.id);
  195. queryPost.notEqualTo('isDeleted', true);
  196. queryPost.include('user');
  197. queryPost.descending('createdAt');
  198. queryPost.equalTo('isVerify',true)
  199. this.commentObj.count = await queryPost.count();
  200. queryPost.limit(10);
  201. this.commentObj.list = await queryPost.find();
  202. }
  203. console.log(this.commentObj);
  204. }
  205. /* 关注状态 */
  206. async getFollwState() {
  207. let query = new Parse.Query('ProfileRadar');
  208. query.equalTo('fromUser', this.currentUser?.id);
  209. query.equalTo('toUser', this.uid);
  210. query.notEqualTo('isDeleted', true);
  211. query.equalTo('name', '关注');
  212. let r = await query.first();
  213. this.isFollow = r?.id ? true : false;
  214. }
  215. // 生成浏览产品的浏览记录
  216. async browseLog() {
  217. let result = await this.judgeIsBrowse();
  218. let ProfileRadar, tool;
  219. if (result) {
  220. return;
  221. } else {
  222. // 创建一条浏览记录
  223. ProfileRadar = Parse.Object.extend('ProfileRadar');
  224. tool = new ProfileRadar();
  225. tool.set('name', '查看');
  226. tool.set('fromUser', {
  227. __type: 'Pointer',
  228. className: '_User',
  229. objectId: Parse.User.current()?.id,
  230. });
  231. tool.set('toUser', {
  232. __type: 'Pointer',
  233. className: '_User',
  234. objectId: this.user?.id,
  235. });
  236. tool.set('company', {
  237. __type: 'Pointer',
  238. className: 'Company',
  239. objectId: this.aiChatServ.company,
  240. });
  241. await tool.save();
  242. console.log('---创建了浏览历史记录---');
  243. }
  244. }
  245. // 根据点击查看记录半小时内是否有此浏览记录
  246. async judgeIsBrowse() {
  247. let ProfileRadar = new Parse.Query('ProfileRadar');
  248. ProfileRadar.equalTo('company', this.aiChatServ.company);
  249. ProfileRadar.equalTo('fromUser', Parse.User.current()?.id!);
  250. ProfileRadar.equalTo('toUser', this.user?.id,);
  251. ProfileRadar.greaterThanOrEqualTo(
  252. 'createdAt',
  253. new Date(new Date().getTime() - 1000 * 60 * 30)
  254. );
  255. ProfileRadar.equalTo('name', '查看');
  256. ProfileRadar.select('objectId');
  257. let result = await ProfileRadar.first();
  258. if (result) {
  259. return true;
  260. } else {
  261. return false;
  262. }
  263. }
  264. // async getRoom() {
  265. // let query = new Parse.Query('Room');
  266. // query.equalTo('company', this.aiChatServ.company);
  267. // query.equalTo('profile', this.profile?.id);
  268. // // query.equalTo('state', true);
  269. // query.notEqualTo('isDeleted', true);
  270. // query.select('objectId');
  271. // let r = await query.first();
  272. // this.room = r;
  273. // }
  274. /* 关注 */
  275. async onCollection() {
  276. let query = new Parse.Query('ProfileRadar');
  277. query.equalTo('toUser', this.uid);
  278. query.equalTo('fromUser', this.currentUser?.id);
  279. // query.notEqualTo('isDeleted', true);
  280. query.equalTo('name', '关注');
  281. let profileRadar = await query.first();
  282. if (!profileRadar?.id) {
  283. let radar = Parse.Object.extend('ProfileRadar');
  284. profileRadar = new radar();
  285. profileRadar?.set('toUser', {
  286. __type: 'Pointer',
  287. className: '_User',
  288. objectId: this.uid,
  289. });
  290. profileRadar?.set('company', {
  291. __type: 'Pointer',
  292. className: 'Company',
  293. objectId: this.currentUser?.get('company')?.id,
  294. });
  295. profileRadar?.set('fromUser', this.currentUser?.toPointer());
  296. profileRadar?.set('name', '关注');
  297. }
  298. profileRadar?.set('isDeleted', this.isFollow);
  299. await profileRadar?.save();
  300. this.isFollow = !this.isFollow;
  301. this.isFollow ? (this.numsObject.fans = Number(this.numsObject.fans) + 1) : (this.numsObject.fans = this.numsObject.fans - 1);
  302. }
  303. onShowImg(url: string) {
  304. this.currenImg = url;
  305. this.preview.show = 'inline-flex';
  306. }
  307. onShow() {
  308. if (this.uid == this.currentUser?.id) this.isOpen = true;
  309. }
  310. async onFriend() {
  311. if (this.friends?.id && !this.friends?.get('isPass')) {
  312. const toast = await this.toastController.create({
  313. message: '已申请,等待对方同意',
  314. color: 'warning',
  315. duration: 1500,
  316. });
  317. toast.present();
  318. return;
  319. }
  320. if (!this.friends?.id) {
  321. let obj = Parse.Object.extend('Friends');
  322. this.friends = new obj();
  323. this.friends?.set('user', this.currentUser?.toPointer());
  324. this.friends?.set('friend', this.user?.toPointer());
  325. this.friends?.set('company', this.aiChatServ.company);
  326. this.friends?.set('channel', this.user?.id + '-' + this.currentUser?.id);
  327. await this.friends?.save();
  328. const toast = await this.toastController.create({
  329. message: '已申请,等待对方同意',
  330. color: 'warning',
  331. duration: 1500,
  332. });
  333. toast.present();
  334. }
  335. }
  336. /* 更换背景 */
  337. async onSaveBackGround(e: any) {
  338. let url = e[0]?.url;
  339. console.log(url);
  340. if (!url) {
  341. const toast = await this.toastController.create({
  342. message: '请上传背景图片',
  343. color: 'warning',
  344. duration: 1000,
  345. });
  346. toast.present();
  347. return;
  348. }
  349. if (!this.profile?.id) {
  350. let obj = Parse.Object.extend('Profile');
  351. this.profile = new obj();
  352. this.profile?.set('mobile', Parse.User.current()?.get('mobile'));
  353. this.profile?.set('user', Parse.User.current()?.toPointer());
  354. this.profile?.set('company', {
  355. __type: 'Pointer',
  356. className: 'Company',
  357. objectId: this.aiChatServ.company,
  358. });
  359. }
  360. this.profile?.set('image', url);
  361. await this.profile?.save();
  362. const toast = await this.toastController.create({
  363. message: '保存成功',
  364. color: 'success',
  365. duration: 1000,
  366. });
  367. toast.present();
  368. this.isOpen = false;
  369. }
  370. onEdit() {
  371. this.router.navigate(['/user/setting'], {
  372. queryParams: {
  373. id: this.uid,
  374. },
  375. });
  376. }
  377. toMsg() {
  378. this.router.navigate(['live/chat/' + this.friends?.get('channel')]);
  379. }
  380. tourl(url:string, params:object){
  381. this.router.navigate([url,params]);
  382. }
  383. onSendGift() {
  384. console.log('点击送出礼物');
  385. // this.liveService.get_duration()
  386. }
  387. }