[SSO] Add set-password loading placeholder (#626)
* Preparing for new jslib // removed resetMasterPassword variable // Added sync service * initial commit of loading set password * Update jslib (e55528e
->700e945
) * center justify text * Reverted testing data
This commit is contained in:
parent
fa11382c08
commit
b251e1f73c
|
@ -3,7 +3,11 @@
|
||||||
<div class="col-5">
|
<div class="col-5">
|
||||||
<p class="lead text-center mb-4">{{'setMasterPassword' | i18n}}</p>
|
<p class="lead text-center mb-4">{{'setMasterPassword' | i18n}}</p>
|
||||||
<div class="card d-block">
|
<div class="card d-block">
|
||||||
<div class="card-body">
|
<div class="card-body text-center" *ngIf="syncLoading">
|
||||||
|
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
||||||
|
{{'loading' | i18n}}
|
||||||
|
</div>
|
||||||
|
<div class="card-body" *ngIf="!syncLoading">
|
||||||
<app-callout type="info">{{'ssoCompleteRegistration' | i18n}}</app-callout>
|
<app-callout type="info">{{'ssoCompleteRegistration' | i18n}}</app-callout>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<app-callout type="info" *ngIf="enforcedPolicyOptions">
|
<app-callout type="info" *ngIf="enforcedPolicyOptions">
|
||||||
|
|
|
@ -8,6 +8,7 @@ import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
||||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
import { PolicyService } from 'jslib/abstractions/policy.service';
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||||
|
import { SyncService } from 'jslib/abstractions/sync.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
@ -22,8 +23,9 @@ export class SetPasswordComponent extends BaseSetPasswordComponent {
|
||||||
constructor(apiService: ApiService, i18nService: I18nService,
|
constructor(apiService: ApiService, i18nService: I18nService,
|
||||||
cryptoService: CryptoService, messagingService: MessagingService,
|
cryptoService: CryptoService, messagingService: MessagingService,
|
||||||
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
||||||
platformUtilsService: PlatformUtilsService, policyService: PolicyService, router: Router) {
|
platformUtilsService: PlatformUtilsService, policyService: PolicyService, router: Router,
|
||||||
|
syncService: SyncService) {
|
||||||
super(i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
super(i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
||||||
platformUtilsService, policyService, router, apiService);
|
platformUtilsService, policyService, router, apiService, syncService);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,10 +5,7 @@ import {
|
||||||
ViewContainerRef,
|
ViewContainerRef,
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
|
||||||
import {
|
import { Router } from '@angular/router';
|
||||||
ActivatedRoute,
|
|
||||||
Router,
|
|
||||||
} from '@angular/router';
|
|
||||||
|
|
||||||
import { TwoFactorOptionsComponent } from './two-factor-options.component';
|
import { TwoFactorOptionsComponent } from './two-factor-options.component';
|
||||||
|
|
||||||
|
@ -37,25 +34,12 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
|
||||||
i18nService: I18nService, apiService: ApiService,
|
i18nService: I18nService, apiService: ApiService,
|
||||||
platformUtilsService: PlatformUtilsService, stateService: StateService,
|
platformUtilsService: PlatformUtilsService, stateService: StateService,
|
||||||
environmentService: EnvironmentService, private componentFactoryResolver: ComponentFactoryResolver,
|
environmentService: EnvironmentService, private componentFactoryResolver: ComponentFactoryResolver,
|
||||||
storageService: StorageService, private route: ActivatedRoute) {
|
storageService: StorageService) {
|
||||||
super(authService, router, i18nService, apiService, platformUtilsService, window, environmentService,
|
super(authService, router, i18nService, apiService, platformUtilsService, window, environmentService,
|
||||||
stateService, storageService);
|
stateService, storageService);
|
||||||
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
|
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
|
||||||
const queryParamsSub = this.route.queryParams.subscribe((qParams) => {
|
|
||||||
if (qParams.resetMasterPassword != null) {
|
|
||||||
this.resetMasterPassword = qParams.resetMasterPassword;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (queryParamsSub != null) {
|
|
||||||
queryParamsSub.unsubscribe();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
super.ngOnInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
anotherMethod() {
|
anotherMethod() {
|
||||||
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
|
const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent);
|
||||||
const modal = this.twoFactorOptionsModal.createComponent(factory).instance;
|
const modal = this.twoFactorOptionsModal.createComponent(factory).instance;
|
||||||
|
@ -82,11 +66,7 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
|
||||||
this.router.navigate([loginRedirect.route], { queryParams: loginRedirect.qParams });
|
this.router.navigate([loginRedirect.route], { queryParams: loginRedirect.qParams });
|
||||||
await this.stateService.remove('loginRedirect');
|
await this.stateService.remove('loginRedirect');
|
||||||
} else {
|
} else {
|
||||||
this.router.navigate([this.successRoute], {
|
this.router.navigate([this.successRoute]);
|
||||||
queryParams: {
|
|
||||||
resetMasterPassword: this.resetMasterPassword,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue