483 lines
17 KiB
TypeScript
Raw Normal View History

///
2022-01-17 14:07:46 +02:00
/// Copyright © 2016-2022 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 { EntityId } from '@shared/models/id/entity-id';
import { DataKey, FormattedData, WidgetActionDescriptor, WidgetConfig } from '@shared/models/widget.models';
import { getDescendantProp, isDefined, isNotEmptyStr } from '@core/utils';
2020-07-03 18:33:06 +03:00
import { AlarmDataInfo, alarmFields } from '@shared/models/alarm.models';
import * as tinycolor_ from 'tinycolor2';
2020-06-22 18:55:15 +03:00
import { Direction, EntityDataSortOrder, EntityKey } from '@shared/models/query/query.models';
2020-07-03 18:33:06 +03:00
import { DataKeyType } from '@shared/models/telemetry/telemetry.models';
import { WidgetContext } from '@home/models/widget-component.models';
import { UtilsService } from '@core/services/utils.service';
import { TranslateService } from '@ngx-translate/core';
const tinycolor = tinycolor_;
type ColumnVisibilityOptions = 'visible' | 'hidden' | 'hidden-mobile';
2021-03-12 12:15:35 +02:00
type ColumnSelectionOptions = 'enabled' | 'disabled';
export interface TableWidgetSettings {
enableSearch: boolean;
2021-03-12 12:15:35 +02:00
enableStickyAction: boolean;
enableStickyHeader: boolean;
displayPagination: boolean;
defaultPageSize: number;
2021-03-12 12:15:35 +02:00
useRowStyleFunction: boolean;
rowStyleFunction?: string;
reserveSpaceForHiddenAction?: boolean;
}
export interface TableWidgetDataKeySettings {
customTitle?: string;
2020-01-30 13:03:53 +02:00
columnWidth?: string;
useCellStyleFunction: boolean;
2021-03-12 12:15:35 +02:00
cellStyleFunction?: string;
useCellContentFunction: boolean;
2021-03-12 12:15:35 +02:00
cellContentFunction?: string;
defaultColumnVisibility?: ColumnVisibilityOptions;
columnSelectionToDisplay?: ColumnSelectionOptions;
}
export type ShowCellButtonActionFunction = (ctx: WidgetContext, data: EntityData | AlarmDataInfo | FormattedData) => boolean;
export interface TableCellButtonActionDescriptor extends WidgetActionDescriptor {
useShowActionCellButtonFunction: boolean;
showActionCellButtonFunction: ShowCellButtonActionFunction;
}
export interface EntityData {
id: EntityId;
entityName: string;
2020-02-25 11:43:35 +02:00
entityLabel?: string;
entityType?: string;
actionCellButtons?: TableCellButtonActionDescriptor[];
hasActions?: boolean;
[key: string]: any;
}
export interface EntityColumn extends DataKey {
def: string;
title: string;
sortable: boolean;
2020-06-22 18:55:15 +03:00
entityKey?: EntityKey;
}
export interface DisplayColumn {
title: string;
def: string;
display: boolean;
2021-03-12 12:15:35 +02:00
selectable: boolean;
}
export type CellContentFunction = (...args: any[]) => string;
export interface CellContentInfo {
useCellContentFunction: boolean;
cellContentFunction?: CellContentFunction;
units?: string;
decimals?: number;
}
2021-03-12 12:15:35 +02:00
export type CellStyleFunction = (...args: any[]) => any;
export interface CellStyleInfo {
useCellStyleFunction: boolean;
cellStyleFunction?: CellStyleFunction;
}
2021-03-12 12:15:35 +02:00
export type RowStyleFunction = (...args: any[]) => any;
export interface RowStyleInfo {
useRowStyleFunction: boolean;
rowStyleFunction?: RowStyleFunction;
}
2020-06-22 18:55:15 +03:00
export function entityDataSortOrderFromString(strSortOrder: string, columns: EntityColumn[]): EntityDataSortOrder {
if (!strSortOrder && !strSortOrder.length) {
return null;
}
let property: string;
let direction = Direction.ASC;
if (strSortOrder.startsWith('-')) {
direction = Direction.DESC;
property = strSortOrder.substring(1);
} else {
if (strSortOrder.startsWith('+')) {
property = strSortOrder.substring(1);
} else {
property = strSortOrder;
}
}
if (!property && !property.length) {
return null;
}
let column = findColumnByLabel(property, columns);
if (!column) {
column = findColumnByName(property, columns);
}
2020-06-22 18:55:15 +03:00
if (column && column.entityKey) {
return {key: column.entityKey, direction};
}
return null;
}
export function findColumnByEntityKey(key: EntityKey, columns: EntityColumn[]): EntityColumn {
if (key) {
return columns.find(theColumn => theColumn.entityKey &&
theColumn.entityKey.type === key.type && theColumn.entityKey.key === key.key);
} else {
return null;
}
}
export function findEntityKeyByColumnDef(def: string, columns: EntityColumn[]): EntityKey {
if (def) {
const column = findColumnByDef(def, columns);
return column ? column.entityKey : null;
} else {
return null;
}
2020-06-22 18:55:15 +03:00
}
export function findColumn(searchProperty: string, searchValue: string, columns: EntityColumn[]): EntityColumn {
return columns.find(theColumn => theColumn[searchProperty] === searchValue);
}
export function findColumnByName(name: string, columns: EntityColumn[]): EntityColumn {
return findColumn('name', name, columns);
}
2020-06-22 18:55:15 +03:00
export function findColumnByLabel(label: string, columns: EntityColumn[]): EntityColumn {
2020-07-03 18:33:06 +03:00
let column: EntityColumn;
const alarmColumns = columns.filter(c => c.type === DataKeyType.alarm);
if (alarmColumns.length) {
column = findColumn('name', label, alarmColumns);
}
if (!column) {
column = findColumn('label', label, columns);
}
return column;
2020-06-22 18:55:15 +03:00
}
export function findColumnByDef(def: string, columns: EntityColumn[]): EntityColumn {
return findColumn('def', def, columns);
}
export function findColumnProperty(searchProperty: string, searchValue: string, columnProperty: string, columns: EntityColumn[]): string {
let res = searchValue;
const column = columns.find(theColumn => theColumn[searchProperty] === searchValue);
if (column) {
res = column[columnProperty];
}
return res;
}
2020-06-22 18:55:15 +03:00
export function toEntityKey(def: string, columns: EntityColumn[]): string {
return findColumnProperty('def', def, 'label', columns);
}
export function toEntityColumnDef(label: string, columns: EntityColumn[]): string {
return findColumnProperty('label', label, 'def', columns);
}
export function fromEntityColumnDef(def: string, columns: EntityColumn[]): string {
return findColumnProperty('def', def, 'label', columns);
}
export function toAlarmColumnDef(name: string, columns: EntityColumn[]): string {
return findColumnProperty('name', name, 'def', columns);
}
export function fromAlarmColumnDef(def: string, columns: EntityColumn[]): string {
return findColumnProperty('def', def, 'name', columns);
}
export function getEntityValue(entity: any, key: DataKey): any {
return getDescendantProp(entity, key.label);
}
2020-07-03 18:33:06 +03:00
export function getAlarmValue(alarm: AlarmDataInfo, key: EntityColumn) {
let alarmField = null;
if (key.type === DataKeyType.alarm) {
2020-11-17 19:06:38 +02:00
alarmField = alarmFields[key.name]?.value;
if (!alarmField && key.name.startsWith('details.')) {
alarmField = key.name;
}
}
if (alarmField) {
2020-11-17 19:06:38 +02:00
return getDescendantProp(alarm, alarmField);
} else {
return getDescendantProp(alarm, key.label);
}
}
2021-03-12 12:15:35 +02:00
export function getRowStyleInfo(settings: TableWidgetSettings, ...args: string[]): RowStyleInfo {
let rowStyleFunction: RowStyleFunction = null;
let useRowStyleFunction = false;
if (settings.useRowStyleFunction === true) {
if (isDefined(settings.rowStyleFunction) && settings.rowStyleFunction.length > 0) {
try {
rowStyleFunction = new Function(...args, settings.rowStyleFunction) as RowStyleFunction;
useRowStyleFunction = true;
} catch (e) {
rowStyleFunction = null;
useRowStyleFunction = false;
}
}
}
return {
useRowStyleFunction,
rowStyleFunction
};
}
export function getCellStyleInfo(keySettings: TableWidgetDataKeySettings, ...args: string[]): CellStyleInfo {
let cellStyleFunction: CellStyleFunction = null;
let useCellStyleFunction = false;
if (keySettings.useCellStyleFunction === true) {
if (isDefined(keySettings.cellStyleFunction) && keySettings.cellStyleFunction.length > 0) {
try {
2021-03-12 12:15:35 +02:00
cellStyleFunction = new Function(...args, keySettings.cellStyleFunction) as CellStyleFunction;
useCellStyleFunction = true;
} catch (e) {
cellStyleFunction = null;
useCellStyleFunction = false;
}
}
}
return {
useCellStyleFunction,
cellStyleFunction
};
}
export function getCellContentInfo(keySettings: TableWidgetDataKeySettings, ...args: string[]): CellContentInfo {
let cellContentFunction: CellContentFunction = null;
let useCellContentFunction = false;
if (keySettings.useCellContentFunction === true) {
if (isDefined(keySettings.cellContentFunction) && keySettings.cellContentFunction.length > 0) {
try {
cellContentFunction = new Function(...args, keySettings.cellContentFunction) as CellContentFunction;
useCellContentFunction = true;
} catch (e) {
cellContentFunction = null;
useCellContentFunction = false;
}
}
}
return {
cellContentFunction,
useCellContentFunction
};
}
export function getColumnWidth(keySettings: TableWidgetDataKeySettings): string {
return isDefined(keySettings.columnWidth) ? keySettings.columnWidth : '0px';
}
2020-02-04 19:50:18 +02:00
export function widthStyle(width: string): any {
const widthStyleObj: any = {width};
if (width !== '0px') {
widthStyleObj.minWidth = width;
widthStyleObj.maxWidth = width;
}
return widthStyleObj;
}
export function getColumnDefaultVisibility(keySettings: TableWidgetDataKeySettings, ctx?: WidgetContext): boolean {
return !(isDefined(keySettings.defaultColumnVisibility) && (keySettings.defaultColumnVisibility === 'hidden' ||
(ctx && ctx.isMobile && keySettings.defaultColumnVisibility === 'hidden-mobile')));
2021-03-12 12:15:35 +02:00
}
export function getColumnSelectionAvailability(keySettings: TableWidgetDataKeySettings): boolean {
return !(isDefined(keySettings.columnSelectionToDisplay) && keySettings.columnSelectionToDisplay === 'disabled');
}
2020-02-04 19:50:18 +02:00
export function getTableCellButtonActions(widgetContext: WidgetContext): TableCellButtonActionDescriptor[] {
return widgetContext.actionsApi.getActionDescriptors('actionCellButton').map(descriptor => {
let useShowActionCellButtonFunction = descriptor.useShowWidgetActionFunction || false;
let showActionCellButtonFunction: ShowCellButtonActionFunction = null;
if (useShowActionCellButtonFunction && isNotEmptyStr(descriptor.showWidgetActionFunction)) {
try {
showActionCellButtonFunction =
new Function('widgetContext', 'data', descriptor.showWidgetActionFunction) as ShowCellButtonActionFunction;
} catch (e) {
useShowActionCellButtonFunction = false;
}
}
return {...descriptor, showActionCellButtonFunction, useShowActionCellButtonFunction};
});
}
export function checkHasActions(cellButtonActions: TableCellButtonActionDescriptor[]): boolean {
return cellButtonActions.some(action => action.icon);
}
export function prepareTableCellButtonActions(widgetContext: WidgetContext, cellButtonActions: TableCellButtonActionDescriptor[],
data: EntityData | AlarmDataInfo | FormattedData,
reserveSpaceForHiddenAction = true): TableCellButtonActionDescriptor[] {
if (reserveSpaceForHiddenAction) {
return cellButtonActions.map(action =>
filterTableCellButtonAction(widgetContext, action, data) ? action : { id: action.id } as TableCellButtonActionDescriptor);
}
return cellButtonActions.filter(action => filterTableCellButtonAction(widgetContext, action, data));
}
function filterTableCellButtonAction(widgetContext: WidgetContext,
action: TableCellButtonActionDescriptor, data: EntityData | AlarmDataInfo | FormattedData): boolean {
if (action.useShowActionCellButtonFunction) {
try {
return action.showActionCellButtonFunction(widgetContext, data);
} catch (e) {
console.warn('Failed to execute showActionCellButtonFunction', e);
return false;
}
} else {
return true;
}
}
2020-02-04 19:50:18 +02:00
export function noDataMessage(noDataDisplayMessage: string, defaultMessage: string,
utils: UtilsService, translate: TranslateService): string {
if (isNotEmptyStr(noDataDisplayMessage)) {
return utils.customTranslation(noDataDisplayMessage, noDataDisplayMessage);
}
return translate.instant(defaultMessage);
}
export function constructTableCssString(widgetConfig: WidgetConfig): string {
const origColor = widgetConfig.color || 'rgba(0, 0, 0, 0.87)';
const origBackgroundColor = widgetConfig.backgroundColor || 'rgb(255, 255, 255)';
const currentEntityColor = 'rgba(221, 221, 221, 0.65)';
const currentEntityStickyColor = tinycolor.mix(origBackgroundColor,
tinycolor(currentEntityColor).setAlpha(1), 65).toRgbString();
const selectedColor = 'rgba(221, 221, 221, 0.5)';
const selectedStickyColor = tinycolor.mix(origBackgroundColor,
tinycolor(selectedColor).setAlpha(1), 50).toRgbString();
const hoverColor = 'rgba(221, 221, 221, 0.3)';
const hoverStickyColor = tinycolor.mix(origBackgroundColor,
tinycolor(hoverColor).setAlpha(1), 30).toRgbString();
const defaultColor = tinycolor(origColor);
const mdDark = defaultColor.setAlpha(0.87).toRgbString();
const mdDarkSecondary = defaultColor.setAlpha(0.54).toRgbString();
const mdDarkDisabled = defaultColor.setAlpha(0.26).toRgbString();
2020-01-30 13:03:53 +02:00
const mdDarkDisabled2 = defaultColor.setAlpha(0.38).toRgbString();
const mdDarkDivider = defaultColor.setAlpha(0.12).toRgbString();
const cssString =
'.mat-input-element::placeholder {\n' +
' color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-input-element::-moz-placeholder {\n' +
' color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-input-element::-webkit-input-placeholder {\n' +
' color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-input-element:-ms-input-placeholder {\n' +
' color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'mat-toolbar.mat-table-toolbar {\n' +
'color: ' + mdDark + ';\n' +
'}\n' +
'mat-toolbar.mat-table-toolbar:not([color="primary"]) button.mat-icon-button mat-icon {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-tab-label {\n' +
'color: ' + mdDark + ';\n' +
'}\n' +
'.mat-tab-header-pagination-chevron {\n' +
'border-color: ' + mdDark + ';\n' +
'}\n' +
'.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\n' +
'border-color: ' + mdDarkDisabled2 + ';\n' +
'}\n' +
'.mat-table .mat-header-row {\n' +
'background-color: ' + origBackgroundColor + ';\n' +
'}\n' +
'.mat-table .mat-header-cell {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-table .mat-cell, .mat-table .mat-header-cell {\n' +
'border-bottom-color: ' + mdDarkDivider + ';\n' +
'}\n' +
'.mat-table .mat-cell .mat-checkbox-frame, .mat-table .mat-header-cell .mat-checkbox-frame {\n' +
'border-color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-table .mat-row .mat-cell.mat-table-sticky {\n' +
'transition: background-color .2s;\n' +
'}\n' +
'.mat-table .mat-row.tb-current-entity {\n' +
'background-color: ' + currentEntityColor + ';\n' +
'}\n' +
'.mat-table .mat-row.tb-current-entity .mat-cell.mat-table-sticky {\n' +
'background-color: ' + currentEntityStickyColor + ';\n' +
'}\n' +
'.mat-table .mat-row:hover:not(.tb-current-entity) {\n' +
'background-color: ' + hoverColor + ';\n' +
'}\n' +
'.mat-table .mat-row:hover:not(.tb-current-entity) .mat-cell.mat-table-sticky {\n' +
'background-color: ' + hoverStickyColor + ';\n' +
'}\n' +
'.mat-table .mat-row.mat-row-select.mat-selected:not(.tb-current-entity) {\n' +
'background-color: ' + selectedColor + ';\n' +
'}\n' +
'.mat-table .mat-row.mat-row-select.mat-selected:not(.tb-current-entity) .mat-cell.mat-table-sticky {\n' +
'background-color: ' + selectedStickyColor + ';\n' +
'}\n' +
'.mat-table .mat-row .mat-cell.mat-table-sticky, .mat-table .mat-header-cell.mat-table-sticky {\n' +
'background-color: ' + origBackgroundColor + ';\n' +
'}\n' +
'.mat-table .mat-cell {\n' +
'color: ' + mdDark + ';\n' +
'}\n' +
'.mat-table .mat-cell button.mat-icon-button mat-icon {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-table .mat-cell button.mat-icon-button[disabled][disabled] mat-icon {\n' +
'color: ' + mdDarkDisabled + ';\n' +
'}\n' +
'.mat-divider {\n' +
'border-top-color: ' + mdDarkDivider + ';\n' +
'}\n' +
'.mat-paginator {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-paginator button.mat-icon-button {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-paginator button.mat-icon-button[disabled][disabled] {\n' +
'color: ' + mdDarkDisabled + ';\n' +
'}\n' +
'.mat-paginator .mat-select-value {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}';
return cssString;
}
export function getHeaderTitle(dataKey: DataKey, keySettings: TableWidgetDataKeySettings, utils: UtilsService) {
if (isDefined(keySettings.customTitle) && isNotEmptyStr(keySettings.customTitle)) {
return utils.customTranslation(keySettings.customTitle, keySettings.customTitle);
}
return dataKey.label;
}