fix(ui): scroll chat to bottom on initial load

This commit is contained in:
Peter Steinberger
2026-01-06 07:49:12 +01:00
parent b584770055
commit 5b183b4fe3
2 changed files with 26 additions and 19 deletions

View File

@@ -50,6 +50,7 @@
- Control UI: animate reading indicator dots (honors reduced-motion). - Control UI: animate reading indicator dots (honors reduced-motion).
- Control UI: stabilize chat streaming during tool runs (no flicker/vanishing text; correct run scoping). - Control UI: stabilize chat streaming during tool runs (no flicker/vanishing text; correct run scoping).
- Control UI: let config-form enums select empty-string values. Thanks @sreekaransrinath for PR #268. - Control UI: let config-form enums select empty-string values. Thanks @sreekaransrinath for PR #268.
- Control UI: scroll chat to bottom on initial load. Thanks @kiranjd for PR #274.
- Status: show runtime (docker/direct) and move shortcuts to `/help`. - Status: show runtime (docker/direct) and move shortcuts to `/help`.
- Status: show model auth source (api-key/oauth). - Status: show model auth source (api-key/oauth).
- Block streaming: avoid splitting Markdown fenced blocks and reopen fences when forced to split. - Block streaming: avoid splitting Markdown fenced blocks and reopen fences when forced to split.

View File

@@ -437,34 +437,40 @@ export class ClawdbotApp extends LitElement {
clearTimeout(this.chatScrollTimeout); clearTimeout(this.chatScrollTimeout);
this.chatScrollTimeout = null; this.chatScrollTimeout = null;
} }
const pickScrollTarget = () => {
const container = this.querySelector(".chat-thread") as HTMLElement | null;
if (container) {
const overflowY = getComputedStyle(container).overflowY;
const canScroll =
overflowY === "auto" ||
overflowY === "scroll" ||
container.scrollHeight - container.clientHeight > 1;
if (canScroll) return container;
}
return (document.scrollingElement ?? document.documentElement) as HTMLElement | null;
};
// Wait for Lit render to complete, then scroll // Wait for Lit render to complete, then scroll
void this.updateComplete.then(() => { void this.updateComplete.then(() => {
this.chatScrollFrame = requestAnimationFrame(() => { this.chatScrollFrame = requestAnimationFrame(() => {
this.chatScrollFrame = null; this.chatScrollFrame = null;
if (force) { const target = pickScrollTarget();
// Force scroll window to bottom unconditionally if (!target) return;
this.chatHasAutoScrolled = true;
window.scrollTo({ top: document.body.scrollHeight, behavior: "instant" });
// Retry after images/content load
this.chatScrollTimeout = window.setTimeout(() => {
this.chatScrollTimeout = null;
window.scrollTo({ top: document.body.scrollHeight, behavior: "instant" });
}, 150);
return;
}
// Stick to bottom if already near bottom
const distanceFromBottom = const distanceFromBottom =
document.body.scrollHeight - window.scrollY - window.innerHeight; target.scrollHeight - target.scrollTop - target.clientHeight;
const shouldStick = distanceFromBottom < 200; const shouldStick = force || distanceFromBottom < 200;
if (!shouldStick) return; if (!shouldStick) return;
window.scrollTo({ top: document.body.scrollHeight, behavior: "instant" }); if (force) this.chatHasAutoScrolled = true;
target.scrollTop = target.scrollHeight;
const retryDelay = force ? 150 : 120;
this.chatScrollTimeout = window.setTimeout(() => { this.chatScrollTimeout = window.setTimeout(() => {
this.chatScrollTimeout = null; this.chatScrollTimeout = null;
const latest = pickScrollTarget();
if (!latest) return;
const latestDistanceFromBottom = const latestDistanceFromBottom =
document.body.scrollHeight - window.scrollY - window.innerHeight; latest.scrollHeight - latest.scrollTop - latest.clientHeight;
if (latestDistanceFromBottom >= 250) return; if (!force && latestDistanceFromBottom >= 250) return;
window.scrollTo({ top: document.body.scrollHeight, behavior: "instant" }); latest.scrollTop = latest.scrollHeight;
}, 120); }, retryDelay);
}); });
}); });
} }