mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
|
|
import { MessagingService } from "jslib-common/abstractions/messaging.service";
|
|
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
|
import { ProviderService } from "jslib-common/abstractions/provider.service";
|
|
import { SyncService } from "jslib-common/abstractions/sync.service";
|
|
import { TokenService } from "jslib-common/abstractions/token.service";
|
|
import { Provider } from "jslib-common/models/domain/provider";
|
|
|
|
@Component({
|
|
selector: "app-navbar",
|
|
templateUrl: "navbar.component.html",
|
|
})
|
|
export class NavbarComponent implements OnInit {
|
|
selfHosted = false;
|
|
name: string;
|
|
email: string;
|
|
providers: Provider[] = [];
|
|
|
|
constructor(
|
|
private messagingService: MessagingService,
|
|
private platformUtilsService: PlatformUtilsService,
|
|
private tokenService: TokenService,
|
|
private providerService: ProviderService,
|
|
private syncService: SyncService
|
|
) {
|
|
this.selfHosted = this.platformUtilsService.isSelfHost();
|
|
}
|
|
|
|
async ngOnInit() {
|
|
this.name = await this.tokenService.getName();
|
|
this.email = await this.tokenService.getEmail();
|
|
if (this.name == null || this.name.trim() === "") {
|
|
this.name = this.email;
|
|
}
|
|
|
|
// Ensure provides are loaded
|
|
if ((await this.syncService.getLastSync()) == null) {
|
|
await this.syncService.fullSync(false);
|
|
}
|
|
this.providers = await this.providerService.getAll();
|
|
}
|
|
|
|
lock() {
|
|
this.messagingService.send("lockVault");
|
|
}
|
|
|
|
logOut() {
|
|
this.messagingService.send("logout");
|
|
}
|
|
}
|