bitwarden-estensione-browser/src/app/layouts/organization-layout.compone...

65 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-06-08 23:08:19 +02:00
import {
Component,
NgZone,
OnDestroy,
2018-07-03 21:11:58 +02:00
OnInit,
2018-06-08 23:08:19 +02:00
} from '@angular/core';
2018-07-03 21:11:58 +02:00
import { ActivatedRoute } from '@angular/router';
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
import { EnvironmentService } from 'jslib/abstractions/environment.service';
2020-06-25 22:30:45 +02:00
import { UserService } from 'jslib/abstractions/user.service';
2018-07-03 21:11:58 +02:00
import { Organization } from 'jslib/models/domain/organization';
2018-06-08 23:08:19 +02:00
const BroadcasterSubscriptionId = 'OrganizationLayoutComponent';
2018-06-08 23:08:19 +02:00
@Component({
selector: 'app-organization-layout',
templateUrl: 'organization-layout.component.html',
})
export class OrganizationLayoutComponent implements OnInit, OnDestroy {
2018-07-03 21:11:58 +02:00
organization: Organization;
private organizationId: string;
private enterpriseUrl: string;
2018-07-03 21:11:58 +02:00
constructor(private route: ActivatedRoute, private userService: UserService,
private broadcasterService: BroadcasterService, private environmentService: EnvironmentService,
private ngZone: NgZone) { }
2018-07-03 21:11:58 +02:00
ngOnInit() {
this.enterpriseUrl = 'https://enterprise.bitwarden.com';
if (this.environmentService.enterpriseUrl != null) {
this.enterpriseUrl = this.environmentService.enterpriseUrl;
} else if (this.environmentService.baseUrl != null) {
this.enterpriseUrl = this.environmentService.baseUrl + '/enterprise';
}
2018-07-06 22:36:51 +02:00
document.body.classList.remove('layout_frontend');
2018-07-03 21:11:58 +02:00
this.route.params.subscribe(async (params) => {
this.organizationId = params.organizationId;
await this.load();
});
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => {
switch (message.command) {
case 'updatedOrgLicense':
await this.load();
break;
}
});
});
}
ngOnDestroy() {
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
2018-07-03 21:11:58 +02:00
}
async load() {
this.organization = await this.userService.getOrganization(this.organizationId);
}
}