2019-10-31 10:06:57 +02:00
|
|
|
///
|
2023-01-31 10:43:56 +02:00
|
|
|
/// Copyright © 2016-2023 The Thingsboard Authors
|
2019-10-31 10:06:57 +02:00
|
|
|
///
|
|
|
|
|
/// 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.
|
|
|
|
|
///
|
|
|
|
|
|
2021-07-01 17:41:41 +03:00
|
|
|
import { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
|
2019-10-31 10:06:57 +02:00
|
|
|
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-09-04 18:04:20 +03:00
|
|
|
import { fullWidgetTypeFqn, WidgetInfo, widgetType, WidgetTypeInfo } from '@shared/models/widget.models';
|
|
|
|
|
import { debounceTime, distinctUntilChanged, map, share, switchMap, tap } from 'rxjs/operators';
|
|
|
|
|
import { BehaviorSubject, combineLatest, Observable, of, ReplaySubject } from 'rxjs';
|
2021-02-25 15:37:20 +02:00
|
|
|
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
|
|
|
import { isDefinedAndNotNull } from '@core/utils';
|
2023-09-04 18:04:20 +03:00
|
|
|
import { PageLink } from '@shared/models/page/page-link';
|
|
|
|
|
import { Direction } from '@shared/models/page/sort-order';
|
2019-10-31 10:06:57 +02:00
|
|
|
|
2023-08-28 18:54:12 +03:00
|
|
|
type widgetsListMode = 'all' | 'actual' | 'deprecated';
|
|
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
type selectWidgetMode = 'bundles' | 'allWidgets';
|
|
|
|
|
|
2019-10-31 10:06:57 +02:00
|
|
|
@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 {
|
2019-10-31 10:06:57 +02:00
|
|
|
|
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);
|
2023-08-28 18:54:12 +03:00
|
|
|
private widgetsListMode$ = new BehaviorSubject<widgetsListMode>('actual');
|
2023-09-04 18:04:20 +03:00
|
|
|
private selectWidgetMode$ = new BehaviorSubject<selectWidgetMode>('bundles');
|
2021-03-04 17:11:55 +02:00
|
|
|
private widgetsInfo: Observable<Array<WidgetInfo>>;
|
2021-03-03 18:41:01 +02:00
|
|
|
private widgetsBundleValue: WidgetsBundle;
|
2021-03-11 14:54:35 +02:00
|
|
|
widgetTypes = new Set<widgetType>();
|
2023-08-28 18:54:12 +03:00
|
|
|
hasDeprecated = false;
|
2021-03-03 18:41:01 +02:00
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
allWidgets$: Observable<Array<WidgetInfo>>;
|
2021-03-03 18:41:01 +02:00
|
|
|
widgets$: Observable<Array<WidgetInfo>>;
|
2021-03-11 14:54:35 +02:00
|
|
|
loadingWidgetsSubject: BehaviorSubject<boolean> = new BehaviorSubject(false);
|
|
|
|
|
loadingWidgets$ = this.loadingWidgetsSubject.pipe(
|
|
|
|
|
share()
|
|
|
|
|
);
|
2021-03-03 18:41:01 +02:00
|
|
|
widgetsBundles$: Observable<Array<WidgetsBundle>>;
|
2021-03-11 14:54:35 +02:00
|
|
|
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) {
|
2021-03-11 14:54:35 +02:00
|
|
|
if (this.widgetsBundleValue !== widgetBundle) {
|
|
|
|
|
this.widgetsBundleValue = widgetBundle;
|
|
|
|
|
if (widgetBundle === null) {
|
|
|
|
|
this.widgetTypes.clear();
|
2023-08-28 18:54:12 +03:00
|
|
|
this.hasDeprecated = false;
|
2021-03-11 14:54:35 +02:00
|
|
|
}
|
|
|
|
|
this.filterWidgetTypes$.next(null);
|
2023-08-28 18:54:12 +03:00
|
|
|
this.widgetsListMode$.next('actual');
|
2021-03-11 14:54:35 +02:00
|
|
|
this.widgetsInfo = null;
|
|
|
|
|
}
|
2021-03-03 18:41:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get widgetsBundle(): WidgetsBundle {
|
|
|
|
|
return this.widgetsBundleValue;
|
|
|
|
|
}
|
2019-10-31 10:06:57 +02:00
|
|
|
|
|
|
|
|
@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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-31 16:49:56 +03:00
|
|
|
get filterWidgetTypes(): Array<widgetType> {
|
|
|
|
|
return this.filterWidgetTypes$.value;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
@Input()
|
|
|
|
|
set selectWidgetMode(mode: selectWidgetMode) {
|
|
|
|
|
this.selectWidgetMode$.next(mode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get selectWidgetMode(): selectWidgetMode {
|
|
|
|
|
return this.selectWidgetMode$.value;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-28 18:54:12 +03:00
|
|
|
@Input()
|
|
|
|
|
set widgetsListMode(mode: widgetsListMode) {
|
|
|
|
|
this.widgetsListMode$.next(mode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get widgetsListMode(): widgetsListMode {
|
|
|
|
|
return this.widgetsListMode$.value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 10:06:57 +02:00
|
|
|
@Output()
|
2021-03-03 18:41:01 +02:00
|
|
|
widgetSelected: EventEmitter<WidgetInfo> = new EventEmitter<WidgetInfo>();
|
2019-10-31 10:06:57 +02:00
|
|
|
|
2021-02-04 19:00:28 +02:00
|
|
|
@Output()
|
|
|
|
|
widgetsBundleSelected: EventEmitter<WidgetsBundle> = new EventEmitter<WidgetsBundle>();
|
|
|
|
|
|
2021-02-25 15:37:20 +02:00
|
|
|
constructor(private widgetsService: WidgetService,
|
2021-07-01 17:41:41 +03:00
|
|
|
private sanitizer: DomSanitizer,
|
|
|
|
|
private cd: ChangeDetectorRef) {
|
2023-09-04 18:04:20 +03:00
|
|
|
this.widgetsBundles$ = combineLatest([this.search$.asObservable(), this.selectWidgetMode$.asObservable()]).pipe(
|
|
|
|
|
distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)),
|
|
|
|
|
switchMap(search => this.fetchWidgetBundle(...search))
|
|
|
|
|
);
|
|
|
|
|
this.allWidgets$ = combineLatest([this.search$.asObservable().pipe(
|
|
|
|
|
debounceTime(150)
|
|
|
|
|
), this.selectWidgetMode$.asObservable()]).pipe(
|
|
|
|
|
distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)),
|
|
|
|
|
switchMap(search => this.fetchAllWidgets(...search)),
|
|
|
|
|
share({ connector: () => new ReplaySubject(1), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })
|
2021-03-03 15:41:47 +02:00
|
|
|
);
|
2023-08-28 18:54:12 +03:00
|
|
|
this.widgets$ = combineLatest([this.search$.asObservable(), this.filterWidgetTypes$.asObservable(), this.widgetsListMode$]).pipe(
|
2021-03-04 17:11:55 +02:00
|
|
|
distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)),
|
2023-09-04 18:04:20 +03:00
|
|
|
switchMap(search => this.fetchWidgets(...search))
|
2021-02-04 19:00:28 +02:00
|
|
|
);
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-11 14:54:35 +02:00
|
|
|
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) {
|
2021-03-11 14:54:35 +02:00
|
|
|
this.loadingWidgetsSubject.next(true);
|
2023-09-01 18:55:29 +03:00
|
|
|
this.widgetsInfo = this.widgetsService.getBundleWidgetTypeInfos(this.widgetsBundle.id.id).pipe(
|
2021-03-11 14:54:35 +02:00
|
|
|
map(widgets => {
|
|
|
|
|
const widgetTypes = new Set<widgetType>();
|
2023-08-28 18:54:12 +03:00
|
|
|
const hasDeprecated = widgets.some(w => w.deprecated);
|
2021-03-11 14:54:35 +02:00
|
|
|
const widgetInfos = widgets.map((widgetTypeInfo) => {
|
|
|
|
|
widgetTypes.add(widgetTypeInfo.widgetType);
|
2023-09-04 18:04:20 +03:00
|
|
|
return this.toWidgetInfo(widgetTypeInfo);
|
2021-03-11 14:54:35 +02:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
this.widgetTypes = widgetTypes;
|
2023-08-28 18:54:12 +03:00
|
|
|
this.hasDeprecated = hasDeprecated;
|
2021-07-01 17:41:41 +03:00
|
|
|
this.cd.markForCheck();
|
2021-03-11 14:54:35 +02:00
|
|
|
});
|
|
|
|
|
return widgetInfos;
|
|
|
|
|
}),
|
|
|
|
|
tap(() => {
|
|
|
|
|
this.loadingWidgetsSubject.next(false);
|
|
|
|
|
}),
|
2023-09-04 18:04:20 +03:00
|
|
|
share({ connector: () => new ReplaySubject(1), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })
|
2021-03-03 18:41:01 +02:00
|
|
|
);
|
|
|
|
|
} else {
|
2021-03-04 17:11:55 +02:00
|
|
|
this.widgetsInfo = of([]);
|
2021-03-03 18:41:01 +02:00
|
|
|
}
|
2021-02-25 15:37:20 +02:00
|
|
|
}
|
2021-03-04 17:11:55 +02:00
|
|
|
return this.widgetsInfo;
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-03 18:41:01 +02:00
|
|
|
onWidgetClicked($event: Event, widget: WidgetInfo): void {
|
2019-10-31 10:06:57 +02:00
|
|
|
this.widgetSelected.emit(widget);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 19:00:28 +02:00
|
|
|
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('');
|
2021-02-04 19:00:28 +02:00
|
|
|
this.widgetsBundleSelected.emit(bundle);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 15:37:20 +02:00
|
|
|
getPreviewImage(imageUrl: string | null): SafeUrl | string {
|
|
|
|
|
if (isDefinedAndNotNull(imageUrl)) {
|
|
|
|
|
return this.sanitizer.bypassSecurityTrustUrl(imageUrl);
|
|
|
|
|
}
|
|
|
|
|
return '/assets/widget-preview-empty.svg';
|
2021-02-04 19:00:28 +02:00
|
|
|
}
|
|
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
private getWidgetsBundles(): Observable<Array<WidgetsBundle>> {
|
2021-03-03 15:41:47 +02:00
|
|
|
return this.widgetsService.getAllWidgetsBundles().pipe(
|
2021-03-11 14:54:35 +02:00
|
|
|
tap(() => this.loadingWidgetBundlesSubject.next(false)),
|
2023-09-04 18:04:20 +03:00
|
|
|
share({ connector: () => new ReplaySubject(1), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })
|
2021-03-03 15:41:47 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
private fetchWidgetBundle(search: string, mode: selectWidgetMode): Observable<Array<WidgetsBundle>> {
|
|
|
|
|
if (mode === 'bundles') {
|
|
|
|
|
return this.getWidgetsBundles().pipe(
|
|
|
|
|
map(bundles => search ? bundles.filter(
|
|
|
|
|
bundle => (
|
|
|
|
|
bundle.title?.toLowerCase().includes(search.toLowerCase()) ||
|
|
|
|
|
bundle.description?.toLowerCase().includes(search.toLowerCase())
|
|
|
|
|
)) : bundles
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return of([]);
|
|
|
|
|
}
|
2021-03-03 15:41:47 +02:00
|
|
|
}
|
|
|
|
|
|
2023-09-04 18:04:20 +03:00
|
|
|
private fetchWidgets(search: string, filter: widgetType[], listMode: widgetsListMode): Observable<Array<WidgetInfo>> {
|
2021-03-03 18:41:01 +02:00
|
|
|
return this.getWidgets().pipe(
|
2023-08-28 18:54:12 +03:00
|
|
|
map(widgets => (listMode && listMode !== 'all') ?
|
|
|
|
|
widgets.filter((widget) => listMode === 'actual' ? !widget.deprecated : widget.deprecated) : widgets),
|
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
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-09-04 18:04:20 +03:00
|
|
|
|
|
|
|
|
private fetchAllWidgets(search: string, mode: selectWidgetMode): Observable<Array<WidgetInfo>> {
|
|
|
|
|
if (mode === 'allWidgets') {
|
|
|
|
|
const pageLink = new PageLink(1024, 0, search, {
|
|
|
|
|
property: 'name',
|
|
|
|
|
direction: Direction.ASC
|
|
|
|
|
});
|
|
|
|
|
return this.getAllWidgets(pageLink);
|
|
|
|
|
} else {
|
|
|
|
|
return of([]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getAllWidgets(pageLink: PageLink): Observable<Array<WidgetInfo>> {
|
|
|
|
|
this.loadingWidgetsSubject.next(true);
|
|
|
|
|
return this.widgetsService.getWidgetTypes(pageLink, false, true).pipe(
|
|
|
|
|
map(data => data.data.map(w => this.toWidgetInfo(w))),
|
|
|
|
|
tap(() => {
|
|
|
|
|
this.loadingWidgetsSubject.next(false);
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private toWidgetInfo(widgetTypeInfo: WidgetTypeInfo): WidgetInfo {
|
|
|
|
|
return {
|
|
|
|
|
typeFullFqn: fullWidgetTypeFqn(widgetTypeInfo),
|
|
|
|
|
type: widgetTypeInfo.widgetType,
|
|
|
|
|
title: widgetTypeInfo.name,
|
|
|
|
|
image: widgetTypeInfo.image,
|
|
|
|
|
description: widgetTypeInfo.description,
|
|
|
|
|
deprecated: widgetTypeInfo.deprecated
|
|
|
|
|
};
|
|
|
|
|
}
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|