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';
|
2020-08-21 15:50:36 +02:00
|
|
|
|
2018-01-23 22:58:32 +01:00
|
|
|
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';
|
2020-08-21 15:50:36 +02:00
|
|
|
import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service';
|
|
|
|
import { EnvironmentService } from 'jslib/abstractions/environment.service';
|
2018-01-30 23:52:56 +01:00
|
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
2020-08-21 15:50:36 +02:00
|
|
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
2018-10-03 15:42:11 +02:00
|
|
|
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';
|
2018-04-04 15:19:39 +02:00
|
|
|
|
2018-01-16 21:58:17 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'app-login',
|
2018-04-06 18:25:22 +02:00
|
|
|
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
|
|
|
|
2019-04-02 15:15:58 +02: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) {
|
2020-08-21 15:50:36 +02:00
|
|
|
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-01-23 22:58:32 +01:00
|
|
|
}
|
2018-02-02 18:31:21 +01:00
|
|
|
|
|
|
|
settings() {
|
|
|
|
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
|
|
|
|
const modal = this.environmentModal.createComponent(factory).instance;
|
2019-04-02 15:15:58 +02:00
|
|
|
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
|
|
|
}
|