2019-08-20 20:42:48 +03:00
|
|
|
///
|
2023-01-31 10:43:56 +02:00
|
|
|
/// Copyright © 2016-2023 The Thingsboard Authors
|
2019-08-20 20:42:48 +03: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.
|
|
|
|
|
///
|
|
|
|
|
|
2019-09-06 20:17:45 +03:00
|
|
|
import { Injectable } from '@angular/core';
|
2020-02-04 15:14:17 +02:00
|
|
|
import { defaultHttpOptionsFromConfig, RequestConfig } from './http-utils';
|
2022-12-28 15:10:09 +02:00
|
|
|
import { Observable, of, ReplaySubject } from 'rxjs';
|
2019-09-06 20:17:45 +03:00
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
|
|
import { PageLink } from '@shared/models/page/page-link';
|
|
|
|
|
import { PageData } from '@shared/models/page/page-data';
|
|
|
|
|
import { WidgetsBundle } from '@shared/models/widgets-bundle.model';
|
2021-03-05 17:08:46 +02:00
|
|
|
import {
|
|
|
|
|
Widget,
|
|
|
|
|
WidgetType,
|
|
|
|
|
widgetType,
|
|
|
|
|
WidgetTypeDetails,
|
|
|
|
|
WidgetTypeInfo,
|
|
|
|
|
widgetTypesData
|
|
|
|
|
} from '@shared/models/widget.models';
|
2019-09-05 21:15:40 +03:00
|
|
|
import { UtilsService } from '@core/services/utils.service';
|
|
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
|
|
|
|
import { ResourcesService } from '../services/resources.service';
|
2021-05-27 18:07:06 +03:00
|
|
|
import { toWidgetInfo, toWidgetTypeDetails, WidgetInfo } from '@app/modules/home/models/widget-component.models';
|
2020-02-04 15:14:17 +02:00
|
|
|
import { filter, map, mergeMap, tap } from 'rxjs/operators';
|
2019-09-23 20:35:31 +03:00
|
|
|
import { WidgetTypeId } from '@shared/models/id/widget-type-id';
|
|
|
|
|
import { NULL_UUID } from '@shared/models/id/has-uuid';
|
|
|
|
|
import { ActivationEnd, Router } from '@angular/router';
|
2019-08-20 20:42:48 +03:00
|
|
|
|
|
|
|
|
@Injectable({
|
|
|
|
|
providedIn: 'root'
|
|
|
|
|
})
|
|
|
|
|
export class WidgetService {
|
|
|
|
|
|
2019-09-23 20:35:31 +03:00
|
|
|
private allWidgetsBundles: Array<WidgetsBundle>;
|
|
|
|
|
private systemWidgetsBundles: Array<WidgetsBundle>;
|
|
|
|
|
private tenantWidgetsBundles: Array<WidgetsBundle>;
|
|
|
|
|
|
2021-03-11 14:54:35 +02:00
|
|
|
private widgetTypeInfosCache = new Map<string, Array<WidgetTypeInfo>>();
|
|
|
|
|
|
2022-12-28 15:10:09 +02:00
|
|
|
private widgetsInfoInMemoryCache = new Map<string, WidgetInfo>();
|
|
|
|
|
|
2020-09-03 17:43:53 +03:00
|
|
|
private loadWidgetsBundleCacheSubject: ReplaySubject<any>;
|
|
|
|
|
|
2019-08-20 20:42:48 +03:00
|
|
|
constructor(
|
2019-09-05 21:15:40 +03:00
|
|
|
private http: HttpClient,
|
|
|
|
|
private utils: UtilsService,
|
|
|
|
|
private resources: ResourcesService,
|
2019-09-23 20:35:31 +03:00
|
|
|
private translate: TranslateService,
|
|
|
|
|
private router: Router
|
2019-09-05 21:15:40 +03:00
|
|
|
) {
|
2019-09-23 20:35:31 +03:00
|
|
|
this.router.events.pipe(filter(event => event instanceof ActivationEnd)).subscribe(
|
|
|
|
|
() => {
|
|
|
|
|
this.invalidateWidgetsBundleCache();
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-28 08:41:39 +03:00
|
|
|
public getWidgetScopeVariables(): string[] {
|
|
|
|
|
return ['tinycolor', 'cssjs', 'moment', '$', 'jQuery'];
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public getAllWidgetsBundles(config?: RequestConfig): Observable<Array<WidgetsBundle>> {
|
|
|
|
|
return this.loadWidgetsBundleCache(config).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
map(() => this.allWidgetsBundles)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public getSystemWidgetsBundles(config?: RequestConfig): Observable<Array<WidgetsBundle>> {
|
|
|
|
|
return this.loadWidgetsBundleCache(config).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
map(() => this.systemWidgetsBundles)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public getTenantWidgetsBundles(config?: RequestConfig): Observable<Array<WidgetsBundle>> {
|
|
|
|
|
return this.loadWidgetsBundleCache(config).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
map(() => this.tenantWidgetsBundles)
|
|
|
|
|
);
|
2019-09-05 21:15:40 +03:00
|
|
|
}
|
2019-08-20 20:42:48 +03:00
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public getWidgetBundles(pageLink: PageLink, config?: RequestConfig): Observable<PageData<WidgetsBundle>> {
|
2019-08-20 20:42:48 +03:00
|
|
|
return this.http.get<PageData<WidgetsBundle>>(`/api/widgetsBundles${pageLink.toQuery()}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-20 20:42:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getWidgetsBundle(widgetsBundleId: string,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<WidgetsBundle> {
|
|
|
|
|
return this.http.get<WidgetsBundle>(`/api/widgetsBundle/${widgetsBundleId}`, defaultHttpOptionsFromConfig(config));
|
2019-08-20 20:42:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public saveWidgetsBundle(widgetsBundle: WidgetsBundle,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<WidgetsBundle> {
|
2019-09-23 20:35:31 +03:00
|
|
|
return this.http.post<WidgetsBundle>('/api/widgetsBundle', widgetsBundle,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
tap(() => {
|
|
|
|
|
this.invalidateWidgetsBundleCache();
|
|
|
|
|
})
|
|
|
|
|
);
|
2019-08-20 20:42:48 +03:00
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public deleteWidgetsBundle(widgetsBundleId: string, config?: RequestConfig) {
|
|
|
|
|
return this.getWidgetsBundle(widgetsBundleId, config).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
mergeMap((widgetsBundle) => {
|
|
|
|
|
return this.http.delete(`/api/widgetsBundle/${widgetsBundleId}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
tap(() => {
|
|
|
|
|
this.invalidateWidgetsBundleCache();
|
2022-12-28 15:10:09 +02:00
|
|
|
this.widgetsBundleDeleted(widgetsBundle);
|
2019-09-23 20:35:31 +03:00
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
));
|
2019-08-20 20:42:48 +03:00
|
|
|
}
|
|
|
|
|
|
2019-09-03 19:31:16 +03:00
|
|
|
public getBundleWidgetTypes(bundleAlias: string, isSystem: boolean,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<WidgetType>> {
|
2019-09-03 19:31:16 +03:00
|
|
|
return this.http.get<Array<WidgetType>>(`/api/widgetTypes?isSystem=${isSystem}&bundleAlias=${bundleAlias}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-09-03 19:31:16 +03:00
|
|
|
}
|
|
|
|
|
|
2021-03-05 17:08:46 +02:00
|
|
|
public getBundleWidgetTypesDetails(bundleAlias: string, isSystem: boolean,
|
|
|
|
|
config?: RequestConfig): Observable<Array<WidgetTypeDetails>> {
|
|
|
|
|
return this.http.get<Array<WidgetTypeDetails>>(`/api/widgetTypesDetails?isSystem=${isSystem}&bundleAlias=${bundleAlias}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getBundleWidgetTypeInfos(bundleAlias: string, isSystem: boolean,
|
|
|
|
|
config?: RequestConfig): Observable<Array<WidgetTypeInfo>> {
|
2021-03-11 14:54:35 +02:00
|
|
|
const key = bundleAlias + (isSystem ? '_sys' : '');
|
|
|
|
|
if (this.widgetTypeInfosCache.has(key)) {
|
|
|
|
|
return of(this.widgetTypeInfosCache.get(key));
|
|
|
|
|
} else {
|
|
|
|
|
return this.http.get<Array<WidgetTypeInfo>>(`/api/widgetTypesInfos?isSystem=${isSystem}&bundleAlias=${bundleAlias}`,
|
|
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
|
|
|
|
tap((res) => this.widgetTypeInfosCache.set(key, res) )
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-03-05 17:08:46 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-08 17:42:31 +02:00
|
|
|
public loadBundleLibraryWidgets(bundleAlias: string, isSystem: boolean,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<Widget>> {
|
|
|
|
|
return this.getBundleWidgetTypes(bundleAlias, isSystem, config).pipe(
|
2019-11-08 17:42:31 +02:00
|
|
|
map((types) => {
|
|
|
|
|
types = types.sort((a, b) => {
|
|
|
|
|
let result = widgetType[b.descriptor.type].localeCompare(widgetType[a.descriptor.type]);
|
|
|
|
|
if (result === 0) {
|
|
|
|
|
result = b.createdTime - a.createdTime;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
const widgetTypes = new Array<Widget>();
|
|
|
|
|
let top = 0;
|
|
|
|
|
const lastTop = [0, 0, 0];
|
|
|
|
|
let col = 0;
|
|
|
|
|
let column = 0;
|
|
|
|
|
types.forEach((type) => {
|
|
|
|
|
const widgetTypeInfo = toWidgetInfo(type);
|
|
|
|
|
const sizeX = 8;
|
|
|
|
|
const sizeY = Math.floor(widgetTypeInfo.sizeY);
|
|
|
|
|
const widget: Widget = {
|
|
|
|
|
typeId: type.id,
|
|
|
|
|
isSystemType: isSystem,
|
|
|
|
|
bundleAlias,
|
|
|
|
|
typeAlias: widgetTypeInfo.alias,
|
|
|
|
|
type: widgetTypeInfo.type,
|
|
|
|
|
title: widgetTypeInfo.widgetName,
|
|
|
|
|
sizeX,
|
|
|
|
|
sizeY,
|
|
|
|
|
row: top,
|
|
|
|
|
col,
|
|
|
|
|
config: JSON.parse(widgetTypeInfo.defaultConfig)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
widget.config.title = widgetTypeInfo.widgetName;
|
|
|
|
|
|
|
|
|
|
widgetTypes.push(widget);
|
|
|
|
|
top += sizeY;
|
|
|
|
|
if (top > lastTop[column] + 10) {
|
|
|
|
|
lastTop[column] = top;
|
|
|
|
|
column++;
|
|
|
|
|
if (column > 2) {
|
|
|
|
|
column = 0;
|
|
|
|
|
}
|
|
|
|
|
top = lastTop[column];
|
|
|
|
|
col = column * 8;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return widgetTypes;
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 21:15:40 +03:00
|
|
|
public getWidgetType(bundleAlias: string, widgetTypeAlias: string, isSystem: boolean,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<WidgetType> {
|
2019-09-05 21:15:40 +03:00
|
|
|
return this.http.get<WidgetType>(`/api/widgetType?isSystem=${isSystem}&bundleAlias=${bundleAlias}&alias=${widgetTypeAlias}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-09-05 21:15:40 +03:00
|
|
|
}
|
2019-09-19 20:10:52 +03:00
|
|
|
|
2021-03-05 17:08:46 +02:00
|
|
|
public saveWidgetTypeDetails(widgetInfo: WidgetInfo,
|
|
|
|
|
id: WidgetTypeId,
|
|
|
|
|
bundleAlias: string,
|
|
|
|
|
createdTime: number,
|
|
|
|
|
config?: RequestConfig): Observable<WidgetTypeDetails> {
|
|
|
|
|
const widgetTypeDetails = toWidgetTypeDetails(widgetInfo, id, undefined, bundleAlias, createdTime);
|
|
|
|
|
return this.http.post<WidgetTypeDetails>('/api/widgetType', widgetTypeDetails,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
tap((savedWidgetType) => {
|
2022-12-28 15:10:09 +02:00
|
|
|
this.widgetTypeUpdated(savedWidgetType);
|
2019-09-23 20:35:31 +03:00
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-05 17:08:46 +02:00
|
|
|
public saveImportedWidgetTypeDetails(widgetTypeDetails: WidgetTypeDetails,
|
|
|
|
|
config?: RequestConfig): Observable<WidgetTypeDetails> {
|
|
|
|
|
return this.http.post<WidgetTypeDetails>('/api/widgetType', widgetTypeDetails,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
tap((savedWidgetType) => {
|
2022-12-28 15:10:09 +02:00
|
|
|
this.widgetTypeUpdated(savedWidgetType);
|
2019-09-23 20:35:31 +03:00
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteWidgetType(bundleAlias: string, widgetTypeAlias: string, isSystem: boolean,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig) {
|
|
|
|
|
return this.getWidgetType(bundleAlias, widgetTypeAlias, isSystem, config).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
mergeMap((widgetTypeInstance) => {
|
|
|
|
|
return this.http.delete(`/api/widgetType/${widgetTypeInstance.id.id}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config)).pipe(
|
2019-09-23 20:35:31 +03:00
|
|
|
tap(() => {
|
2022-12-28 15:10:09 +02:00
|
|
|
this.widgetTypeUpdated(widgetTypeInstance);
|
2019-09-23 20:35:31 +03:00
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 20:10:52 +03:00
|
|
|
public getWidgetTypeById(widgetTypeId: string,
|
2021-03-05 17:08:46 +02:00
|
|
|
config?: RequestConfig): Observable<WidgetTypeDetails> {
|
|
|
|
|
return this.http.get<WidgetTypeDetails>(`/api/widgetType/${widgetTypeId}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-09-19 20:10:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getWidgetTemplate(widgetTypeParam: widgetType,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<WidgetInfo> {
|
2019-09-19 20:10:52 +03:00
|
|
|
const templateWidgetType = widgetTypesData.get(widgetTypeParam);
|
|
|
|
|
return this.getWidgetType(templateWidgetType.template.bundleAlias, templateWidgetType.template.alias, true,
|
2019-11-15 12:22:14 +02:00
|
|
|
config).pipe(
|
2019-09-19 20:10:52 +03:00
|
|
|
map((result) => {
|
|
|
|
|
const widgetInfo = toWidgetInfo(result);
|
|
|
|
|
widgetInfo.alias = undefined;
|
|
|
|
|
return widgetInfo;
|
|
|
|
|
})
|
|
|
|
|
);
|
2019-09-23 20:35:31 +03:00
|
|
|
}
|
|
|
|
|
|
2022-12-28 15:10:09 +02:00
|
|
|
public createWidgetInfoCacheKey(bundleAlias: string, widgetTypeAlias: string, isSystem: boolean): string {
|
|
|
|
|
return `${isSystem ? 'sys_' : ''}${bundleAlias}_${widgetTypeAlias}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getWidgetInfoFromCache(bundleAlias: string, widgetTypeAlias: string, isSystem: boolean): WidgetInfo | undefined {
|
|
|
|
|
const key = this.createWidgetInfoCacheKey(bundleAlias, widgetTypeAlias, isSystem);
|
|
|
|
|
return this.widgetsInfoInMemoryCache.get(key);
|
2019-09-23 20:35:31 +03:00
|
|
|
}
|
|
|
|
|
|
2022-12-28 15:10:09 +02:00
|
|
|
public putWidgetInfoToCache(widgetInfo: WidgetInfo, bundleAlias: string, widgetTypeAlias: string, isSystem: boolean) {
|
|
|
|
|
const key = this.createWidgetInfoCacheKey(bundleAlias, widgetTypeAlias, isSystem);
|
|
|
|
|
this.widgetsInfoInMemoryCache.set(key, widgetInfo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private widgetTypeUpdated(updatedWidgetType: WidgetType): void {
|
|
|
|
|
this.deleteWidgetInfoFromCache(updatedWidgetType.bundleAlias, updatedWidgetType.alias, updatedWidgetType.tenantId.id === NULL_UUID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private widgetsBundleDeleted(widgetsBundle: WidgetsBundle): void {
|
|
|
|
|
this.deleteWidgetsBundleFromCache(widgetsBundle.alias, widgetsBundle.tenantId.id === NULL_UUID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private deleteWidgetInfoFromCache(bundleAlias: string, widgetTypeAlias: string, isSystem: boolean) {
|
|
|
|
|
const key = this.createWidgetInfoCacheKey(bundleAlias, widgetTypeAlias, isSystem);
|
|
|
|
|
this.widgetsInfoInMemoryCache.delete(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private deleteWidgetsBundleFromCache(bundleAlias: string, isSystem: boolean) {
|
|
|
|
|
const key = (isSystem ? 'sys_' : '') + bundleAlias;
|
|
|
|
|
this.widgetsInfoInMemoryCache.forEach((widgetInfo, cacheKey) => {
|
|
|
|
|
if (cacheKey.startsWith(key)) {
|
|
|
|
|
this.widgetsInfoInMemoryCache.delete(cacheKey);
|
|
|
|
|
}
|
|
|
|
|
});
|
2019-09-23 20:35:31 +03:00
|
|
|
}
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
private loadWidgetsBundleCache(config?: RequestConfig): Observable<any> {
|
2019-09-23 20:35:31 +03:00
|
|
|
if (!this.allWidgetsBundles) {
|
2020-09-03 17:43:53 +03:00
|
|
|
if (!this.loadWidgetsBundleCacheSubject) {
|
|
|
|
|
this.loadWidgetsBundleCacheSubject = new ReplaySubject();
|
|
|
|
|
this.http.get<Array<WidgetsBundle>>('/api/widgetsBundles',
|
|
|
|
|
defaultHttpOptionsFromConfig(config)).subscribe(
|
|
|
|
|
(allWidgetsBundles) => {
|
|
|
|
|
this.allWidgetsBundles = allWidgetsBundles;
|
|
|
|
|
this.systemWidgetsBundles = new Array<WidgetsBundle>();
|
|
|
|
|
this.tenantWidgetsBundles = new Array<WidgetsBundle>();
|
|
|
|
|
this.allWidgetsBundles = this.allWidgetsBundles.sort((wb1, wb2) => {
|
|
|
|
|
let res = wb1.title.localeCompare(wb2.title);
|
|
|
|
|
if (res === 0) {
|
|
|
|
|
res = wb2.createdTime - wb1.createdTime;
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
});
|
|
|
|
|
this.allWidgetsBundles.forEach((widgetsBundle) => {
|
|
|
|
|
if (widgetsBundle.tenantId.id === NULL_UUID) {
|
|
|
|
|
this.systemWidgetsBundles.push(widgetsBundle);
|
|
|
|
|
} else {
|
|
|
|
|
this.tenantWidgetsBundles.push(widgetsBundle);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.loadWidgetsBundleCacheSubject.next();
|
|
|
|
|
this.loadWidgetsBundleCacheSubject.complete();
|
|
|
|
|
},
|
|
|
|
|
() => {
|
|
|
|
|
this.loadWidgetsBundleCacheSubject.error(null);
|
2019-09-23 20:35:31 +03:00
|
|
|
});
|
2020-09-03 17:43:53 +03:00
|
|
|
}
|
|
|
|
|
return this.loadWidgetsBundleCacheSubject.asObservable();
|
2019-09-23 20:35:31 +03:00
|
|
|
} else {
|
|
|
|
|
return of(null);
|
2019-09-19 20:10:52 +03:00
|
|
|
}
|
2019-09-23 20:35:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private invalidateWidgetsBundleCache() {
|
|
|
|
|
this.allWidgetsBundles = undefined;
|
|
|
|
|
this.systemWidgetsBundles = undefined;
|
|
|
|
|
this.tenantWidgetsBundles = undefined;
|
2020-09-03 17:43:53 +03:00
|
|
|
this.loadWidgetsBundleCacheSubject = undefined;
|
2021-03-11 14:54:35 +02:00
|
|
|
this.widgetTypeInfosCache.clear();
|
2019-09-23 20:35:31 +03:00
|
|
|
}
|
2019-08-20 20:42:48 +03:00
|
|
|
}
|