mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { Component, Input, OnInit } from "@angular/core";
|
|
|
|
import { OrganizationService } from "@bitwarden/common/abstractions/organization.service";
|
|
import { StateService } from "@bitwarden/common/abstractions/state.service";
|
|
|
|
@Component({
|
|
selector: "app-export-scope-callout",
|
|
templateUrl: "export-scope-callout.component.html",
|
|
})
|
|
export class ExportScopeCalloutComponent implements OnInit {
|
|
@Input() organizationId: string = null;
|
|
|
|
show = false;
|
|
scopeConfig: {
|
|
title: string;
|
|
description: string;
|
|
scopeIdentifier: string;
|
|
};
|
|
|
|
constructor(
|
|
protected organizationService: OrganizationService,
|
|
protected stateService: StateService
|
|
) {}
|
|
|
|
async ngOnInit(): Promise<void> {
|
|
if (!(await this.organizationService.hasOrganizations())) {
|
|
return;
|
|
}
|
|
this.scopeConfig =
|
|
this.organizationId != null
|
|
? {
|
|
title: "exportingOrganizationVaultTitle",
|
|
description: "exportingOrganizationVaultDescription",
|
|
scopeIdentifier: (await this.organizationService.get(this.organizationId)).name,
|
|
}
|
|
: {
|
|
title: "exportingPersonalVaultTitle",
|
|
description: "exportingPersonalVaultDescription",
|
|
scopeIdentifier: await this.stateService.getEmail(),
|
|
};
|
|
this.show = true;
|
|
}
|
|
}
|