bitwarden-estensione-browser/angular/src/components/two-factor-options.componen...

39 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-04-04 15:47:43 +02:00
import {
Directive,
2018-04-04 15:47:43 +02:00
EventEmitter,
OnInit,
Output,
} from '@angular/core';
import { Router } from '@angular/router';
import { TwoFactorProviderType } from 'jslib-common/enums/twoFactorProviderType';
2018-04-04 15:47:43 +02:00
import { AuthService } from 'jslib-common/abstractions/auth.service';
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
2018-04-04 15:47:43 +02:00
@Directive()
2018-04-04 15:47:43 +02:00
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 06:18:31 +02:00
protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService,
protected win: Window) { }
2018-04-04 15:47:43 +02:00
ngOnInit() {
2018-05-16 03:11:20 +02:00
this.providers = this.authService.getSupportedTwoFactorProviders(this.win);
2018-04-04 15:47:43 +02:00
}
choose(p: any) {
this.onProviderSelected.emit(p.type);
}
recover() {
this.platformUtilsService.launchUri('https://help.bitwarden.com/article/lost-two-step-device/');
this.onRecoverSelected.emit();
}
}