thingsboard/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-widget-select.component.ts

200 lines
6.9 KiB
TypeScript
Raw Normal View History

///
2023-01-31 10:43:56 +02:00
/// Copyright © 2016-2023 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 { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
import { WidgetsBundle } from '@shared/models/widgets-bundle.model';
import { IAliasController } from '@core/api/widget-api.models';
import { NULL_UUID } from '@shared/models/id/has-uuid';
import { WidgetService } from '@core/http/widget.service';
2023-08-18 16:14:21 +03:00
import { fullWidgetTypeFqn, WidgetInfo, widgetType } from '@shared/models/widget.models';
import { distinctUntilChanged, map, publishReplay, refCount, share, switchMap, tap } from 'rxjs/operators';
2021-03-04 17:11:55 +02:00
import { BehaviorSubject, combineLatest, Observable, of } from 'rxjs';
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
import { isDefinedAndNotNull } from '@core/utils';
@Component({
selector: 'tb-dashboard-widget-select',
templateUrl: './dashboard-widget-select.component.html',
styleUrls: ['./dashboard-widget-select.component.scss']
})
2021-03-03 18:41:01 +02:00
export class DashboardWidgetSelectComponent implements OnInit {
2021-03-03 15:41:47 +02:00
private search$ = new BehaviorSubject<string>('');
2021-03-04 17:11:55 +02:00
private filterWidgetTypes$ = new BehaviorSubject<Array<widgetType>>(null);
private widgetsInfo: Observable<Array<WidgetInfo>>;
2021-03-03 18:41:01 +02:00
private widgetsBundleValue: WidgetsBundle;
widgetTypes = new Set<widgetType>();
2021-03-03 18:41:01 +02:00
widgets$: Observable<Array<WidgetInfo>>;
loadingWidgetsSubject: BehaviorSubject<boolean> = new BehaviorSubject(false);
loadingWidgets$ = this.loadingWidgetsSubject.pipe(
share()
);
2021-03-03 18:41:01 +02:00
widgetsBundles$: Observable<Array<WidgetsBundle>>;
loadingWidgetBundlesSubject: BehaviorSubject<boolean> = new BehaviorSubject(true);
loadingWidgetBundles$ = this.loadingWidgetBundlesSubject.pipe(
share()
);
2021-03-03 15:41:47 +02:00
2021-03-03 18:41:01 +02:00
set widgetsBundle(widgetBundle: WidgetsBundle) {
if (this.widgetsBundleValue !== widgetBundle) {
this.widgetsBundleValue = widgetBundle;
if (widgetBundle === null) {
this.widgetTypes.clear();
}
this.filterWidgetTypes$.next(null);
this.widgetsInfo = null;
}
2021-03-03 18:41:01 +02:00
}
get widgetsBundle(): WidgetsBundle {
return this.widgetsBundleValue;
}
@Input()
aliasController: IAliasController;
2021-03-03 15:41:47 +02:00
@Input()
set searchBundle(search: string) {
this.search$.next(search);
}
2021-03-04 17:11:55 +02:00
@Input()
set filterWidgetTypes(widgetTypes: Array<widgetType>) {
this.filterWidgetTypes$.next(widgetTypes);
}
get filterWidgetTypes(): Array<widgetType> {
return this.filterWidgetTypes$.value;
}
@Output()
2021-03-03 18:41:01 +02:00
widgetSelected: EventEmitter<WidgetInfo> = new EventEmitter<WidgetInfo>();
@Output()
widgetsBundleSelected: EventEmitter<WidgetsBundle> = new EventEmitter<WidgetsBundle>();
constructor(private widgetsService: WidgetService,
private sanitizer: DomSanitizer,
private cd: ChangeDetectorRef) {
2021-03-03 15:41:47 +02:00
this.widgetsBundles$ = this.search$.asObservable().pipe(
distinctUntilChanged(),
2021-03-03 18:41:01 +02:00
switchMap(search => this.fetchWidgetBundle(search))
2021-03-03 15:41:47 +02:00
);
2021-03-04 17:11:55 +02:00
this.widgets$ = combineLatest([this.search$.asObservable(), this.filterWidgetTypes$.asObservable()]).pipe(
distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)),
switchMap(search => this.fetchWidget(...search))
);
}
ngOnInit(): void {
}
2021-03-03 18:41:01 +02:00
private getWidgets(): Observable<Array<WidgetInfo>> {
2021-03-04 17:11:55 +02:00
if (!this.widgetsInfo) {
2021-03-03 18:41:01 +02:00
if (this.widgetsBundle !== null) {
const bundleAlias = this.widgetsBundle.alias;
const isSystem = this.widgetsBundle.tenantId.id === NULL_UUID;
this.loadingWidgetsSubject.next(true);
2021-03-05 17:08:46 +02:00
this.widgetsInfo = this.widgetsService.getBundleWidgetTypeInfos(bundleAlias, isSystem).pipe(
map(widgets => {
widgets = widgets.sort((a, b) => b.createdTime - a.createdTime);
const widgetTypes = new Set<widgetType>();
const widgetInfos = widgets.map((widgetTypeInfo) => {
widgetTypes.add(widgetTypeInfo.widgetType);
const widget: WidgetInfo = {
2023-08-18 16:14:21 +03:00
typeFullFqn: fullWidgetTypeFqn(widgetTypeInfo),
type: widgetTypeInfo.widgetType,
title: widgetTypeInfo.name,
image: widgetTypeInfo.image,
description: widgetTypeInfo.description
};
return widget;
}
);
setTimeout(() => {
this.widgetTypes = widgetTypes;
this.cd.markForCheck();
});
return widgetInfos;
}),
tap(() => {
this.loadingWidgetsSubject.next(false);
}),
2021-03-03 18:41:01 +02:00
publishReplay(1),
refCount()
);
} else {
2021-03-04 17:11:55 +02:00
this.widgetsInfo = of([]);
2021-03-03 18:41:01 +02:00
}
}
2021-03-04 17:11:55 +02:00
return this.widgetsInfo;
}
2021-03-03 18:41:01 +02:00
onWidgetClicked($event: Event, widget: WidgetInfo): void {
this.widgetSelected.emit(widget);
}
isSystem(item: WidgetsBundle): boolean {
return item && item.tenantId.id === NULL_UUID;
}
selectBundle($event: Event, bundle: WidgetsBundle) {
$event.preventDefault();
this.widgetsBundle = bundle;
2021-03-03 15:41:47 +02:00
this.search$.next('');
this.widgetsBundleSelected.emit(bundle);
}
getPreviewImage(imageUrl: string | null): SafeUrl | string {
if (isDefinedAndNotNull(imageUrl)) {
return this.sanitizer.bypassSecurityTrustUrl(imageUrl);
}
return '/assets/widget-preview-empty.svg';
}
2021-03-03 15:41:47 +02:00
private getWidgetsBundle(): Observable<Array<WidgetsBundle>> {
return this.widgetsService.getAllWidgetsBundles().pipe(
tap(() => this.loadingWidgetBundlesSubject.next(false)),
2021-03-03 15:41:47 +02:00
publishReplay(1),
refCount()
);
}
private fetchWidgetBundle(search: string): Observable<Array<WidgetsBundle>> {
return this.getWidgetsBundle().pipe(
map(bundles => search ? bundles.filter(
bundle => (
bundle.title?.toLowerCase().includes(search.toLowerCase()) ||
bundle.description?.toLowerCase().includes(search.toLowerCase())
)) : bundles
)
);
}
2021-03-04 17:11:55 +02:00
private fetchWidget(search: string, filter: widgetType[]): Observable<Array<WidgetInfo>> {
2021-03-03 18:41:01 +02:00
return this.getWidgets().pipe(
2021-03-04 17:11:55 +02:00
map(widgets => filter ? widgets.filter((widget) => filter.includes(widget.type)) : widgets),
2021-03-03 15:41:47 +02:00
map(widgets => search ? widgets.filter(
widget => (
widget.title?.toLowerCase().includes(search.toLowerCase()) ||
widget.description?.toLowerCase().includes(search.toLowerCase())
)) : widgets
)
);
}
}