Lift the chart window out of the Sleep panel
It governs nearly every panel on the page — the training grid, the timing charts, both sleep patterns, the counts panel, all three walk views — but it sat inside Sleep, so it read as a sleep setting. That was already the reason its old home carried a comment explaining it was not one; a control needing a comment to deny what its position says is in the wrong position. It now has its own row under the quick actions, above the first panel that reads it, with a "Charts cover" label to say what it does. The row skips the card chrome: it is a control, not content, and giving it a section's surface and shadow would have made it look like a panel with nothing in it. No JS change — both the click wiring and renderChartWindow address the buttons by class, so they never cared where the picker lived. Also removes that old comment, which had stopped being wrong about the picker and started being wrong about the panel: the walks move carried it along by accident and left it sitting above Weight, explaining a control three panels away.
This commit is contained in:
+13
-9
@@ -134,6 +134,19 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Page-level, not a panel's: every panel below that covers more than
|
||||
one day reads this, so it sits on its own row above them all rather
|
||||
than inside one of them, where it read as that panel's own control
|
||||
(see renderChartWindow). -->
|
||||
<div class="chart-window">
|
||||
<span class="chart-window-label">Charts cover</span>
|
||||
<div class="chart-days-picker" role="group" aria-label="How many days the charts cover">
|
||||
<button type="button" class="ghost" data-days="7">7d</button>
|
||||
<button type="button" class="ghost" data-days="14">14d</button>
|
||||
<button type="button" class="ghost" data-days="30">30d</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="training" data-panel="training">
|
||||
<h2>Training</h2>
|
||||
<ul id="training-list" class="training-list"></ul>
|
||||
@@ -229,11 +242,6 @@
|
||||
|
||||
<section class="patterns" data-panel="sleep-daily">
|
||||
<h2>Sleep <span class="muted-note" data-chart-days-label>(last 7 days)</span></h2>
|
||||
<div class="chart-days-picker" role="group" aria-label="How many days the charts cover">
|
||||
<button type="button" class="ghost" data-days="7">7d</button>
|
||||
<button type="button" class="ghost" data-days="14">14d</button>
|
||||
<button type="button" class="ghost" data-days="30">30d</button>
|
||||
</div>
|
||||
<div class="chart">
|
||||
<div class="chart-title">Hours per day</div>
|
||||
<svg id="chart-sleep" class="chart-svg" viewBox="0 0 320 160" role="img" aria-label="Sleep hours per day"></svg>
|
||||
@@ -315,10 +323,6 @@
|
||||
<p class="muted-note">Minutes walked so far at each point of the day, against yesterday and the average over the picked window. The line climbs only while a walk is on, so every step is one walk.</p>
|
||||
</section>
|
||||
|
||||
<!-- The day-window picker lives in this panel but governs every
|
||||
day-window chart on the page — the training grid above, both sleep
|
||||
patterns below, the counts panel and the walk chart — so changing it
|
||||
here changes all of them (see renderChartWindow). -->
|
||||
<section class="weight" data-panel="weight">
|
||||
<h2>Weight</h2>
|
||||
<div class="weight-summary">
|
||||
|
||||
Reference in New Issue
Block a user