mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* Got trial page working without the form set up * Set up the form to create SM subscription * Add free SM trial page and sign up * Conner's changes * fixed imports * Set isFromSecretsManagerTrial * Fixed OrgKey location * Add isFromSecretsManager prop to free org create * Add LTO callout * Switch LTO to background box * Defect: AC-2081 * Fixed typo "Secrets Manger" to "Secrets Manager" * Removed discount price logic for storage and secrets manager prices since they don't apply --------- Co-authored-by: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Co-authored-by: Conner Turnbull <cturnbull@bitwarden.com>
284 lines
9.3 KiB
TypeScript
284 lines
9.3 KiB
TypeScript
import { StepperSelectionEvent } from "@angular/cdk/stepper";
|
|
import { TitleCasePipe } from "@angular/common";
|
|
import { Component, OnDestroy, OnInit, ViewChild } from "@angular/core";
|
|
import { UntypedFormBuilder, Validators } from "@angular/forms";
|
|
import { ActivatedRoute, Router } from "@angular/router";
|
|
import { Subject, takeUntil } from "rxjs";
|
|
|
|
import { PolicyApiServiceAbstraction } from "@bitwarden/common/admin-console/abstractions/policy/policy-api.service.abstraction";
|
|
import { PolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction";
|
|
import { PolicyData } from "@bitwarden/common/admin-console/models/data/policy.data";
|
|
import { MasterPasswordPolicyOptions } from "@bitwarden/common/admin-console/models/domain/master-password-policy-options";
|
|
import { Policy } from "@bitwarden/common/admin-console/models/domain/policy";
|
|
import { PlanType } from "@bitwarden/common/billing/enums";
|
|
import { ProductType } from "@bitwarden/common/enums";
|
|
import { ReferenceEventRequest } from "@bitwarden/common/models/request/reference-event.request";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
|
|
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
|
|
|
|
import { RouterService } from "./../../core/router.service";
|
|
import { SubscriptionType } from "./secrets-manager/secrets-manager-trial-billing-step.component";
|
|
import { VerticalStepperComponent } from "./vertical-stepper/vertical-stepper.component";
|
|
|
|
enum ValidOrgParams {
|
|
families = "families",
|
|
enterprise = "enterprise",
|
|
teams = "teams",
|
|
teamsStarter = "teamsStarter",
|
|
individual = "individual",
|
|
premium = "premium",
|
|
free = "free",
|
|
}
|
|
|
|
enum ValidLayoutParams {
|
|
default = "default",
|
|
teams = "teams",
|
|
teams1 = "teams1",
|
|
teams2 = "teams2",
|
|
teams3 = "teams3",
|
|
enterprise = "enterprise",
|
|
enterprise1 = "enterprise1",
|
|
enterprise2 = "enterprise2",
|
|
cnetcmpgnent = "cnetcmpgnent",
|
|
cnetcmpgnind = "cnetcmpgnind",
|
|
cnetcmpgnteams = "cnetcmpgnteams",
|
|
abmenterprise = "abmenterprise",
|
|
abmteams = "abmteams",
|
|
secretsManager = "secretsManager",
|
|
}
|
|
|
|
@Component({
|
|
selector: "app-trial",
|
|
templateUrl: "trial-initiation.component.html",
|
|
})
|
|
export class TrialInitiationComponent implements OnInit, OnDestroy {
|
|
email = "";
|
|
fromOrgInvite = false;
|
|
org = "";
|
|
orgInfoSubLabel = "";
|
|
orgId = "";
|
|
orgLabel = "";
|
|
billingSubLabel = "";
|
|
layout = "default";
|
|
plan: PlanType;
|
|
product: ProductType;
|
|
accountCreateOnly = true;
|
|
useTrialStepper = false;
|
|
policies: Policy[];
|
|
enforcedPolicyOptions: MasterPasswordPolicyOptions;
|
|
trialFlowOrgs: string[] = [
|
|
ValidOrgParams.teams,
|
|
ValidOrgParams.teamsStarter,
|
|
ValidOrgParams.enterprise,
|
|
ValidOrgParams.families,
|
|
];
|
|
routeFlowOrgs: string[] = [
|
|
ValidOrgParams.free,
|
|
ValidOrgParams.premium,
|
|
ValidOrgParams.individual,
|
|
];
|
|
layouts = ValidLayoutParams;
|
|
orgTypes = ValidOrgParams;
|
|
referenceData: ReferenceEventRequest;
|
|
@ViewChild("stepper", { static: false }) verticalStepper: VerticalStepperComponent;
|
|
|
|
orgInfoFormGroup = this.formBuilder.group({
|
|
name: ["", { validators: [Validators.required, Validators.maxLength(50)], updateOn: "change" }],
|
|
email: [""],
|
|
});
|
|
|
|
private set referenceDataId(referenceId: string) {
|
|
if (referenceId != null) {
|
|
this.referenceData.id = referenceId;
|
|
} else {
|
|
this.referenceData.id = ("; " + document.cookie)
|
|
.split("; reference=")
|
|
.pop()
|
|
.split(";")
|
|
.shift();
|
|
}
|
|
|
|
if (this.referenceData.id === "") {
|
|
this.referenceData.id = null;
|
|
} else {
|
|
// Matches "_ga_QBRN562QQQ=value1.value2.session" and captures values and session.
|
|
const regex = /_ga_QBRN562QQQ=([^.]+)\.([^.]+)\.(\d+)/;
|
|
const match = document.cookie.match(regex);
|
|
if (match) {
|
|
this.referenceData.session = match[3];
|
|
}
|
|
}
|
|
}
|
|
|
|
private destroy$ = new Subject<void>();
|
|
|
|
constructor(
|
|
private route: ActivatedRoute,
|
|
protected router: Router,
|
|
private formBuilder: UntypedFormBuilder,
|
|
private titleCasePipe: TitleCasePipe,
|
|
private stateService: StateService,
|
|
private logService: LogService,
|
|
private policyApiService: PolicyApiServiceAbstraction,
|
|
private policyService: PolicyService,
|
|
private i18nService: I18nService,
|
|
private routerService: RouterService,
|
|
) {}
|
|
|
|
async ngOnInit(): Promise<void> {
|
|
this.route.queryParams.pipe(takeUntil(this.destroy$)).subscribe((qParams) => {
|
|
this.referenceData = new ReferenceEventRequest();
|
|
if (qParams.email != null && qParams.email.indexOf("@") > -1) {
|
|
this.email = qParams.email;
|
|
this.fromOrgInvite = qParams.fromOrgInvite === "true";
|
|
}
|
|
|
|
this.referenceDataId = qParams.reference;
|
|
|
|
if (Object.values(ValidLayoutParams).includes(qParams.layout)) {
|
|
this.layout = qParams.layout;
|
|
this.accountCreateOnly = false;
|
|
}
|
|
|
|
if (this.trialFlowOrgs.includes(qParams.org)) {
|
|
this.org = qParams.org;
|
|
this.orgLabel = this.titleCasePipe.transform(this.orgDisplayName);
|
|
this.useTrialStepper = true;
|
|
this.referenceData.flow = qParams.org;
|
|
|
|
if (this.org === ValidOrgParams.families) {
|
|
this.plan = PlanType.FamiliesAnnually;
|
|
this.product = ProductType.Families;
|
|
} else if (this.org === ValidOrgParams.teamsStarter) {
|
|
this.plan = PlanType.TeamsStarter;
|
|
this.product = ProductType.TeamsStarter;
|
|
} else if (this.org === ValidOrgParams.teams) {
|
|
this.plan = PlanType.TeamsAnnually;
|
|
this.product = ProductType.Teams;
|
|
} else if (this.org === ValidOrgParams.enterprise) {
|
|
this.plan = PlanType.EnterpriseAnnually;
|
|
this.product = ProductType.Enterprise;
|
|
}
|
|
} else if (this.routeFlowOrgs.includes(qParams.org)) {
|
|
this.referenceData.flow = qParams.org;
|
|
const route = this.router.createUrlTree(["create-organization"], {
|
|
queryParams: { plan: qParams.org },
|
|
});
|
|
this.routerService.setPreviousUrl(route.toString());
|
|
}
|
|
|
|
// Are they coming from an email for sponsoring a families organization
|
|
// After logging in redirect them to setup the families sponsorship
|
|
this.setupFamilySponsorship(qParams.sponsorshipToken);
|
|
});
|
|
|
|
const invite = await this.stateService.getOrganizationInvitation();
|
|
if (invite != null) {
|
|
try {
|
|
const policies = await this.policyApiService.getPoliciesByToken(
|
|
invite.organizationId,
|
|
invite.token,
|
|
invite.email,
|
|
invite.organizationUserId,
|
|
);
|
|
if (policies.data != null) {
|
|
const policiesData = policies.data.map((p) => new PolicyData(p));
|
|
this.policies = policiesData.map((p) => new Policy(p));
|
|
}
|
|
} catch (e) {
|
|
this.logService.error(e);
|
|
}
|
|
}
|
|
|
|
if (this.policies != null) {
|
|
this.policyService
|
|
.masterPasswordPolicyOptions$(this.policies)
|
|
.pipe(takeUntil(this.destroy$))
|
|
.subscribe((enforcedPasswordPolicyOptions) => {
|
|
this.enforcedPolicyOptions = enforcedPasswordPolicyOptions;
|
|
});
|
|
}
|
|
|
|
this.orgInfoFormGroup.controls.name.valueChanges
|
|
.pipe(takeUntil(this.destroy$))
|
|
.subscribe(() => {
|
|
this.orgInfoFormGroup.controls.name.markAsTouched();
|
|
});
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
this.destroy$.next();
|
|
this.destroy$.complete();
|
|
}
|
|
|
|
stepSelectionChange(event: StepperSelectionEvent) {
|
|
// Set org info sub label
|
|
if (event.selectedIndex === 1 && this.orgInfoFormGroup.controls.name.value === "") {
|
|
this.orgInfoSubLabel =
|
|
"Enter your " +
|
|
this.titleCasePipe.transform(this.orgDisplayName) +
|
|
" organization information";
|
|
} else if (event.previouslySelectedIndex === 1) {
|
|
this.orgInfoSubLabel = this.orgInfoFormGroup.controls.name.value;
|
|
}
|
|
|
|
//set billing sub label
|
|
if (event.selectedIndex === 2) {
|
|
this.billingSubLabel = this.i18nService.t("billingTrialSubLabel");
|
|
}
|
|
}
|
|
|
|
createdAccount(email: string) {
|
|
this.email = email;
|
|
this.orgInfoFormGroup.get("email")?.setValue(email);
|
|
this.verticalStepper.next();
|
|
}
|
|
|
|
billingSuccess(event: any) {
|
|
this.orgId = event?.orgId;
|
|
this.billingSubLabel = event?.subLabelText;
|
|
this.verticalStepper.next();
|
|
}
|
|
|
|
navigateToOrgVault() {
|
|
this.router.navigate(["organizations", this.orgId, "vault"]);
|
|
}
|
|
|
|
navigateToOrgInvite() {
|
|
this.router.navigate(["organizations", this.orgId, "members"]);
|
|
}
|
|
|
|
previousStep() {
|
|
this.verticalStepper.previous();
|
|
}
|
|
|
|
get orgDisplayName() {
|
|
if (this.org === "teamsStarter") {
|
|
return "Teams Starter";
|
|
}
|
|
|
|
return this.org;
|
|
}
|
|
|
|
get freeTrialText() {
|
|
const translationKey =
|
|
this.layout === this.layouts.secretsManager
|
|
? "startYour7DayFreeTrialOfBitwardenSecretsManagerFor"
|
|
: "startYour7DayFreeTrialOfBitwardenFor";
|
|
|
|
return this.i18nService.t(translationKey, this.org);
|
|
}
|
|
|
|
private setupFamilySponsorship(sponsorshipToken: string) {
|
|
if (sponsorshipToken != null) {
|
|
const route = this.router.createUrlTree(["setup/families-for-enterprise"], {
|
|
queryParams: { plan: sponsorshipToken },
|
|
});
|
|
this.routerService.setPreviousUrl(route.toString());
|
|
}
|
|
}
|
|
|
|
protected readonly SubscriptionType = SubscriptionType;
|
|
}
|