thingsboard/ui-ngx/src/app/modules/home/components/edge/edge-downlink-table-config.ts

190 lines
7.1 KiB
TypeScript
Raw Normal View History

2020-12-22 19:21:06 +02:00
///
/// Copyright © 2016-2021 The Thingsboard Authors
2020-12-22 19:21:06 +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.
///
import {
DateEntityTableColumn,
EntityActionTableColumn,
EntityTableColumn,
EntityTableConfig
} from '@home/models/entity/entities-table-config.models';
import {
EdgeEvent,
EdgeEventActionType,
edgeEventActionTypeTranslations,
2020-12-22 19:21:06 +02:00
EdgeEventStatus,
edgeEventStatusColor,
EdgeEventType,
edgeEventTypeTranslations
} from '@shared/models/edge.models';
import { TimePageLink } from '@shared/models/page/page-link';
import { TranslateService } from '@ngx-translate/core';
import { DatePipe } from '@angular/common';
import { MatDialog } from '@angular/material/dialog';
import { EntityId } from '@shared/models/id/entity-id';
import { Observable } from 'rxjs';
2020-12-22 19:21:06 +02:00
import { PageData } from '@shared/models/page/page-data';
import { Direction } from '@shared/models/page/sort-order';
import { DialogService } from '@core/services/dialog.service';
import { ContentType } from '@shared/models/constants';
import {
EventContentDialogComponent,
EventContentDialogData
} from '@home/components/event/event-content-dialog.component';
import { AttributeService } from '@core/http/attribute.service';
import { AttributeScope } from '@shared/models/telemetry/telemetry.models';
import { EdgeDownlinkTableHeaderComponent } from '@home/components/edge/edge-downlink-table-header.component';
import { EdgeService } from '@core/http/edge.service';
import { concatMap, map } from 'rxjs/operators';
import { EntityService } from "@core/http/entity.service";
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { ActionNotificationShow } from '@core/notification/notification.actions';
2020-12-22 19:21:06 +02:00
export class EdgeDownlinkTableConfig extends EntityTableConfig<EdgeEvent, TimePageLink> {
private queueStartTs: number;
2020-12-22 19:21:06 +02:00
constructor(private attributeService: AttributeService,
2020-12-22 19:21:06 +02:00
private datePipe: DatePipe,
private dialogService: DialogService,
2020-12-22 19:21:06 +02:00
private dialog: MatDialog,
private edgeService: EdgeService,
private entityService: EntityService,
private translate: TranslateService,
private store: Store<AppState>,
public entityId: EntityId) {
2020-12-22 19:21:06 +02:00
super();
2020-12-22 19:21:06 +02:00
this.tableTitle = '';
this.loadDataOnInit = false;
2020-12-22 19:21:06 +02:00
this.useTimePageLink = true;
this.detailsPanelEnabled = false;
this.selectionEnabled = false;
this.searchEnabled = false;
this.addEnabled = false;
this.entitiesDeleteEnabled = false;
this.headerComponent = EdgeDownlinkTableHeaderComponent;
this.entityTranslations = { noEntities: 'edge.no-downlinks-prompt' };
2020-12-22 19:21:06 +02:00
this.entitiesFetchFunction = pageLink => this.fetchEvents(pageLink);
this.defaultSortOrder = { property: 'createdTime', direction: Direction.DESC };
2020-12-22 19:21:06 +02:00
this.updateColumns();
}
private fetchEvents(pageLink: TimePageLink): Observable<PageData<EdgeEvent>> {
return this.attributeService.getEntityAttributes(this.entityId, AttributeScope.SERVER_SCOPE, ['queueStartTs']).pipe(
map((attributes) => this.onUpdate(attributes)),
concatMap(() => this.edgeService.getEdgeEvents(this.entityId, pageLink))
);
}
private onUpdate(attributes: any): void {
this.queueStartTs = 0;
let edge = attributes.reduce(function (map, attribute) {
map[attribute.key] = attribute;
return map;
}, {});
if (edge.queueStartTs) {
this.queueStartTs = edge.queueStartTs.lastUpdateTs;
}
}
private updateColumns(updateTableColumns: boolean = false): void {
2020-12-22 19:21:06 +02:00
this.columns = [];
this.columns.push(
new DateEntityTableColumn<EdgeEvent>('createdTime', 'event.event-time', this.datePipe, '120px'),
new EntityTableColumn<EdgeEvent>('type', 'event.type', '25%',
entity => this.translate.instant(edgeEventTypeTranslations.get(entity.type)), entity => ({}), false),
new EntityTableColumn<EdgeEvent>('action', 'edge.event-action', '25%',
entity => this.translate.instant(edgeEventActionTypeTranslations.get(entity.action)), entity => ({}), false),
new EntityTableColumn<EdgeEvent>('entityId', 'edge.entity-id', '40%',
(entity) => entity.entityId ? entity.entityId : '', () => ({}), false),
2020-12-22 19:21:06 +02:00
new EntityTableColumn<EdgeEvent>('status', 'event.status', '10%',
(entity) => this.updateEdgeEventStatus(entity.createdTime),
entity => ({
color: this.isPending(entity.createdTime) ? edgeEventStatusColor.get(EdgeEventStatus.PENDING) : edgeEventStatusColor.get(EdgeEventStatus.DEPLOYED)
}), false),
new EntityActionTableColumn<EdgeEvent>('data', 'event.data',
{
name: this.translate.instant('action.view'),
icon: 'more_horiz',
isEnabled: (entity) => this.isEdgeEventHasData(entity),
2020-12-22 19:21:06 +02:00
onAction: ($event, entity) =>
{
this.prepareEdgeEventContent(entity).subscribe(
(content) => this.showEdgeEventContent($event, content,'event.data'),
() => this.showEntityNotFoundError()
);
2020-12-22 19:21:06 +02:00
}
},
'40px'),
);
if (updateTableColumns) {
this.table.columnsUpdated(true);
}
}
private updateEdgeEventStatus(createdTime: number): string {
if (this.queueStartTs && createdTime < this.queueStartTs) {
return this.translate.instant('edge.deployed');
} else {
return this.translate.instant('edge.pending');
2020-12-22 19:21:06 +02:00
}
}
private isPending(createdTime: number): boolean {
return createdTime > this.queueStartTs;
2020-12-22 19:21:06 +02:00
}
private isEdgeEventHasData(entity: EdgeEvent): boolean {
return !(entity.type === EdgeEventType.ADMIN_SETTINGS ||
entity.action === EdgeEventActionType.DELETED);
2020-12-22 19:21:06 +02:00
}
private prepareEdgeEventContent(entity: EdgeEvent): Observable<string> {
return this.entityService.getEdgeEventContent(entity).pipe(
map((result) => JSON.stringify(result))
);
2020-12-22 19:21:06 +02:00
}
private showEdgeEventContent($event: MouseEvent, content: string, title: string): void {
2020-12-22 19:21:06 +02:00
if ($event) {
$event.stopPropagation();
}
this.dialog.open<EventContentDialogComponent, EventContentDialogData>(EventContentDialogComponent, {
disableClose: true,
panelClass: ['tb-dialog', 'tb-fullscreen-dialog'],
data: {
content,
title,
contentType: ContentType.JSON
2020-12-22 19:21:06 +02:00
}
});
}
private showEntityNotFoundError(): void {
this.store.dispatch(new ActionNotificationShow(
{
message: this.translate.instant('edge.load-entity-error'),
type: 'error',
verticalPosition: 'top',
horizontalPosition: 'left'
}
));
}
2020-12-22 19:21:06 +02:00
}