1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

implement web onInit

This commit is contained in:
rr-bw
2024-08-23 10:27:11 -07:00
parent d4213fba2e
commit d917426afa
5 changed files with 79 additions and 6 deletions

View File

@@ -1,11 +1,13 @@
import { CommonModule } from "@angular/common";
import { Component, OnInit } from "@angular/core";
import { FormBuilder, ReactiveFormsModule, Validators } from "@angular/forms";
import { ActivatedRoute, RouterModule } from "@angular/router";
import { firstValueFrom, Subject, takeUntil } from "rxjs";
import { ActivatedRoute, Router, RouterModule } from "@angular/router";
import { first, firstValueFrom, Subject, takeUntil } from "rxjs";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { LoginEmailServiceAbstraction } from "@bitwarden/auth/common";
import { ClientType } from "@bitwarden/common/enums";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import {
AsyncActionsModule,
ButtonModule,
@@ -30,7 +32,9 @@ import { LoginService } from "./login.service";
],
})
export class LoginComponentV2 implements OnInit {
protected formGroup = this.formBuilder.group({
clientType: ClientType;
formGroup = this.formBuilder.group({
email: ["", [Validators.required, Validators.email]],
rememberEmail: [false],
});
@@ -42,9 +46,17 @@ export class LoginComponentV2 implements OnInit {
private formBuilder: FormBuilder,
private loginEmailService: LoginEmailServiceAbstraction,
private loginService: LoginService,
private platformUtilsService: PlatformUtilsService,
private router: Router,
) {}
async ngOnInit(): Promise<void> {
this.clientType = this.platformUtilsService.getClientType();
if (this.clientType === ClientType.Web) {
await this.webOnInit();
}
let paramEmailIsSet = false;
this.activatedRoute.queryParams.pipe(takeUntil(this.destroy$)).subscribe((params) => {
@@ -63,6 +75,8 @@ export class LoginComponentV2 implements OnInit {
if (!paramEmailIsSet) {
await this.loadEmailSettings();
}
// If there's an existing org invite, use it to get the password policies
await this.loginService.handleExistingOrgInvite();
}
submit = async () => {};
@@ -87,4 +101,28 @@ export class LoginComponentV2 implements OnInit {
}
}
}
private async webOnInit(): Promise<void> {
this.activatedRoute.queryParams.pipe(first(), takeUntil(this.destroy$)).subscribe((qParams) => {
// If there is an query parameter called 'org', set previousUrl to `/create-organization?org=paramValue`
if (qParams.org != null) {
const route = this.router.createUrlTree(["create-organization"], {
queryParams: { plan: qParams.org },
});
this.loginService.setPreviousUrl(route);
}
/**
* If there is a query parameter called 'sponsorshipToken', that means they are coming
* from an email for sponsoring a families organization. If so, then set the prevousUrl
* to `/setup/families-for-enterprise?token=paramValue`
*/
if (qParams.sponsorshipToken != null) {
const route = this.router.createUrlTree(["setup/families-for-enterprise"], {
queryParams: { token: qParams.sponsorshipToken },
});
this.loginService.setPreviousUrl(route);
}
});
}
}