mirror of
https://github.com/IoTManagerProject/IoTManagerWeb.git
synced 2026-03-29 00:12:35 +03:00
графики с выбором даты
This commit is contained in:
@@ -1,20 +1,13 @@
|
||||
<script>
|
||||
import Chart from "svelte-frappe-charts";
|
||||
import { onMount } from "svelte";
|
||||
|
||||
onMount(async () => {
|
||||
console.log("[i]", "chart component mounted");
|
||||
});
|
||||
|
||||
export let widget;
|
||||
|
||||
let axisOptions = { xAxisMode: "tick", xIsSeries: true };
|
||||
let lineOptions;
|
||||
|
||||
if (widget.pointRadius == "0") {
|
||||
lineOptions = { regionFill: 1, hideDots: 1, spline: 1 };
|
||||
} else {
|
||||
lineOptions = { regionFill: 1, dotSize: 3, spline: 1 };
|
||||
}
|
||||
|
||||
let collectingDataArray = [];
|
||||
let prevSatus = [];
|
||||
|
||||
//необходимые по умолчанию значения из за тупости библиотеки
|
||||
let labels = [0, 0];
|
||||
let values = [0, 0];
|
||||
@@ -29,6 +22,18 @@
|
||||
],
|
||||
};
|
||||
|
||||
let axisOptions = { xAxisMode: "tick", xIsSeries: true };
|
||||
let lineOptions;
|
||||
|
||||
let collectingDataArray = [];
|
||||
let prevSatus = [];
|
||||
|
||||
if (widget.pointRadius == "0") {
|
||||
lineOptions = { regionFill: 1, hideDots: 1, spline: 1 };
|
||||
} else {
|
||||
lineOptions = { regionFill: 1, dotSize: 3, spline: 1 };
|
||||
}
|
||||
|
||||
$: widget.status, collectDataToArr();
|
||||
|
||||
function collectDataToArr() {
|
||||
@@ -38,7 +43,7 @@
|
||||
console.log("[i]", "collecting chart data to array, topic:", widget.topic);
|
||||
let incomingDataArr = widget.status;
|
||||
|
||||
console.log("[i]", "array:", incomingDataArr);
|
||||
//console.log("[i]", "array:", incomingDataArr);
|
||||
|
||||
collectingDataArray = [...collectingDataArray, ...incomingDataArr];
|
||||
|
||||
@@ -47,6 +52,12 @@
|
||||
values[i] = [collectingDataArray[i].y1];
|
||||
}
|
||||
|
||||
if (widget.maxCount == 0 || widget.maxCount == "0") {
|
||||
clearCart();
|
||||
console.log("[i]", "clear cart data");
|
||||
return;
|
||||
}
|
||||
|
||||
datachart = {
|
||||
labels: labels,
|
||||
datasets: [
|
||||
@@ -68,10 +79,22 @@
|
||||
var date = new Date(timestamp * 1000);
|
||||
return ("0" + date.getHours()).slice(-2) + ":" + ("0" + date.getMinutes()).slice(-2);
|
||||
}
|
||||
|
||||
function clearCart() {
|
||||
datachart = {
|
||||
labels: [0],
|
||||
datasets: [
|
||||
{
|
||||
name: widget.descr,
|
||||
values: [0],
|
||||
},
|
||||
],
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="text-center">
|
||||
<!-- svelte-ignore a11y-label-has-associated-control -->
|
||||
<label class="inline-block italic align-top text-center text-gray-500 txt-sz">{!widget.descr ? "" : widget.descr}</label>
|
||||
</div>
|
||||
<Chart class="h-24" data={datachart} type="line" lineOptions={lineOptions} axisOptions={axisOptions} />
|
||||
<Chart data={datachart} type="line" lineOptions={lineOptions} axisOptions={axisOptions} />
|
||||
|
||||
Reference in New Issue
Block a user