@openremote/or-attribute-history 1.2.0-snapshot.20240512154942
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/lib/index.d.ts +122 -0
- package/lib/index.js +149 -0
- package/lib/index.js.map +1 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @openremote/or-attribute-history \<or-attribute-history\>
|
|
2
|
+
[![NPM Version][npm-image]][npm-url]
|
|
3
|
+
[![Linux Build][travis-image]][travis-url]
|
|
4
|
+
[![Test Coverage][coveralls-image]][coveralls-url]
|
|
5
|
+
|
|
6
|
+
Web Component for displaying historical values of an attribute.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
```bash
|
|
10
|
+
npm i @openremote/or-attribute-history
|
|
11
|
+
yarn add @openremote/or-attribute-history
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
For a full list of properties, methods and options refer to the TypeDoc generated [documentation]().
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Supported Browsers
|
|
19
|
+
The last 2 versions of all modern browsers are supported, including Chrome, Safari, Opera, Firefox, Edge. In addition,
|
|
20
|
+
Internet Explorer 11 is also supported.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
[GNU AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
25
|
+
|
|
26
|
+
[npm-image]: https://img.shields.io/npm/v/live-xxx.svg
|
|
27
|
+
[npm-url]: https://npmjs.org/package/@openremote/or-attribute-history
|
|
28
|
+
[travis-image]: https://img.shields.io/travis/live-js/live-xxx/master.svg
|
|
29
|
+
[travis-url]: https://travis-ci.org/live-js/live-xxx
|
|
30
|
+
[coveralls-image]: https://img.shields.io/coveralls/live-js/live-xxx/master.svg
|
|
31
|
+
[coveralls-url]: https://coveralls.io/r/live-js/live-xxx?branch=master
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { LitElement, PropertyValues, TemplateResult } from "lit";
|
|
2
|
+
import { Attribute, AttributeRef, ValueDatapoint, ValueDescriptor } from "@openremote/model";
|
|
3
|
+
import "@openremote/or-mwc-components/or-mwc-input";
|
|
4
|
+
import "@openremote/or-components/or-panel";
|
|
5
|
+
import "@openremote/or-translate";
|
|
6
|
+
import "@openremote/or-chart";
|
|
7
|
+
import { Chart, ScatterDataPoint, TimeUnit } from "chart.js";
|
|
8
|
+
import "chartjs-adapter-moment";
|
|
9
|
+
import { MDCDataTable } from "@material/data-table";
|
|
10
|
+
import moment from "moment";
|
|
11
|
+
export declare class OrAttributeHistoryEvent extends CustomEvent<OrAttributeHistoryEventDetail> {
|
|
12
|
+
static readonly NAME = "or-attribute-history-event";
|
|
13
|
+
constructor(value?: any, previousValue?: any);
|
|
14
|
+
}
|
|
15
|
+
export interface OrAttributeHistoryEventDetail {
|
|
16
|
+
value?: any;
|
|
17
|
+
previousValue?: any;
|
|
18
|
+
}
|
|
19
|
+
declare global {
|
|
20
|
+
export interface HTMLElementEventMap {
|
|
21
|
+
[OrAttributeHistoryEvent.NAME]: OrAttributeHistoryEvent;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
export type TableColumnType = "timestamp" | "prop";
|
|
25
|
+
export interface TableColumnConfig {
|
|
26
|
+
type?: TableColumnType;
|
|
27
|
+
header?: string;
|
|
28
|
+
numeric?: boolean;
|
|
29
|
+
path?: string;
|
|
30
|
+
stringify?: boolean;
|
|
31
|
+
styles?: {
|
|
32
|
+
[style: string]: string;
|
|
33
|
+
};
|
|
34
|
+
headerStyles?: {
|
|
35
|
+
[style: string]: string;
|
|
36
|
+
};
|
|
37
|
+
contentProvider?: (datapoint: ValueDatapoint<any>, value: any, config: TableColumnConfig) => TemplateResult | any | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface AssetTableConfig {
|
|
40
|
+
timestampFormat?: string;
|
|
41
|
+
autoColumns?: boolean;
|
|
42
|
+
columns?: TableColumnConfig[];
|
|
43
|
+
styles?: {
|
|
44
|
+
[style: string]: string;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
export interface TableConfig {
|
|
48
|
+
default?: AssetTableConfig;
|
|
49
|
+
assetTypes?: {
|
|
50
|
+
[assetType: string]: {
|
|
51
|
+
attributeNames?: {
|
|
52
|
+
[attributeName: string]: AssetTableConfig;
|
|
53
|
+
};
|
|
54
|
+
attributeValueTypes?: {
|
|
55
|
+
[attributeValueType: string]: AssetTableConfig;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
attributeNames?: {
|
|
60
|
+
[attributeName: string]: AssetTableConfig;
|
|
61
|
+
};
|
|
62
|
+
attributeValueTypes?: {
|
|
63
|
+
[attributeValueType: string]: AssetTableConfig;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export interface ChartConfig {
|
|
67
|
+
xLabel?: string;
|
|
68
|
+
yLabel?: string;
|
|
69
|
+
}
|
|
70
|
+
export interface HistoryConfig {
|
|
71
|
+
table?: TableConfig;
|
|
72
|
+
chart?: ChartConfig;
|
|
73
|
+
}
|
|
74
|
+
declare const OrAttributeHistory_base: (new (...args: any[]) => {
|
|
75
|
+
_i18nextJustInitialized: boolean;
|
|
76
|
+
connectedCallback(): void;
|
|
77
|
+
disconnectedCallback(): void;
|
|
78
|
+
shouldUpdate(changedProps: import("lit").PropertyValueMap<any> | Map<PropertyKey, unknown>): any;
|
|
79
|
+
initCallback: (options: import("i18next").InitOptions) => void;
|
|
80
|
+
langChangedCallback: () => void;
|
|
81
|
+
readonly isConnected: boolean;
|
|
82
|
+
}) & typeof LitElement;
|
|
83
|
+
export declare class OrAttributeHistory extends OrAttributeHistory_base {
|
|
84
|
+
static DEFAULT_TIMESTAMP_FORMAT: string;
|
|
85
|
+
static get styles(): import("lit").CSSResult[];
|
|
86
|
+
assetType?: string;
|
|
87
|
+
assetId?: string;
|
|
88
|
+
attribute?: Attribute<any>;
|
|
89
|
+
attributeRef?: AttributeRef;
|
|
90
|
+
period: moment.unitOfTime.Base;
|
|
91
|
+
toTimestamp?: Date;
|
|
92
|
+
config?: HistoryConfig;
|
|
93
|
+
protected _loading: boolean;
|
|
94
|
+
protected _data?: ValueDatapoint<any>[];
|
|
95
|
+
protected _tableTemplate?: TemplateResult;
|
|
96
|
+
protected _chartElem: HTMLCanvasElement;
|
|
97
|
+
protected _tableElem: HTMLDivElement;
|
|
98
|
+
protected _table?: MDCDataTable;
|
|
99
|
+
protected _chart?: Chart<"line", ScatterDataPoint[]>;
|
|
100
|
+
protected _type?: ValueDescriptor;
|
|
101
|
+
protected _style: CSSStyleDeclaration;
|
|
102
|
+
protected _startOfPeriod?: number;
|
|
103
|
+
protected _endOfPeriod?: number;
|
|
104
|
+
protected _timeUnits?: TimeUnit;
|
|
105
|
+
protected _stepSize?: number;
|
|
106
|
+
protected _updateTimestampTimer?: number;
|
|
107
|
+
protected _dataFirstLoaded: boolean;
|
|
108
|
+
connectedCallback(): void;
|
|
109
|
+
disconnectedCallback(): void;
|
|
110
|
+
shouldUpdate(_changedProperties: PropertyValues): boolean;
|
|
111
|
+
render(): TemplateResult<1>;
|
|
112
|
+
willUpdate(changedProperties: PropertyValues): void;
|
|
113
|
+
onCompleted(): Promise<void>;
|
|
114
|
+
protected _cleanup(): void;
|
|
115
|
+
protected _getTableTemplate(): TemplateResult;
|
|
116
|
+
protected _getCellValue(datapoint: ValueDatapoint<any>, config: TableColumnConfig, timestampFormat: string | undefined): TemplateResult | string | undefined;
|
|
117
|
+
protected _getIntervalOptions(): [string, string][];
|
|
118
|
+
protected _getPeriodOptions(): string[];
|
|
119
|
+
protected _loadData(): Promise<void>;
|
|
120
|
+
protected _updateTimestamp(timestamp: Date, forward?: boolean, timeout?: number): void;
|
|
121
|
+
}
|
|
122
|
+
export {};
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
var OrAttributeHistory_1,__decorate=this&&this.__decorate||function(t,e,r,i){var o,a=arguments.length,s=a<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,r,i);else for(var n=t.length-1;n>=0;n--)(o=t[n])&&(s=(a<3?o(s):a>3?o(e,r,s):o(e,r))||s);return a>3&&s&&Object.defineProperty(e,r,s),s},__awaiter=this&&this.__awaiter||function(t,e,r,i){return new(r||(r=Promise))((function(o,a){function s(t){try{l(i.next(t))}catch(t){a(t)}}function n(t){try{l(i.throw(t))}catch(t){a(t)}}function l(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(s,n)}l((i=i.apply(t,e||[])).next())}))};import{css,html,LitElement,unsafeCSS}from"lit";import{customElement,property,query}from"lit/decorators.js";import i18next from"i18next";import{translate}from"@openremote/or-translate";import{AssetModelUtil}from"@openremote/model";import manager,{DefaultColor2,DefaultColor3,DefaultColor4}from"@openremote/core";import"@openremote/or-mwc-components/or-mwc-input";import"@openremote/or-components/or-panel";import"@openremote/or-translate";import"@openremote/or-chart";import{Chart}from"chart.js";import"chartjs-adapter-moment";import{InputType}from"@openremote/or-mwc-components/or-mwc-input";import{JSONPath}from"jsonpath-plus";import moment from"moment";import{styleMap}from"lit/directives/style-map.js";export class OrAttributeHistoryEvent extends CustomEvent{constructor(t,e){super(OrAttributeHistoryEvent.NAME,{detail:{value:t,previousValue:e},bubbles:!0,composed:!0})}}OrAttributeHistoryEvent.NAME="or-attribute-history-event";const tableStyle=require("@material/data-table/dist/mdc.data-table.css"),style=css`
|
|
2
|
+
:host {
|
|
3
|
+
--internal-or-attribute-history-background-color: var(--or-attribute-history-background-color, var(--or-app-color2, ${unsafeCSS(DefaultColor2)}));
|
|
4
|
+
--internal-or-attribute-history-text-color: var(--or-attribute-history-text-color, var(--or-app-color3, ${unsafeCSS(DefaultColor3)}));
|
|
5
|
+
--internal-or-attribute-history-controls-margin: var(--or-attribute-history-controls-margin, 10px 0);
|
|
6
|
+
--internal-or-attribute-history-controls-justify-content: var(--or-attribute-history-controls-justify-content, flex-end);
|
|
7
|
+
--internal-or-attribute-history-graph-fill-color: var(--or-attribute-history-graph-fill-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
8
|
+
--internal-or-attribute-history-graph-fill-opacity: var(--or-attribute-history-graph-fill-opacity, 1);
|
|
9
|
+
--internal-or-attribute-history-graph-line-color: var(--or-attribute-history-graph-line-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
10
|
+
--internal-or-attribute-history-graph-point-color: var(--or-attribute-history-graph-point-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
11
|
+
--internal-or-attribute-history-graph-point-border-color: var(--or-attribute-history-graph-point-border-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
12
|
+
--internal-or-attribute-history-graph-point-radius: var(--or-attribute-history-graph-point-radius, 2);
|
|
13
|
+
--internal-or-attribute-history-graph-point-hit-radius: var(--or-attribute-history-graph-point-hit-radius, 20);
|
|
14
|
+
--internal-or-attribute-history-graph-point-border-width: var(--or-attribute-history-graph-point-border-width, 2);
|
|
15
|
+
--internal-or-attribute-history-graph-point-hover-color: var(--or-attribute-history-graph-point-hover-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
16
|
+
--internal-or-attribute-history-graph-point-hover-border-color: var(--or-attribute-history-graph-point-hover-border-color, var(--or-app-color4, ${unsafeCSS(DefaultColor4)}));
|
|
17
|
+
--internal-or-attribute-history-graph-point-hover-radius: var(--or-attribute-history-graph-point-hover-radius, 4);
|
|
18
|
+
--internal-or-attribute-history-graph-point-hover-border-width: var(--or-attribute-history-graph-point-hover-border-width, 2);
|
|
19
|
+
display: block;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
:host([hidden]) {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#container {
|
|
27
|
+
display: flex;
|
|
28
|
+
min-width: 0;
|
|
29
|
+
width: 100%;
|
|
30
|
+
height: 100%;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.button-icon {
|
|
35
|
+
align-self: center;
|
|
36
|
+
padding: 10px;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
#msg {
|
|
42
|
+
height: 100%;
|
|
43
|
+
width: 100%;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
align-items: center;
|
|
46
|
+
text-align: center;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
#msg:not([hidden]) {
|
|
50
|
+
display: flex;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
#controls {
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-wrap: wrap;
|
|
56
|
+
justify-content: var(--internal-or-attribute-history-controls-justify-content);
|
|
57
|
+
margin: var(--internal-or-attribute-history-controls-margin);
|
|
58
|
+
flex-direction: row;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
#time-picker {
|
|
62
|
+
width: 150px;
|
|
63
|
+
padding: 0 5px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#ending-controls {
|
|
67
|
+
max-width: 100%;
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-wrap: wrap;
|
|
70
|
+
align-items: center;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#ending-controls > * {
|
|
74
|
+
padding: 0 3px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#ending-date {
|
|
78
|
+
width: 200px;
|
|
79
|
+
padding-left: 5px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
#chart-container {
|
|
83
|
+
position: relative;
|
|
84
|
+
min-height: 250px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
#table-container {
|
|
88
|
+
height: 100%;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
#table {
|
|
92
|
+
width: 100%;
|
|
93
|
+
margin-bottom: 10px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
#table > table {
|
|
97
|
+
width: 100%;
|
|
98
|
+
table-layout: fixed;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
#table th, #table td {
|
|
102
|
+
overflow: hidden;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
text-overflow: ellipsis;
|
|
105
|
+
}
|
|
106
|
+
`;let OrAttributeHistory=OrAttributeHistory_1=class extends(translate(i18next)(LitElement)){constructor(){super(...arguments),this.period="day",this._loading=!1,this._dataFirstLoaded=!1}static get styles(){return[css`${unsafeCSS(tableStyle)}`,style]}connectedCallback(){super.connectedCallback(),this._style=window.getComputedStyle(this)}disconnectedCallback(){super.disconnectedCallback(),this._cleanup()}shouldUpdate(t){let e=t.has("period")||t.has("toTimestamp")||t.has("attribute");return!(this._dataFirstLoaded&&!t.get("_loading")&&!e)&&(this.toTimestamp?(!this._type&&this.attribute&&(this._type=AssetModelUtil.getValueDescriptor(this.attribute.type)||{}),e&&(this._type=void 0,this._data=void 0,this._loadData()),super.shouldUpdate(t)):(this.toTimestamp=new Date,!1))}render(){const t=this._type&&("number"===this._type.jsonType||"boolean"===this._type.jsonType),e=this._loading||!this._type;return html`
|
|
107
|
+
<div id="container">
|
|
108
|
+
<div id="controls">
|
|
109
|
+
<or-mwc-input id="time-picker" .type="${InputType.SELECT}" ?disabled="${e}" .label="${i18next.t("timeframe")}" @or-mwc-input-changed="${t=>this.period=t.detail.value}" .value="${this.period}" .options="${this._getPeriodOptions()}"></or-mwc-input>
|
|
110
|
+
<div id="ending-controls">
|
|
111
|
+
<or-mwc-input id="ending-date" .type="${InputType.DATETIME}" ?disabled="${e}" label="${i18next.t("ending")}" .value="${this.toTimestamp}" @or-mwc-input-changed="${t=>this._updateTimestamp(moment(t.detail.value).toDate())}"></or-mwc-input>
|
|
112
|
+
<or-icon class="button button-icon" ?disabled="${e}" icon="chevron-left" @click="${()=>this._updateTimestamp(this.toTimestamp,!1,0)}"></or-icon>
|
|
113
|
+
<or-icon class="button button-icon" ?disabled="${e}" icon="chevron-right" @click="${()=>this._updateTimestamp(this.toTimestamp,!0,0)}"></or-icon>
|
|
114
|
+
<or-icon class="button button-icon" ?disabled="${e}" icon="chevron-double-right" @click="${()=>this._updateTimestamp(new Date)}"></or-icon>
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
${this._type?t?html`
|
|
119
|
+
<div id="chart-container">
|
|
120
|
+
<canvas id="chart"></canvas>
|
|
121
|
+
</div>
|
|
122
|
+
`:html`
|
|
123
|
+
<div id="table-container">
|
|
124
|
+
${this._tableTemplate||""}
|
|
125
|
+
</div>
|
|
126
|
+
`:html`
|
|
127
|
+
<div id="msg">
|
|
128
|
+
<or-translate value="invalidAttribute"></or-translate>
|
|
129
|
+
</div>
|
|
130
|
+
`}
|
|
131
|
+
</div>
|
|
132
|
+
`}willUpdate(t){if(super.willUpdate(t),this._type&&this._data){if(!this._type||"number"!==this._type.jsonType&&"boolean"!==this._type.jsonType)this._tableTemplate&&!t.has("_data")||(this._tableTemplate=this._getTableTemplate());else{const e=this._data;if(this._chart)t.has("_data")&&(this._chart.options.scales.x.min=this._startOfPeriod,this._chart.options.scales.x.max=this._endOfPeriod,this._chart.options.scales.x.time.unit=this._timeUnits,this._chart.options.scales.x.time.stepSize=this._stepSize,this._chart.data.datasets[0].data=e,this._chart.update());else{let t=this._style.getPropertyValue("--internal-or-attribute-history-graph-fill-color").trim();const r=Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-fill-opacity").trim());isNaN(r)||(!t.startsWith("#")||4!==t.length&&7!==t.length?t.startsWith("rgb(")&&(t=t.substring(0,t.length-1)+r):t+=4===t.length?Math.round(255*r).toString(16).substr(0,1):Math.round(255*r).toString(16));const i={type:"line",data:{datasets:[{data:e,backgroundColor:t,borderColor:this._style.getPropertyValue("--internal-or-attribute-history-graph-line-color"),pointBorderColor:this._style.getPropertyValue("--internal-or-attribute-history-graph-point-border-color"),pointBackgroundColor:this._style.getPropertyValue("--internal-or-attribute-history-graph-point-color"),pointRadius:Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-point-radius")),pointBorderWidth:Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-point-border-width")),pointHoverBackgroundColor:this._style.getPropertyValue("--internal-or-attribute-history-graph-point-hover-color"),pointHoverBorderColor:this._style.getPropertyValue("--internal-or-attribute-history-graph-point-hover-border-color"),pointHoverRadius:Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-point-hover-radius")),pointHoverBorderWidth:Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-point-hover-border-width")),pointHitRadius:Number(this._style.getPropertyValue("--internal-or-attribute-history-graph-point-hit-radius")),fill:!1}]},options:{responsive:!0,maintainAspectRatio:!1,onResize:()=>this.dispatchEvent(new OrAttributeHistoryEvent("resize")),plugins:{legend:{display:!1},tooltip:{displayColors:!1,xPadding:10,yPadding:10,titleMarginBottom:10}},scales:{y:{beginAtZero:!0,grid:{color:"#cccccc"}},x:{type:"time",min:this._startOfPeriod,max:this._endOfPeriod,time:{tooltipFormat:"MMM D, YYYY, HH:mm:ss",displayFormats:{millisecond:"HH:mm:ss.SSS",second:"HH:mm:ss",minute:"HH:mm",hour:"HH:mm",week:"w"},unit:this._timeUnits,stepSize:this._stepSize},ticks:{color:"#000",font:{family:"'Open Sans', Helvetica, Arial, Lucida, sans-serif",size:9,style:"normal"}},gridLines:{color:"#cccccc"}}}}};this._chart=new Chart(this._chartElem.getContext("2d"),i)}}this.onCompleted().then((()=>{this.dispatchEvent(new OrAttributeHistoryEvent("rendered"))}))}}onCompleted(){return __awaiter(this,void 0,void 0,(function*(){yield this.updateComplete}))}_cleanup(){this._tableTemplate=void 0,this._chart&&(this._chart.destroy(),this._chart=void 0),this._table&&(this._table.destroy(),this._table=void 0)}_getTableTemplate(){const t=this.assetType,e=this.attribute?this.attribute.name:this.attributeRef?this.attributeRef.name:void 0,r=this.attribute?this.attribute.type:void 0;if(!(this._data&&t&&e&&r))return html``;let i={autoColumns:!0};if(this.config&&this.config.table&&(this.config.table.assetTypes&&this.config.table.assetTypes[t]&&(this.config.table.assetTypes[t].attributeNames&&this.config.table.assetTypes[t].attributeNames[e]||r&&this.config.table.assetTypes[t].attributeValueTypes&&this.config.table.assetTypes[t].attributeValueTypes[r])?i=this.config.table.assetTypes[t].attributeNames&&this.config.table.assetTypes[t].attributeNames[e]||this.config.table.assetTypes[t].attributeValueTypes[r]:this.config.table.attributeNames&&this.config.table.attributeNames[e]?i=this.config.table.attributeNames[e]:r&&this.config.table.attributeValueTypes&&this.config.table.attributeValueTypes[r]?i=this.config.table.attributeValueTypes[r]:this.config.table.default&&(i=this.config.table.default),i||(i={autoColumns:!0})),i.autoColumns){i=Object.assign({},i),i.columns=[];const t=this._data.find((t=>void 0!==t.y));t&&("object"!=typeof t.y||Array.isArray(t.y)?i.columns.push({type:"prop",header:"value",stringify:"object"==typeof t.y,numeric:"number"==typeof t.y}):i.columns=Object.entries(t.y).map((([t,e])=>({type:"prop",header:t,path:"$.['"+t+"']",stringify:"object"==typeof e,numeric:!isNaN(Number(e))})))),i.columns.length>0&&i.columns.push({header:"timestamp",type:"timestamp"})}return i.columns&&i.columns.length>0?html`
|
|
133
|
+
<div id="table" class="mdc-data-table">
|
|
134
|
+
<table style="${i.styles?styleMap(i.styles):""}" class="mdc-data-table__table" aria-label="${e+" history"}">
|
|
135
|
+
<thead>
|
|
136
|
+
<tr class="mdc-data-table__header-row">
|
|
137
|
+
${i.columns.map((t=>html`<th style="${t.headerStyles?styleMap(t.headerStyles):""}" class="mdc-data-table__header-cell ${t.numeric?"mdc-data-table__header-cell--numeric":""}" role="columnheader" scope="col"><or-translate value="${t.header}"></or-translate></th>`))}
|
|
138
|
+
</tr>
|
|
139
|
+
</thead>
|
|
140
|
+
<tbody class="mdc-data-table__content">
|
|
141
|
+
${this._data.map((t=>html`
|
|
142
|
+
<tr class="mdc-data-table__row">
|
|
143
|
+
${i.columns.map((e=>{const r=this._getCellValue(t,e,i.timestampFormat);return html`<td style="${e.styles?styleMap(e.styles):""}" class="mdc-data-table__cell ${e.numeric?"mdc-data-table__cell--numeric":""}" title="${r}">${r}</td>`}))}
|
|
144
|
+
</tr>
|
|
145
|
+
`))}
|
|
146
|
+
</tbody>
|
|
147
|
+
</table>
|
|
148
|
+
</div>
|
|
149
|
+
`:(console.warn("OrAttributeHistory: No columns configured so nothing to show"),html``)}_getCellValue(t,e,r){switch(e.type){case"timestamp":const i=moment(t.x).format(r||OrAttributeHistory_1.DEFAULT_TIMESTAMP_FORMAT);if(e&&e.contentProvider){const r=e.contentProvider(t,i,e);if(r)return r}return i;case"prop":let o=t.y;if(e.path&&(o=JSONPath({path:e.path,json:t.y,wrap:!1}),Array.isArray(o)&&1===o.length&&(o=o[0])),e&&e.contentProvider){const r=e.contentProvider(t,o,e);if(r)return r}return e.stringify?JSON.stringify(o):o}}_getIntervalOptions(){return["HOUR","DAY","WEEK","MONTH","YEAR"].map((t=>[t,i18next.t(t.toLowerCase())]))}_getPeriodOptions(){return["HOUR".toLowerCase(),"DAY".toLowerCase(),"WEEK".toLowerCase(),"MONTH".toLowerCase(),"YEAR".toLowerCase()]}_loadData(){return __awaiter(this,void 0,void 0,(function*(){if(this._loading||this._data||!this.assetType||!this.assetId||!this.attribute&&!this.attributeRef||!this.period||!this.toTimestamp)return;this._loading=!0;const t=this.assetId,e=this.attribute?this.attribute.name:this.attributeRef.name;if(!this._type){let r=this.attribute;if(!r){const i=yield manager.rest.api.AssetResource.queryAssets({ids:[t],select:{attributes:[e]}});200===i.status&&i.data.length>0&&(r=i.data[0].attributes?i.data[0].attributes[e]:void 0)}r&&(this._type=AssetModelUtil.getValueDescriptor(r.type)||{})}if(!this._type||!this._type.name)return void(this._loading=!1);let r="HOUR",i=1;switch(this.period){case"hour":r="MINUTE",i=5;break;case"day":r="HOUR",i=1;break;case"week":r="HOUR",i=6;break;case"month":r="DAY",i=1;break;case"year":r="MONTH",i=1}const o=r.toLowerCase();let a;this._startOfPeriod=moment(this.toTimestamp).subtract(1,this.period).startOf(o).add(1,o).toDate().getTime(),this._endOfPeriod=moment(this.toTimestamp).startOf(o).add(1,o).toDate().getTime(),this._timeUnits=o,this._stepSize=i,a=!this._type||"number"!==this._type.jsonType&&"boolean"!==this._type.jsonType?yield manager.rest.api.AssetDatapointResource.getDatapoints(t,e,{type:"all",fromTimestamp:this._startOfPeriod,toTimestamp:this._endOfPeriod}):yield manager.rest.api.AssetDatapointResource.getDatapoints(t,e,{type:"lttb",fromTimestamp:this._startOfPeriod,toTimestamp:this._endOfPeriod,amountOfPoints:100}),this._loading=!1,200===a.status&&(this._data=a.data.filter((t=>null!==t.y&&void 0!==t.y)),this._dataFirstLoaded=!0)}))}_updateTimestamp(t,e,r=300){this._updateTimestampTimer&&(window.clearTimeout(this._updateTimestampTimer),this._updateTimestampTimer=void 0),this._updateTimestampTimer=window.setTimeout((()=>{const r=moment(t);void 0!==e&&r.add(e?1:-1,this.period),this.toTimestamp=r.toDate()}),r)}};OrAttributeHistory.DEFAULT_TIMESTAMP_FORMAT="L HH:mm:ss",__decorate([property({type:String})],OrAttributeHistory.prototype,"assetType",void 0),__decorate([property({type:String})],OrAttributeHistory.prototype,"assetId",void 0),__decorate([property({type:Object})],OrAttributeHistory.prototype,"attribute",void 0),__decorate([property({type:Object})],OrAttributeHistory.prototype,"attributeRef",void 0),__decorate([property({type:String})],OrAttributeHistory.prototype,"period",void 0),__decorate([property({type:Number})],OrAttributeHistory.prototype,"toTimestamp",void 0),__decorate([property({type:Object})],OrAttributeHistory.prototype,"config",void 0),__decorate([property()],OrAttributeHistory.prototype,"_loading",void 0),__decorate([property()],OrAttributeHistory.prototype,"_data",void 0),__decorate([property()],OrAttributeHistory.prototype,"_tableTemplate",void 0),__decorate([query("#chart")],OrAttributeHistory.prototype,"_chartElem",void 0),__decorate([query("#table")],OrAttributeHistory.prototype,"_tableElem",void 0),OrAttributeHistory=OrAttributeHistory_1=__decorate([customElement("or-attribute-history")],OrAttributeHistory);export{OrAttributeHistory};
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openremote/or-attribute-history",
|
|
3
|
+
"version": "1.2.0-snapshot.20240512154942",
|
|
4
|
+
"description": "OpenRemote attribute history",
|
|
5
|
+
"main": "dist/umd/index.bundle.js",
|
|
6
|
+
"module": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js",
|
|
9
|
+
"./*": "./lib/*.js"
|
|
10
|
+
},
|
|
11
|
+
"types": "lib/index.d.ts",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "echo \"No tests\" && exit 0",
|
|
14
|
+
"prepublishOnly": "npx webpack"
|
|
15
|
+
},
|
|
16
|
+
"author": "OpenRemote",
|
|
17
|
+
"license": "AGPL-3.0-or-later",
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@material/data-table": "^9.0.0",
|
|
20
|
+
"@openremote/core": "1.2.0-snapshot.20240512154942",
|
|
21
|
+
"@openremote/or-chart": "1.2.0-snapshot.20240512154942",
|
|
22
|
+
"@openremote/or-components": "1.2.0-snapshot.20240512154942",
|
|
23
|
+
"@openremote/or-mwc-components": "1.2.0-snapshot.20240512154942",
|
|
24
|
+
"@openremote/or-translate": "1.2.0-snapshot.20240512154942",
|
|
25
|
+
"jsonpath-plus": "^6.0.1",
|
|
26
|
+
"lit": "^2.0.2"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@openremote/util": "1.2.0-snapshot.20240512154942",
|
|
30
|
+
"@types/chart.js": "^2.9.34"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
}
|
|
35
|
+
}
|