2019-10-31 10:06:57 +02:00
|
|
|
///
|
2021-01-11 13:42:16 +02:00
|
|
|
/// Copyright © 2016-2021 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-03-03 18:41:01 +02:00
|
|
|
import { 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';
|
2021-03-03 18:41:01 +02:00
|
|
|
import { WidgetInfo } from '@shared/models/widget.models';
|
2019-10-31 10:06:57 +02:00
|
|
|
import { toWidgetInfo } from '@home/models/widget-component.models';
|
2021-03-03 18:41:01 +02:00
|
|
|
import { distinctUntilChanged, map, publishReplay, refCount, switchMap } from 'rxjs/operators';
|
2021-03-03 15:41:47 +02:00
|
|
|
import { BehaviorSubject, Observable, of } from 'rxjs';
|
2021-02-25 15:37:20 +02:00
|
|
|
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
|
|
|
import { isDefinedAndNotNull } from '@core/utils';
|
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-03 18:41:01 +02:00
|
|
|
private widgetsTypes: Observable<Array<WidgetInfo>>;
|
|
|
|
|
private widgetsBundleValue: WidgetsBundle;
|
|
|
|
|
|
|
|
|
|
widgets$: Observable<Array<WidgetInfo>>;
|
|
|
|
|
widgetsBundles$: Observable<Array<WidgetsBundle>>;
|
2021-03-03 15:41:47 +02:00
|
|
|
|
2019-10-31 10:06:57 +02:00
|
|
|
@Input()
|
2021-03-03 18:41:01 +02:00
|
|
|
set widgetsBundle(widgetBundle: WidgetsBundle) {
|
|
|
|
|
this.widgetsTypes = null;
|
|
|
|
|
this.widgetsBundleValue = widgetBundle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
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,
|
|
|
|
|
private sanitizer: DomSanitizer) {
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
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
|
|
|
);
|
|
|
|
|
this.widgets$ = this.search$.asObservable().pipe(
|
|
|
|
|
distinctUntilChanged(),
|
2021-03-03 18:41:01 +02:00
|
|
|
switchMap(search => this.fetchWidget(search))
|
2021-02-04 19:00:28 +02:00
|
|
|
);
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-03 18:41:01 +02:00
|
|
|
private getWidgets(): Observable<Array<WidgetInfo>> {
|
|
|
|
|
if (!this.widgetsTypes) {
|
|
|
|
|
if (this.widgetsBundle !== null) {
|
|
|
|
|
const bundleAlias = this.widgetsBundle.alias;
|
|
|
|
|
const isSystem = this.widgetsBundle.tenantId.id === NULL_UUID;
|
|
|
|
|
this.widgetsTypes = this.widgetsService.getBundleWidgetTypes(bundleAlias, isSystem).pipe(
|
|
|
|
|
map(widgets => widgets.sort((a, b) => b.createdTime - a.createdTime)),
|
|
|
|
|
map(widgets => widgets.map((type) => {
|
2021-02-25 15:37:20 +02:00
|
|
|
const widgetTypeInfo = toWidgetInfo(type);
|
2021-03-03 18:41:01 +02:00
|
|
|
const widget: WidgetInfo = {
|
2021-02-25 15:37:20 +02:00
|
|
|
isSystemType: isSystem,
|
|
|
|
|
bundleAlias,
|
|
|
|
|
typeAlias: widgetTypeInfo.alias,
|
|
|
|
|
type: widgetTypeInfo.type,
|
|
|
|
|
title: widgetTypeInfo.widgetName,
|
|
|
|
|
image: widgetTypeInfo.image,
|
2021-03-03 18:41:01 +02:00
|
|
|
description: widgetTypeInfo.description
|
2021-02-25 15:37:20 +02:00
|
|
|
};
|
2021-03-03 18:41:01 +02:00
|
|
|
return widget;
|
|
|
|
|
})),
|
|
|
|
|
publishReplay(1),
|
|
|
|
|
refCount()
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
this.widgetsTypes = of([]);
|
|
|
|
|
}
|
2021-02-25 15:37:20 +02:00
|
|
|
}
|
2021-03-03 18:41:01 +02:00
|
|
|
return this.widgetsTypes;
|
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
|
|
|
}
|
|
|
|
|
|
2021-03-03 15:41:47 +02:00
|
|
|
private getWidgetsBundle(): Observable<Array<WidgetsBundle>> {
|
|
|
|
|
return this.widgetsService.getAllWidgetsBundles().pipe(
|
|
|
|
|
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-03 18:41:01 +02:00
|
|
|
private fetchWidget(search: string): Observable<Array<WidgetInfo>> {
|
|
|
|
|
return this.getWidgets().pipe(
|
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
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-10-31 10:06:57 +02:00
|
|
|
}
|