Fix device dropdown and chart units

This commit is contained in:
Reimar 2025-04-03 09:25:33 +02:00
parent eb66edb902
commit ea485813fe
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
2 changed files with 19 additions and 2 deletions

View File

@ -75,6 +75,12 @@ function randomColorChannelValue() {
return Math.floor(Math.random() * 256);
}
function isSameDay(a, b) {
return a.getFullYear() === b.getFullYear() &&
a.getMonth() === b.getMonth() &&
a.getDate() === b.getDate();
}
async function fetchData() {
document.body.classList.add("loading");
@ -84,8 +90,6 @@ async function fetchData() {
const deviceData = [];
for (const device of devices) {
addDeviceToDropdown(device);
const data = await getLogsOnDeviceId(device.id, startDate, endDate)
.catch(handleError);
@ -123,12 +127,21 @@ async function fetchData() {
scales: {
x: {
type: "time",
time: {
displayFormats: {
hour: "HH:mm",
},
},
},
},
},
});
}
chart.options.scales.x.time.unit = isSameDay(new Date(startDate), new Date(endDate))
? "hour"
: "day";
chart.data.datasets = deviceData.map((dataset, i) => {
const color = new Array(3)
.fill(null)
@ -186,6 +199,9 @@ document.getElementById("all-time").onclick = () => setPeriod(null, null);
document.querySelector(".logout-container").addEventListener("click", logout);
const devices = await getDevices().catch(handleError);
for (const device of devices) {
addDeviceToDropdown(device);
}
setPeriodLastDays(3);
fetchData();

View File

@ -124,6 +124,7 @@ table tr:not(:last-child) .temperature {
padding: 0.5rem;
color: #616161;
background-color: white;
font-size: 0.85rem;
cursor: pointer;
transition-duration: 100ms;
}