1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-28 10:54:54 +02:00
bitwarden-desktop/src/app/accounts/login.component.ts

63 lines
2.7 KiB
TypeScript
Raw Normal View History

2018-01-16 21:58:17 +01:00
import {
Component,
2018-02-02 18:31:21 +01:00
ComponentFactoryResolver,
ViewChild,
ViewContainerRef,
2018-01-16 21:58:17 +01:00
} from '@angular/core';
import { Router } from '@angular/router';
2018-02-08 16:37:54 +01:00
import { EnvironmentComponent } from './environment.component';
2018-02-02 18:31:21 +01:00
2018-01-23 05:37:36 +01:00
import { AuthService } from 'jslib/abstractions/auth.service';
2018-01-30 23:52:56 +01:00
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2019-07-02 14:18:42 +02:00
import { StateService } from 'jslib/abstractions/state.service';
2018-07-13 15:29:05 +02:00
import { StorageService } from 'jslib/abstractions/storage.service';
2018-02-08 16:48:50 +01:00
import { SyncService } from 'jslib/abstractions/sync.service';
2018-01-23 05:37:36 +01:00
2018-04-04 15:19:39 +02:00
import { LoginComponent as BaseLoginComponent } from 'jslib/angular/components/login.component';
2018-04-25 05:23:10 +02:00
import { ModalComponent } from 'jslib/angular/components/modal.component';
2020-08-18 22:13:15 +02:00
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service';
import { EnvironmentService } from 'jslib/abstractions/environment.service';
2018-04-04 15:19:39 +02:00
2018-01-16 21:58:17 +01:00
@Component({
selector: 'app-login',
templateUrl: 'login.component.html',
2018-01-16 21:58:17 +01:00
})
2018-04-04 15:19:39 +02:00
export class LoginComponent extends BaseLoginComponent {
2020-08-18 22:13:15 +02:00
@ViewChild('environment', { read: ViewContainerRef, static: true }) environmentModal: ViewContainerRef;
2018-02-02 18:31:21 +01:00
showingModal = false;
2020-08-18 22:13:15 +02:00
constructor(authService: AuthService, router: Router, i18nService: I18nService,
syncService: SyncService, private componentFactoryResolver: ComponentFactoryResolver,
platformUtilsService: PlatformUtilsService, stateService: StateService,
environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService,
cryptoFunctionService: CryptoFunctionService, storageService: StorageService) {
super(authService, router, platformUtilsService, i18nService, stateService, environmentService, passwordGenerationService, cryptoFunctionService, storageService);
2018-07-13 16:45:15 +02:00
super.onSuccessfulLogin = () => {
2018-04-25 18:08:21 +02:00
return syncService.fullSync(true);
};
}
2018-02-02 18:31:21 +01:00
settings() {
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
const modal = this.environmentModal.createComponent(factory).instance;
modal.onShown.subscribe(() => {
this.showingModal = true;
});
modal.onClosed.subscribe(() => {
this.showingModal = false;
modal.onShown.unsubscribe();
modal.onClosed.unsubscribe();
});
2018-02-02 18:31:21 +01:00
const childComponent = modal.show<EnvironmentComponent>(EnvironmentComponent,
this.environmentModal);
childComponent.onSaved.subscribe(() => {
modal.close();
});
}
2018-01-16 21:58:17 +01:00
}