Update public/trends.html

This commit is contained in:
JoshBaneyCS 2025-04-30 05:04:37 +00:00
parent 054b1651d2
commit ee378087e1

View File

@ -6,12 +6,12 @@
<title>Trends Fuego Heat Tracker</title> <title>Trends Fuego Heat Tracker</title>
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="styles.css">
<!-- 1) Load Chart.js from CDN --> <!-- Chart.js from CDN -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head> </head>
<body> <body>
<header class="main-header"> <header class="main-header">
<img src="/image/logo.png" alt="Logo" class="logo"> <img src="/image/logo.png" alt="Amazon Logo" class="logo">
<span class="header-title">| Fuego Heat Tracker</span> <span class="header-title">| Fuego Heat Tracker</span>
<button class="nav-btn" onclick="location.href='/input.html'">Log Reading</button> <button class="nav-btn" onclick="location.href='/input.html'">Log Reading</button>
<button class="nav-btn" onclick="location.href='/heatmap.html'">Heat Map</button> <button class="nav-btn" onclick="location.href='/heatmap.html'">Heat Map</button>
@ -21,22 +21,26 @@
<div class="page-container"> <div class="page-container">
<h1>Trends</h1> <h1>Trends</h1>
<div style="display:flex;align-items:center;margin-bottom:1rem;"> <!-- Timeframe slider + label -->
<div style="display:flex; align-items:center; margin-bottom:1rem;">
<input id="timeframe-slider" type="range" min="0" max="4" value="0" style="flex:1;"> <input id="timeframe-slider" type="range" min="0" max="4" value="0" style="flex:1;">
<span id="timeframe-label" style="margin-left:1rem;white-space:nowrap;"></span> <span id="timeframe-label" style="margin-left:1rem; white-space:nowrap;"></span>
</div> </div>
<!-- Metric toggles -->
<div style="margin-bottom:1rem;"> <div style="margin-bottom:1rem;">
<label><input type="checkbox" name="metric" value="temperature" checked> Temperature</label> <label><input type="checkbox" name="metric" value="temperature" checked> Temperature</label>
<label><input type="checkbox" name="metric" value="humidity" checked> Humidity</label> <label><input type="checkbox" name="metric" value="humidity" checked> Humidity</label>
<label><input type="checkbox" name="metric" value="heatIndex" checked> Heat Index</label> <label><input type="checkbox" name="metric" value="heatIndex" checked> Heat Index</label>
</div> </div>
<div id="chart-container" style="height:50vh;width:100%;margin-bottom:2rem;"> <!-- Chart container -->
<div id="chart-container" style="height:50vh; width:100%; margin-bottom:2rem;">
<canvas id="trend-chart"></canvas> <canvas id="trend-chart"></canvas>
</div> </div>
<table id="trends-table" style="width:100%;border-collapse:collapse;"> <!-- Data table -->
<table id="trends-table" style="width:100%; border-collapse:collapse;">
<thead> <thead>
<tr> <tr>
<th class="sortable">Date / Time</th> <th class="sortable">Date / Time</th>
@ -51,7 +55,10 @@
</table> </table>
</div> </div>
<!-- 2) Our logic with debug logs --> <!-- Server will inject this script tag before sending -->
<!--INITIAL_DATA-->
<!-- Trends client logic -->
<script src="/scripts/trends.js"></script> <script src="/scripts/trends.js"></script>
</body> </body>
</html> </html>