bitwarden-estensione-browser/src/app/settings/create-organization.compone...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-07-02 23:09:53 +02:00
import { Component, OnInit, ViewChild } from "@angular/core";
2019-03-21 18:11:40 +01:00
import { ActivatedRoute } from "@angular/router";
2018-07-02 23:09:53 +02:00
import { first } from "rxjs/operators";
import { PlanType } from "jslib-common/enums/planType";
import { ProductType } from "jslib-common/enums/productType";
2021-01-15 20:46:25 +01:00
2019-03-21 18:11:40 +01:00
import { OrganizationPlansComponent } from "./organization-plans.component";
2018-07-02 23:09:53 +02:00
@Component({
selector: "app-create-organization",
templateUrl: "create-organization.component.html",
})
export class CreateOrganizationComponent implements OnInit {
@ViewChild(OrganizationPlansComponent, { static: true })
orgPlansComponent: OrganizationPlansComponent;
2018-07-02 23:09:53 +02:00
2019-03-21 18:11:40 +01:00
constructor(private route: ActivatedRoute) {}
2018-07-02 23:09:53 +02:00
ngOnInit() {
this.route.queryParams.pipe(first()).subscribe(async (qParams) => {
2021-01-15 20:46:25 +01:00
if (qParams.plan === "families") {
this.orgPlansComponent.plan = PlanType.FamiliesAnnually;
this.orgPlansComponent.product = ProductType.Families;
} else if (qParams.plan === "teams") {
this.orgPlansComponent.plan = PlanType.TeamsAnnually;
this.orgPlansComponent.product = ProductType.Teams;
} else if (qParams.plan === "enterprise") {
this.orgPlansComponent.plan = PlanType.EnterpriseAnnually;
this.orgPlansComponent.product = ProductType.Enterprise;
}
});
}
2018-07-02 23:09:53 +02:00
}