Implement pagination in table
This commit is contained in:
parent
f1b3c39c02
commit
2516b2b086
@ -30,14 +30,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="table-wrapper">
|
<div id="table-wrapper">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<thead>
|
||||||
<th>Temperature</th>
|
<tr>
|
||||||
<th>Date</th>
|
<th>Temperature</th>
|
||||||
<th>Time</th>
|
<th>Date</th>
|
||||||
<th>Limits</th>
|
<th>Time</th>
|
||||||
</tr>
|
<th>Limits</th>
|
||||||
<tbody id="TemperatureTable"></tbody>
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody id="table-body"></tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<div id="view-more">
|
||||||
|
▼ View more
|
||||||
|
(Showing <span id="shown-log-amount"></span>/<span id="total-log-amount"></span>)
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="error" class="error"></div>
|
<div id="error" class="error"></div>
|
||||||
|
@ -37,15 +37,14 @@ async function buildChart(data) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildTable(data) {
|
const TABLE_PAGINATION_SIZE = 30;
|
||||||
var table = document.getElementById(`TemperatureTable`);
|
|
||||||
|
|
||||||
|
function buildTable(data, offset = 0) {
|
||||||
data.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
|
data.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
|
||||||
|
|
||||||
// TODO allow showing more than 50 by e.g. clicking
|
const page = data.slice(offset, offset + TABLE_PAGINATION_SIZE);
|
||||||
data = data.slice(0, 50);
|
|
||||||
|
|
||||||
data.forEach((log) => {
|
page.forEach(log => {
|
||||||
var averageTemp = (log.tempHigh + log.tempLow) / 2.0;
|
var averageTemp = (log.tempHigh + log.tempLow) / 2.0;
|
||||||
var color;
|
var color;
|
||||||
if (log.temperature >= log.tempHigh) {
|
if (log.temperature >= log.tempHigh) {
|
||||||
@ -66,7 +65,7 @@ function buildTable(data) {
|
|||||||
const date = new Date(log.date).toLocaleDateString();
|
const date = new Date(log.date).toLocaleDateString();
|
||||||
const time = new Date(log.date).toLocaleTimeString();
|
const time = new Date(log.date).toLocaleTimeString();
|
||||||
|
|
||||||
table.innerHTML += `
|
document.getElementById("table-body").innerHTML += `
|
||||||
<tr>
|
<tr>
|
||||||
<td class="temperature ${color}">${log.temperature}°C</td>
|
<td class="temperature ${color}">${log.temperature}°C</td>
|
||||||
<td>${date}</td>
|
<td>${date}</td>
|
||||||
@ -75,6 +74,21 @@ function buildTable(data) {
|
|||||||
</tr>
|
</tr>
|
||||||
`;
|
`;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.getElementById("shown-log-amount").innerText = Math.min(data.length, offset + TABLE_PAGINATION_SIZE);
|
||||||
|
document.getElementById("total-log-amount").innerText = data.length;
|
||||||
|
|
||||||
|
if (offset + TABLE_PAGINATION_SIZE >= data.length) {
|
||||||
|
document.getElementById("view-more").style.display = "none";
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("view-more").style.display = "block";
|
||||||
|
|
||||||
|
document.getElementById("view-more").onclick = () => {
|
||||||
|
buildTable(data, offset + TABLE_PAGINATION_SIZE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleError(err) {
|
function handleError(err) {
|
||||||
@ -83,7 +97,7 @@ function handleError(err) {
|
|||||||
document.getElementById("container").style.display = "none";
|
document.getElementById("container").style.display = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
async function init() {
|
async function fetchData(startDate = null, endDate = null) {
|
||||||
const devices = await getDevices()
|
const devices = await getDevices()
|
||||||
.catch(handleError);
|
.catch(handleError);
|
||||||
|
|
||||||
@ -140,7 +154,7 @@ async function init() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
init();
|
fetchData();
|
||||||
|
|
||||||
document.querySelector(".logout-container").addEventListener("click", logout);
|
document.querySelector(".logout-container").addEventListener("click", logout);
|
||||||
|
|
||||||
|
@ -8,30 +8,6 @@ body {
|
|||||||
margin: 0 2rem;
|
margin: 0 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.topnav {
|
|
||||||
overflow: hidden;
|
|
||||||
background-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topnav a {
|
|
||||||
float: left;
|
|
||||||
color: #f2f2f2;
|
|
||||||
text-align: center;
|
|
||||||
padding: 14px 16px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topnav a:hover {
|
|
||||||
background-color: #ddd;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topnav a.active {
|
|
||||||
background-color: #04aa6d;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#table-wrapper {
|
#table-wrapper {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@ -110,11 +86,21 @@ table tr:not(:last-child) .temperature {
|
|||||||
margin: 2rem;
|
margin: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chartContainer{
|
#view-more {
|
||||||
margin: 20px;
|
display: none;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.5rem;
|
||||||
|
color: #616161;
|
||||||
|
background-color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
transition-duration: 100ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableConatiner{
|
#view-more:hover {
|
||||||
display: flex;
|
color: #212121;
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#view-more:active {
|
||||||
|
background-color: #FCFCFC;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user