fix interpolate bug, fix graph bugs, remove modebar buttons
This commit is contained in:
parent
531c296a15
commit
a81220f2f0
|
@ -57,7 +57,8 @@
|
||||||
"@formatjs/cli": "^6.0.3",
|
"@formatjs/cli": "^6.0.3",
|
||||||
"@types/react-plotly.js": "^2.6.0",
|
"@types/react-plotly.js": "^2.6.0",
|
||||||
"@types/react-window": "^1.8.5",
|
"@types/react-window": "^1.8.5",
|
||||||
"eslint-plugin-formatjs": "^4.10.1"
|
"eslint-plugin-formatjs": "^4.10.1",
|
||||||
|
"prettier": "^2.8.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@adobe/css-tools": {
|
"node_modules/@adobe/css-tools": {
|
||||||
|
@ -19743,6 +19744,21 @@
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/prettier": {
|
||||||
|
"version": "2.8.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
|
||||||
|
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
||||||
|
"dev": true,
|
||||||
|
"bin": {
|
||||||
|
"prettier": "bin-prettier.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.13.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/pretty-bytes": {
|
"node_modules/pretty-bytes": {
|
||||||
"version": "5.6.0",
|
"version": "5.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
|
||||||
|
@ -39706,6 +39722,12 @@
|
||||||
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
|
||||||
"integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="
|
"integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="
|
||||||
},
|
},
|
||||||
|
"prettier": {
|
||||||
|
"version": "2.8.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
|
||||||
|
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
"pretty-bytes": {
|
"pretty-bytes": {
|
||||||
"version": "5.6.0",
|
"version": "5.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
|
||||||
|
|
|
@ -85,6 +85,7 @@
|
||||||
"@formatjs/cli": "^6.0.3",
|
"@formatjs/cli": "^6.0.3",
|
||||||
"@types/react-plotly.js": "^2.6.0",
|
"@types/react-plotly.js": "^2.6.0",
|
||||||
"@types/react-window": "^1.8.5",
|
"@types/react-window": "^1.8.5",
|
||||||
"eslint-plugin-formatjs": "^4.10.1"
|
"eslint-plugin-formatjs": "^4.10.1",
|
||||||
|
"prettier": "^2.8.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ import { S3Access } from "../../../dataCache/S3/S3Access";
|
||||||
import DataCache, { FetchResult } from "../../../dataCache/dataCache";
|
import DataCache, { FetchResult } from "../../../dataCache/dataCache";
|
||||||
import { LogContext } from "../../Context/LogContextProvider";
|
import { LogContext } from "../../Context/LogContextProvider";
|
||||||
import { isDefined } from "../../../dataCache/utils/maybe";
|
import { isDefined } from "../../../dataCache/utils/maybe";
|
||||||
import { Data, Layout, PlotRelayoutEvent } from "plotly.js";
|
import { Data, Icons, Layout, PlotRelayoutEvent, relayout } from "plotly.js";
|
||||||
import { AdapterDayjs } from "@mui/x-date-pickers/AdapterDayjs";
|
import { AdapterDayjs } from "@mui/x-date-pickers/AdapterDayjs";
|
||||||
import { FormattedMessage } from "react-intl";
|
import { FormattedMessage } from "react-intl";
|
||||||
import DateRangePicker from "./DateRangePicker";
|
import DateRangePicker from "./DateRangePicker";
|
||||||
|
@ -45,6 +45,7 @@ export const fetchData = (
|
||||||
return Promise.resolve(FetchResult.notAvailable);
|
return Promise.resolve(FetchResult.notAvailable);
|
||||||
} else if (r.status === 200) {
|
} else if (r.status === 200) {
|
||||||
const text = await r.text();
|
const text = await r.text();
|
||||||
|
console.log("parsecsv", text, parseCsv(text));
|
||||||
return parseCsv(text);
|
return parseCsv(text);
|
||||||
} else {
|
} else {
|
||||||
console.error("unexpected status code");
|
console.error("unexpected status code");
|
||||||
|
@ -153,6 +154,7 @@ const ScalarGraph = () => {
|
||||||
|
|
||||||
const handleRelayout = useCallback(
|
const handleRelayout = useCallback(
|
||||||
(params: PlotRelayoutEvent) => {
|
(params: PlotRelayoutEvent) => {
|
||||||
|
console.log("relayout");
|
||||||
const xaxisRange0 = params["xaxis.range[0]"];
|
const xaxisRange0 = params["xaxis.range[0]"];
|
||||||
const xaxisRange1 = params["xaxis.range[1]"];
|
const xaxisRange1 = params["xaxis.range[1]"];
|
||||||
if (xaxisRange0 && xaxisRange1) {
|
if (xaxisRange0 && xaxisRange1) {
|
||||||
|
@ -169,11 +171,8 @@ const ScalarGraph = () => {
|
||||||
if (checkedToggles.length > 0) {
|
if (checkedToggles.length > 0) {
|
||||||
const coordinateTimeSeries = transformToGraphData(timeSeries);
|
const coordinateTimeSeries = transformToGraphData(timeSeries);
|
||||||
const visibleGraphs = Object.keys(coordinateTimeSeries).filter((path) => {
|
const visibleGraphs = Object.keys(coordinateTimeSeries).filter((path) => {
|
||||||
console.log('checkedToggles',coordinateTimeSeries, checkedToggles)
|
return checkedToggles.find((toggle) => toggle === path);
|
||||||
return checkedToggles.find((toggle) => toggle === path)
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
console.log('visibleGraphs', visibleGraphs)
|
|
||||||
if (visibleGraphs.length > 0) {
|
if (visibleGraphs.length > 0) {
|
||||||
return (
|
return (
|
||||||
<div style={{ marginTop: "20px" }}>
|
<div style={{ marginTop: "20px" }}>
|
||||||
|
@ -186,6 +185,8 @@ const ScalarGraph = () => {
|
||||||
</LocalizationProvider>
|
</LocalizationProvider>
|
||||||
{visibleGraphs.map((path) => {
|
{visibleGraphs.map((path) => {
|
||||||
const isScalar = isNumeric(coordinateTimeSeries[path].y[0]);
|
const isScalar = isNumeric(coordinateTimeSeries[path].y[0]);
|
||||||
|
console.log("graphdata", timeSeries, coordinateTimeSeries);
|
||||||
|
|
||||||
const data = isScalar
|
const data = isScalar
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
|
@ -203,7 +204,6 @@ const ScalarGraph = () => {
|
||||||
barnorm: "percent",
|
barnorm: "percent",
|
||||||
}
|
}
|
||||||
: {};
|
: {};
|
||||||
console.log("graphdata", coordinateTimeSeries);
|
|
||||||
return (
|
return (
|
||||||
<Plot
|
<Plot
|
||||||
key={path}
|
key={path}
|
||||||
|
@ -228,6 +228,8 @@ const ScalarGraph = () => {
|
||||||
"select2d",
|
"select2d",
|
||||||
"pan2d",
|
"pan2d",
|
||||||
"autoScale2d",
|
"autoScale2d",
|
||||||
|
"resetScale2d",
|
||||||
|
"zoom2d",
|
||||||
],
|
],
|
||||||
}}
|
}}
|
||||||
onRelayout={handleRelayout}
|
onRelayout={handleRelayout}
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
import {Box} from "@mui/material";
|
import { Box } from "@mui/material";
|
||||||
import {getBoxColor} from "../../../util/graph.util";
|
import { getBoxColor } from "../../../util/graph.util";
|
||||||
|
|
||||||
|
export interface BoxDataValue {
|
||||||
|
unit: string;
|
||||||
|
value: string | number;
|
||||||
|
}
|
||||||
|
|
||||||
export type BoxData = {
|
export type BoxData = {
|
||||||
label: string;
|
label: string;
|
||||||
values: (string | number)[];
|
values: BoxDataValue[];
|
||||||
unit: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type TopologyBoxProps = {
|
export type TopologyBoxProps = {
|
||||||
|
@ -18,7 +22,7 @@ const isInt = (value: number) => {
|
||||||
|
|
||||||
export const BOX_SIZE = 85;
|
export const BOX_SIZE = 85;
|
||||||
const TopologyBox = (props: TopologyBoxProps) => {
|
const TopologyBox = (props: TopologyBoxProps) => {
|
||||||
const {titleColor, boxColor} = getBoxColor(props.title);
|
const { titleColor, boxColor } = getBoxColor(props.title);
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
|
@ -54,19 +58,22 @@ const TopologyBox = (props: TopologyBoxProps) => {
|
||||||
>
|
>
|
||||||
{props.data && (
|
{props.data && (
|
||||||
<>
|
<>
|
||||||
{props.data.values.map((value, index) => {
|
{props.data.values.map((boxData, index) => {
|
||||||
|
console.log("boxData", boxData);
|
||||||
return (
|
return (
|
||||||
<p
|
<p
|
||||||
key={props.title + '-' + index}
|
key={props.title + "-" + index}
|
||||||
style={{marginBlockStart: "0", marginBlockEnd: "2px"}}
|
style={{ marginBlockStart: "0", marginBlockEnd: "2px" }}
|
||||||
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
|
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
|
||||||
>{`${
|
>{`${
|
||||||
props.data && props.data.values.length === 3
|
props.data && props.data.values.length === 3
|
||||||
? "L" + (index + 1) + " "
|
? "L" + (index + 1) + " "
|
||||||
: ""
|
: ""
|
||||||
}${
|
}${
|
||||||
!isInt(Number(value)) ? Number(value).toPrecision(4) : value
|
!isInt(Number(boxData.value))
|
||||||
}${props.data?.unit}`}</p>
|
? Number(boxData.value).toPrecision(4)
|
||||||
|
: boxData.value
|
||||||
|
}${boxData.unit}`}</p>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -43,9 +43,9 @@ const TopologyFlow = (props: TopologyFlowProps) => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{values
|
{values
|
||||||
?.filter((value) => (value as number) !== 0)
|
?.filter((boxData) => (boxData.value as number) !== 0)
|
||||||
.map(
|
.map(
|
||||||
(value) => `${Math.round(value as number)} ${props.data?.unit}`
|
(boxData) => `${Math.round(boxData.value as number)} ${boxData.unit}`
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { SkipList } from "./skipList/skipList";
|
||||||
import { createDispatchQueue } from "./promiseQueue";
|
import { createDispatchQueue } from "./promiseQueue";
|
||||||
import { SkipListNode } from "./skipList/skipListNode";
|
import { SkipListNode } from "./skipList/skipListNode";
|
||||||
import { RecordSeries } from "./data";
|
import { RecordSeries } from "./data";
|
||||||
import { Maybe, isUndefined } from "./utils/maybe";
|
import { isUndefined, Maybe } from "./utils/maybe";
|
||||||
import { isNumber } from "./utils/runtimeTypeChecking";
|
import { isNumber } from "./utils/runtimeTypeChecking";
|
||||||
import { CsvEntry } from "../util/graph.util";
|
import { CsvEntry } from "../util/graph.util";
|
||||||
|
|
||||||
|
@ -104,20 +104,24 @@ export default class DataCache<T extends Record<string, CsvEntry>> {
|
||||||
const n = after.index - t;
|
const n = after.index - t;
|
||||||
const pn = p + n;
|
const pn = p + n;
|
||||||
|
|
||||||
let interpolated: Partial<Record<string, CsvEntry>> = {};
|
let interpolated: Record<string, CsvEntry> = {};
|
||||||
|
|
||||||
//What about string nodes? like Alarms
|
//What about string nodes? like Alarms
|
||||||
for (const k of Object.keys(dataBefore)) {
|
for (const k of Object.keys(dataBefore)) {
|
||||||
const beforeData = dataBefore[k].value;
|
const valueBefore = dataBefore[k].value;
|
||||||
const afterData = Number(dataAfter[k].value);
|
const valueAfter = dataAfter[k]?.value as Maybe<number | string>;
|
||||||
let foo = interpolated[k];
|
|
||||||
if (foo) {
|
let value: number | string;
|
||||||
foo.value = isNumber(beforeData)
|
|
||||||
? (beforeData * n + afterData * p) / pn
|
if (isUndefined(valueAfter)) {
|
||||||
: n < p
|
value = valueBefore;
|
||||||
? afterData
|
} else if (isNumber(valueBefore) && isNumber(valueAfter)) {
|
||||||
: beforeData;
|
value = (valueBefore * n + valueAfter * p) / pn;
|
||||||
|
} else {
|
||||||
|
value = n < p ? valueAfter : valueBefore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interpolated[k] = { value, unit: dataBefore[k].unit };
|
||||||
}
|
}
|
||||||
|
|
||||||
return interpolated as T;
|
return interpolated as T;
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
import { Datum, TypedArray } from "plotly.js";
|
import { Datum, TypedArray } from "plotly.js";
|
||||||
import {
|
import { TreeElement } from "../components/Installations/Log/CheckboxTree";
|
||||||
TreeElement,
|
|
||||||
} from "../components/Installations/Log/CheckboxTree";
|
|
||||||
import { TimeRange, UnixTime } from "../dataCache/time";
|
import { TimeRange, UnixTime } from "../dataCache/time";
|
||||||
import { DataPoint, DataRecord } from "../dataCache/data";
|
import { DataPoint, DataRecord } from "../dataCache/data";
|
||||||
import { isDefined } from "../dataCache/utils/maybe";
|
import { isDefined } from "../dataCache/utils/maybe";
|
||||||
import { BoxData } from "../components/Installations/Log/TopologyBox";
|
import {
|
||||||
|
BoxData,
|
||||||
|
BoxDataValue,
|
||||||
|
} from "../components/Installations/Log/TopologyBox";
|
||||||
|
|
||||||
export interface GraphCoordinates {
|
export interface GraphCoordinates {
|
||||||
x: Datum[] | Datum[][] | TypedArray;
|
x: Datum[] | Datum[][] | TypedArray;
|
||||||
|
@ -30,6 +31,7 @@ export const createTimes = (
|
||||||
);
|
);
|
||||||
return roundedRange.sample(oneSpan);
|
return roundedRange.sample(oneSpan);
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface GraphData {
|
export interface GraphData {
|
||||||
[path: string]: GraphCoordinates;
|
[path: string]: GraphCoordinates;
|
||||||
}
|
}
|
||||||
|
@ -95,6 +97,7 @@ interface BoxColor {
|
||||||
titleColor: string;
|
titleColor: string;
|
||||||
boxColor: string;
|
boxColor: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getBoxColor = (boxTitle?: string): BoxColor => {
|
export const getBoxColor = (boxTitle?: string): BoxColor => {
|
||||||
switch (boxTitle) {
|
switch (boxTitle) {
|
||||||
case "Grid":
|
case "Grid":
|
||||||
|
@ -138,18 +141,33 @@ export const extractTopologyValues = (
|
||||||
const timeSeriesValue = timeSeriesData.value;
|
const timeSeriesValue = timeSeriesData.value;
|
||||||
if (isDefined(timeSeriesValue)) {
|
if (isDefined(timeSeriesValue)) {
|
||||||
return Object.keys(topologyPaths).reduce((acc, topologyKey) => {
|
return Object.keys(topologyPaths).reduce((acc, topologyKey) => {
|
||||||
let topologyValues: (string | number)[];
|
let topologyValues: BoxDataValue[];
|
||||||
const values = topologyPaths[topologyKey as keyof TopologyValues].map(
|
const values = topologyPaths[topologyKey as keyof TopologyValues].map(
|
||||||
(topologyPath) => timeSeriesValue[topologyPath]
|
(topologyPath) => timeSeriesValue[topologyPath]
|
||||||
);
|
);
|
||||||
switch (topologyKey as keyof TopologyValues) {
|
switch (topologyKey as keyof TopologyValues) {
|
||||||
case "gridToAcInConnection":
|
case "gridToAcInConnection":
|
||||||
topologyValues = [
|
topologyValues = [
|
||||||
values.reduce((acc, curr) => Number(acc) + Number(curr.value), 0),
|
values.reduce(
|
||||||
|
(acc, curr) => {
|
||||||
|
return {
|
||||||
|
value: Number(acc.value) + Number(curr.value),
|
||||||
|
unit: acc.unit,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{ value: 0, unit: values[0].unit }
|
||||||
|
),
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
topologyValues = values.map((element) => element.value);
|
topologyValues = values
|
||||||
|
.filter((element) => element)
|
||||||
|
.map((element) => {
|
||||||
|
if (element) {
|
||||||
|
return { value: element.value, unit: element.unit };
|
||||||
|
}
|
||||||
|
return { value: 0, unit: "" };
|
||||||
|
});
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
...acc,
|
...acc,
|
||||||
|
@ -158,7 +176,6 @@ export const extractTopologyValues = (
|
||||||
label: topologyPaths[topologyKey as keyof TopologyValues][0]
|
label: topologyPaths[topologyKey as keyof TopologyValues][0]
|
||||||
.split("/")
|
.split("/")
|
||||||
.pop(),
|
.pop(),
|
||||||
unit: values[0].unit,
|
|
||||||
} as BoxData,
|
} as BoxData,
|
||||||
};
|
};
|
||||||
}, {} as TopologyValues);
|
}, {} as TopologyValues);
|
||||||
|
@ -171,16 +188,22 @@ export const getHighestConnectionValue = (values: TopologyValues) =>
|
||||||
.filter((value) => value.includes("Connection"))
|
.filter((value) => value.includes("Connection"))
|
||||||
.reduce((acc, curr) => {
|
.reduce((acc, curr) => {
|
||||||
const value = Math.abs(
|
const value = Math.abs(
|
||||||
values[curr as keyof TopologyValues].values[0] as number
|
values[curr as keyof TopologyValues].values[0].value as number
|
||||||
);
|
);
|
||||||
return value > acc ? value : acc;
|
return value > acc ? value : acc;
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|
||||||
export const getAmount = (
|
export const getAmount = (
|
||||||
highestConnectionValue: number,
|
highestConnectionValue: number,
|
||||||
values: (string | number)[]
|
values: BoxDataValue[]
|
||||||
) => {
|
) => {
|
||||||
return Math.abs(values[0] as number) / highestConnectionValue;
|
console.log(
|
||||||
|
"getamount",
|
||||||
|
Math.abs(values[0].value as number) / highestConnectionValue,
|
||||||
|
Math.abs(values[0].value as number),
|
||||||
|
highestConnectionValue
|
||||||
|
);
|
||||||
|
return Math.abs(values[0].value as number) / highestConnectionValue;
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface CsvEntry {
|
export interface CsvEntry {
|
||||||
|
@ -189,23 +212,26 @@ export interface CsvEntry {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const parseCsv = (text: string): DataRecord => {
|
export const parseCsv = (text: string): DataRecord => {
|
||||||
|
console.log("parseText", text);
|
||||||
const y = text
|
const y = text
|
||||||
.split(/\r?\n/)
|
.split(/\r?\n/)
|
||||||
.filter((split) => split.length > 0)
|
.filter((split) => split.length > 0)
|
||||||
.map((l) => {
|
.map((l) => {
|
||||||
return l.split(";");
|
return l.split(";");
|
||||||
});
|
});
|
||||||
const x = y
|
return y
|
||||||
.map((fields) => {
|
.map((fields) => {
|
||||||
if (fields[0] === "/AcDc/Warnings")
|
if (fields[0].includes("LoadOnAcIsland")) {
|
||||||
console.log("warnings", fields[1], isNaN(+fields[1]));
|
console.log("fields", fields, {
|
||||||
|
[fields[0]]: { value: parseFloat(fields[1]), unit: fields[2] },
|
||||||
|
});
|
||||||
|
}
|
||||||
if (isNaN(Number(fields[1])) || fields[1] === "") {
|
if (isNaN(Number(fields[1])) || fields[1] === "") {
|
||||||
return { [fields[0]]: { value: fields[1], unit: fields[2] } };
|
return { [fields[0]]: { value: fields[1], unit: fields[2] } };
|
||||||
}
|
}
|
||||||
return { [fields[0]]: { value: parseFloat(fields[1]), unit: fields[2] } };
|
return { [fields[0]]: { value: parseFloat(fields[1]), unit: fields[2] } };
|
||||||
})
|
})
|
||||||
.reduce((acc, current) => ({ ...acc, ...current }), {} as DataRecord);
|
.reduce((acc, current) => ({ ...acc, ...current }), {} as DataRecord);
|
||||||
return x;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const insertTreeElements = (
|
export const insertTreeElements = (
|
||||||
|
|
Loading…
Reference in New Issue