thingsboard/ui-ngx/src/app/modules/home/home.component.ts
2024-01-23 11:20:36 +02:00

202 lines
6.3 KiB
TypeScript

///
/// Copyright © 2016-2024 The Thingsboard Authors
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
import { AfterViewInit, Component, ElementRef, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { startWith, skip, Subject } from 'rxjs';
import { Store } from '@ngrx/store';
import { debounceTime, distinctUntilChanged, takeUntil } from 'rxjs/operators';
import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
import { PageComponent } from '@shared/components/page.component';
import { AppState } from '@core/core.state';
import { getCurrentAuthState } from '@core/auth/auth.selectors';
import { MediaBreakpoints } from '@shared/models/constants';
import screenfull from 'screenfull';
import { MatSidenav } from '@angular/material/sidenav';
import { AuthState } from '@core/auth/auth.models';
import { WINDOW } from '@core/services/window.service';
import { instanceOfSearchableComponent, ISearchableComponent } from '@home/models/searchable-component.models';
import { ActiveComponentService } from '@core/services/active-component.service';
import { RouterTabsComponent } from '@home/components/router-tabs.component';
import { FormBuilder } from '@angular/forms';
import { ActivatedRoute } from '@angular/router';
import { isDefined, isDefinedAndNotNull } from '@core/utils';
@Component({
selector: 'tb-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent extends PageComponent implements AfterViewInit, OnInit, OnDestroy {
authState: AuthState = getCurrentAuthState(this.store);
forceFullscreen = this.authState.forceFullscreen;
activeComponent: any;
searchableComponent: ISearchableComponent;
sidenavMode: 'over' | 'push' | 'side' = 'side';
sidenavOpened = true;
logo = 'assets/logo_title_white.svg';
@ViewChild('sidenav')
sidenav: MatSidenav;
@ViewChild('searchInput') searchInputField: ElementRef;
fullscreenEnabled = screenfull.isEnabled;
searchEnabled = false;
showSearch = false;
textSearch = this.fb.control('', {nonNullable: true});
hideLoadingBar = false;
private destroy$ = new Subject<void>();
constructor(protected store: Store<AppState>,
@Inject(WINDOW) private window: Window,
private activeComponentService: ActiveComponentService,
private fb: FormBuilder,
private route: ActivatedRoute,
public breakpointObserver: BreakpointObserver) {
super(store);
}
ngOnInit() {
const isGtSm = this.breakpointObserver.isMatched(MediaBreakpoints['gt-sm']);
this.sidenavMode = isGtSm ? 'side' : 'over';
this.sidenavOpened = isGtSm;
this.breakpointObserver
.observe(MediaBreakpoints['gt-sm'])
.pipe(takeUntil(this.destroy$))
.subscribe((state: BreakpointState) => {
if (state.matches) {
this.sidenavMode = 'side';
this.sidenavOpened = true;
} else {
this.sidenavMode = 'over';
this.sidenavOpened = false;
}
}
);
}
ngOnDestroy() {
this.destroy$.next();
this.destroy$.complete();
}
ngAfterViewInit() {
this.textSearch.valueChanges.pipe(
debounceTime(150),
startWith(''),
distinctUntilChanged((a: string, b: string) => a.trim() === b.trim()),
skip(1),
takeUntil(this.destroy$)
).subscribe(value => this.searchTextUpdated(value.trim()));
}
sidenavClicked() {
if (this.sidenavMode === 'over') {
this.sidenav.toggle();
}
}
toggleFullscreen() {
if (screenfull.isEnabled) {
screenfull.toggle();
}
}
isFullscreen() {
return screenfull.isFullscreen;
}
goBack() {
this.window.history.back();
}
activeComponentChanged(activeComponent: any) {
this.activeComponentService.setCurrentActiveComponent(activeComponent);
if (!this.activeComponent) {
setTimeout(() => {
this.updateActiveComponent(activeComponent);
}, 0);
} else {
this.updateActiveComponent(activeComponent);
}
}
private updateActiveComponent(activeComponent: any) {
this.showSearch = false;
this.hideLoadingBar = false;
this.textSearch.reset('', {emitEvent: false});
this.activeComponent = activeComponent;
let showLoadingBar: boolean;
if (isDefined(this.route.children[0]?.snapshot?.data?.showLoadingBar)) {
showLoadingBar = this.route.children[0]?.snapshot?.data?.showLoadingBar;
} else if (isDefined(this.route.children[0]?.children[0]?.snapshot?.data?.showLoadingBar)) {
showLoadingBar = this.route.children[0]?.children[0]?.snapshot?.data?.showLoadingBar;
}
if (activeComponent && activeComponent instanceof RouterTabsComponent) {
this.hideLoadingBar = isDefinedAndNotNull(showLoadingBar) ? !showLoadingBar : true;
} else if (isDefinedAndNotNull(showLoadingBar)) {
this.hideLoadingBar = !showLoadingBar;
}
if (this.activeComponent && instanceOfSearchableComponent(this.activeComponent)) {
this.searchEnabled = true;
this.searchableComponent = this.activeComponent;
} else {
this.searchEnabled = false;
this.searchableComponent = null;
}
}
displaySearchMode(): boolean {
return this.searchEnabled && this.showSearch;
}
openSearch() {
if (this.searchEnabled) {
this.showSearch = true;
setTimeout(() => {
this.searchInputField.nativeElement.focus();
this.searchInputField.nativeElement.setSelectionRange(0, 0);
}, 10);
}
}
closeSearch() {
if (this.searchEnabled) {
this.showSearch = false;
if (this.textSearch.value.length) {
this.textSearch.reset();
}
}
}
private searchTextUpdated(searchText: string) {
if (this.searchableComponent) {
this.searchableComponent.onSearchTextUpdated(searchText);
}
}
}