feat: default heatmap scroll to the latest week on open - #8
Open
RaBBBBBBBIT wants to merge 1 commit into
Open
Conversation
Opening the usage-stats page left the 53-week heatmap at the oldest weeks; the recent activity sat off the right edge of the overflow-x container. Scroll the heatmap to the rightmost (newest) column once, right after the first render that shows it. A one-shot flag keeps the 15s stats polling from yanking the user's scroll position afterwards. Verified in the dsh web GUI (settings → 用量统计): the heatmap now opens on the current week.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Opening the usage-stats page left the 53-week heatmap showing the oldest weeks; the recent activity sat off the right edge of the
overflow-x: autocontainer (.uh-hm-scroll), so it was easy to mistake the page for showing stale data.Fix
statsfirst resolves), setscrollLeft = scrollWidth - clientWidthto land on the newest (rightmost) week.Verification
Verified in the dsh web GUI (Settings → 用量统计): opening the page now lands on the current week; scrolling away is not disturbed by polling refreshes.
Note: this is a client-side-only change (lib/client.js) — it takes effect on a page refresh, no dsh restart needed.