All files / app/component/login-popup login-popup.component.ts

69.23% Statements 9/13
88.88% Branches 8/9
40% Functions 2/5
57.14% Lines 4/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 312x                         2x     2x 2x                          
import { Component } from '@angular/core';
import { runInAction } from 'mobx';
import { MobxAngularModule } from 'mobx-angular';
import { ConfigService } from '../../service/config.service';
import { Store } from '../../store/store';
 
@Component({
  selector: 'app-login-popup',
  templateUrl: './login-popup.component.html',
  styleUrls: ['./login-popup.component.scss'],
  host: { 'class': 'login-popup' },
  imports: [MobxAngularModule]
})
export class LoginPopupComponentI {
 
  constructor(
    public store: Store,
    public config: ConfigService,
  ) { }
 
  clear() {
    runInAction(() => this.store.account.authError = false);
  }
 
  doLogin() {
    this.clear();
    window.open(this.config.loginLink, "_blank");
  }
 
}