Add device dropdown

This commit is contained in:
Reimar 2025-04-02 09:33:53 +02:00
parent 2516b2b086
commit 3d014eab96
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
3 changed files with 74 additions and 11 deletions

View File

@ -28,6 +28,20 @@
<div class="chart-container"> <div class="chart-container">
<canvas id="myChart" style="width: 49%; height: 49%;"></canvas> <canvas id="myChart" style="width: 49%; height: 49%;"></canvas>
</div> </div>
<div id="filters">
<div>
<div class="form-control">
<label for="device-selector">Select device</label>
<select id="device-selector">
</select>
</div>
</div>
<div></div>
</div>
<div id="table-wrapper"> <div id="table-wrapper">
<table> <table>
<thead> <thead>

View File

@ -97,6 +97,17 @@ function handleError(err) {
document.getElementById("container").style.display = "none"; document.getElementById("container").style.display = "none";
} }
function addDeviceToDropdown(device) {
const opt = document.createElement("option");
opt.innerText = `${device.name} (${device.referenceId})`;
opt.value = device.id;
document.getElementById("device-selector").appendChild(opt);
}
function randomColorChannelValue() {
return Math.floor(Math.random() * 256);
}
async function fetchData(startDate = null, endDate = null) { async function fetchData(startDate = null, endDate = null) {
const devices = await getDevices() const devices = await getDevices()
.catch(handleError); .catch(handleError);
@ -104,6 +115,8 @@ async function fetchData(startDate = null, endDate = null) {
const deviceData = []; const deviceData = [];
for (const device of devices) { for (const device of devices) {
addDeviceToDropdown(device);
const data = await getLogsOnDeviceId(device.id) const data = await getLogsOnDeviceId(device.id)
.catch(handleError); .catch(handleError);
@ -119,17 +132,24 @@ async function fetchData(startDate = null, endDate = null) {
new Chart("myChart", { new Chart("myChart", {
type: "line", type: "line",
data: { data: {
datasets: deviceData.map(dataset => ({ datasets: deviceData.map((dataset, i) => {
label: "Temperature", const color = new Array(3)
fill: false, .fill(null)
lineTension: 0.4, .map(randomColorChannelValue)
backgroundColor: "rgba(0,0,255,1.0)", .join(",");
borderColor: "rgba(0,0,255,0.1)",
data: dataset.map(log => ({ return {
x: new Date(log.date).getTime(), label: devices[i].name,
y: log.temperature, fill: false,
})), lineTension: 0.4,
})), backgroundColor: `rgba(${color}, 1.0)`,
borderColor: `rgba(${color}, 0.1)`,
data: dataset.map(log => ({
x: new Date(log.date).getTime(),
y: log.temperature,
})),
};
}),
}, },
options: { options: {
parsing: false, parsing: false,

View File

@ -15,6 +15,12 @@ body {
border: 1px solid #DDD; border: 1px solid #DDD;
} }
#filters {
margin: 2rem auto;
display: flex;
justify-content: space-between;
}
table { table {
font-family: arial, sans-serif; font-family: arial, sans-serif;
border-collapse: collapse; border-collapse: collapse;
@ -104,3 +110,26 @@ table tr:not(:last-child) .temperature {
background-color: #FCFCFC; background-color: #FCFCFC;
} }
.form-control {
display: flex;
flex-direction: column;
}
label {
font-size: 0.85rem;
padding-left: 0.2rem;
color: #616161;
}
select {
background-color: white;
color: #424242;
border: 1px solid #DDD;
border-radius: 8px;
padding: 0.5rem 1rem;
}
select:focus {
border-color: #1E88E5;
}