sh_discord_bot/kdb-web/src/app/app.component.ts

75 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-02-16 21:38:29 +01:00
import { Component, OnInit } from "@angular/core";
import { TranslateService } from "@ngx-translate/core";
import { PrimeNGConfig } from "primeng/api";
import { AuthService } from "./services/auth/auth.service";
import { SocketService } from "./services/socket/socket.service";
import { ThemeService } from "./services/theme/theme.service";
import { ActivatedRoute, Router } from "@angular/router";
import { SpinnerService } from "./services/spinner/spinner.service";
import { DataService } from "./services/data/data.service";
import { SidebarService } from "./services/sidebar/sidebar.service";
import { Server } from "./models/data/server.model";
import { Queries } from "./models/graphql/queries.model";
import { Query } from "./models/graphql/query.model";
2022-10-16 00:13:03 +02:00
@Component({
2023-02-16 21:38:29 +01:00
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"]
2022-10-16 00:13:03 +02:00
})
export class AppComponent implements OnInit {
themeName!: string;
sidebarWidth!: string;
isLoggedIn: boolean = false;
2022-10-16 00:13:03 +02:00
constructor(
2022-10-16 16:01:37 +02:00
private authService: AuthService,
private themeService: ThemeService,
private socket: SocketService,
private translateService: TranslateService,
2023-02-16 21:38:29 +01:00
private config: PrimeNGConfig,
) {
this.themeService.sidebarWidth$.subscribe(value => {
this.sidebarWidth = value;
});
this.themeService.themeName$.subscribe(value => {
this.themeName = value;
});
2022-10-16 16:01:37 +02:00
this.authService.isLoggedIn$.subscribe(value => {
this.isLoggedIn = value;
});
}
ngOnInit(): void {
2023-02-16 21:38:29 +01:00
this.translateService.setDefaultLang("en");
2022-10-16 00:13:03 +02:00
this.themeService.loadTheme();
2022-10-16 16:01:37 +02:00
this.socket.startSocket();
2022-10-16 00:13:03 +02:00
}
loadLang(): void {
let lang = localStorage.getItem(`default_lang`);
if (!lang) {
2023-02-16 21:38:29 +01:00
lang = "en";
this.setLang(lang);
}
this.translate(lang);
}
setLang(lang: string): void {
localStorage.setItem(`default_lang`, lang);
}
translate(lang: string) {
this.translateService.use(lang);
2023-02-16 21:38:29 +01:00
this.translateService.get("primeng").subscribe(res => this.config.setTranslation(res));
}
setSideWidth($event: any): void {
this.themeService.setSideWidth($event);
}
2022-10-16 00:13:03 +02:00
}