Files
clients/src/angular/components/two-factor-options.component.ts

39 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-04-04 09:47:43 -04:00
import {
EventEmitter,
Input,
OnInit,
Output,
} from '@angular/core';
import { Router } from '@angular/router';
import { TwoFactorProviderType } from '../../enums/twoFactorProviderType';
import { AuthService } from '../../abstractions/auth.service';
import { I18nService } from '../../abstractions/i18n.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
export class TwoFactorOptionsComponent implements OnInit {
@Output() onProviderSelected = new EventEmitter<TwoFactorProviderType>();
@Output() onRecoverSelected = new EventEmitter();
providers: any[] = [];
constructor(protected authService: AuthService, protected router: Router,
2018-04-07 00:18:31 -04:00
protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService,
protected win: Window) { }
2018-04-04 09:47:43 -04:00
ngOnInit() {
2018-05-15 21:11:20 -04:00
this.providers = this.authService.getSupportedTwoFactorProviders(this.win);
2018-04-04 09:47:43 -04:00
}
choose(p: any) {
this.onProviderSelected.emit(p.type);
}
recover() {
this.platformUtilsService.eventTrack('Selected Recover');
2018-04-04 09:47:43 -04:00
this.platformUtilsService.launchUri('https://help.bitwarden.com/article/lost-two-step-device/');
this.onRecoverSelected.emit();
}
}