|
@@ -19,6 +19,7 @@ import {
|
|
|
import { MessageService } from '../../../services/message.service';
|
|
|
import { FlutterCompComponent } from '../../../app/components/flutter-comp/flutter-comp.component';
|
|
|
import { AvatarComponent } from '../../../app/components/avatar/avatar.component';
|
|
|
+import { AccountService } from '../../../services/account.service';
|
|
|
@Component({
|
|
|
selector: 'app-link-page',
|
|
|
templateUrl: './link-page.component.html',
|
|
@@ -47,13 +48,15 @@ export class LinkPageComponent implements OnInit {
|
|
|
text: string = '';
|
|
|
disabled: boolean = false;
|
|
|
showEmoji: boolean = false;
|
|
|
-
|
|
|
+ loading: boolean = true;
|
|
|
+ userVip:any
|
|
|
constructor(
|
|
|
public toastController: ToastController,
|
|
|
private loadingCtrl: LoadingController,
|
|
|
private alertController: AlertController,
|
|
|
private activateRoute: ActivatedRoute,
|
|
|
public aiServ: AiChatService,
|
|
|
+ private accServ: AccountService,
|
|
|
public msgServe: MessageService,
|
|
|
public liveService: LiveService
|
|
|
) {
|
|
@@ -90,8 +93,10 @@ export class LinkPageComponent implements OnInit {
|
|
|
});
|
|
|
loading.present();
|
|
|
await this.getRoom();
|
|
|
+ this.userVip = await this.accServ.getVip(this.room?.get('user').id)
|
|
|
this.initSwiperTimeEvent();
|
|
|
loading.dismiss();
|
|
|
+ this.loading = false;
|
|
|
}
|
|
|
async getRoom() {
|
|
|
let query = new Parse.Query('Room');
|