mirror of
https://github.com/bitwarden/web
synced 2025-12-23 03:33:31 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
ViewChild,
|
|
} from '@angular/core';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
|
|
import { PlanType } from 'jslib/enums/planType';
|
|
import { ProductType } from 'jslib/enums/productType';
|
|
|
|
import { OrganizationPlansComponent } from './organization-plans.component';
|
|
|
|
@Component({
|
|
selector: 'app-create-organization',
|
|
templateUrl: 'create-organization.component.html',
|
|
})
|
|
export class CreateOrganizationComponent implements OnInit {
|
|
@ViewChild(OrganizationPlansComponent, { static: true }) orgPlansComponent: OrganizationPlansComponent;
|
|
|
|
constructor(private route: ActivatedRoute) { }
|
|
|
|
ngOnInit() {
|
|
const queryParamsSub = this.route.queryParams.subscribe(async (qParams) => {
|
|
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;
|
|
}
|
|
if (queryParamsSub != null) {
|
|
queryParamsSub.unsubscribe();
|
|
}
|
|
});
|
|
}
|
|
}
|