惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(ui): hide chat skeleton during reload · openclaw/open...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -15,6 +15,7 @@ import { renderChatSessionSelect } from "../chat/session-controls.ts";

1515

import type { GatewayBrowserClient } from "../gateway.ts";

1616

import type { ModelCatalogEntry } from "../types.ts";

1717

import type { ChatQueueItem } from "../ui-types.ts";

18+

import { renderChat } from "./chat.ts";

18191920

const refreshVisibleToolsEffectiveForCurrentSessionMock = vi.hoisted(() =>

2021

vi.fn(async (state: AppViewState) => {

@@ -220,12 +221,140 @@ async function flushTasks() {

220221

await vi.dynamicImportSettled();

221222

}

222223224+

function renderChatView(overrides: Partial<Parameters<typeof renderChat>[0]> = {}) {

225+

const container = document.createElement("div");

226+

render(

227+

renderChat({

228+

sessionKey: "main",

229+

onSessionKeyChange: () => undefined,

230+

thinkingLevel: null,

231+

showThinking: false,

232+

showToolCalls: true,

233+

loading: false,

234+

sending: false,

235+

compactionStatus: null,

236+

fallbackStatus: null,

237+

messages: [],

238+

sideResult: null,

239+

toolMessages: [],

240+

streamSegments: [],

241+

stream: null,

242+

streamStartedAt: null,

243+

assistantAvatarUrl: null,

244+

draft: "",

245+

queue: [],

246+

realtimeTalkActive: false,

247+

realtimeTalkStatus: "idle",

248+

realtimeTalkDetail: null,

249+

realtimeTalkTranscript: null,

250+

connected: true,

251+

canSend: true,

252+

disabledReason: null,

253+

error: null,

254+

sessions: null,

255+

focusMode: false,

256+

sidebarOpen: false,

257+

sidebarContent: null,

258+

sidebarError: null,

259+

splitRatio: 0.6,

260+

canvasHostUrl: null,

261+

embedSandboxMode: "scripts",

262+

allowExternalEmbedUrls: false,

263+

assistantName: "Val",

264+

assistantAvatar: null,

265+

userName: null,

266+

userAvatar: null,

267+

localMediaPreviewRoots: [],

268+

assistantAttachmentAuthToken: null,

269+

autoExpandToolCalls: false,

270+

attachments: [],

271+

onAttachmentsChange: () => undefined,

272+

showNewMessages: false,

273+

onScrollToBottom: () => undefined,

274+

onRefresh: () => undefined,

275+

onToggleFocusMode: () => undefined,

276+

getDraft: () => "",

277+

onDraftChange: () => undefined,

278+

onRequestUpdate: () => undefined,

279+

onSend: () => undefined,

280+

onCompact: () => undefined,

281+

onToggleRealtimeTalk: () => undefined,

282+

onAbort: () => undefined,

283+

onQueueRemove: () => undefined,

284+

onQueueSteer: () => undefined,

285+

onDismissSideResult: () => undefined,

286+

onNewSession: () => undefined,

287+

onClearHistory: () => undefined,

288+

agentsList: null,

289+

currentAgentId: "main",

290+

onAgentChange: () => undefined,

291+

onNavigateToAgent: () => undefined,

292+

onSessionSelect: () => undefined,

293+

onOpenSidebar: () => undefined,

294+

onCloseSidebar: () => undefined,

295+

onSplitRatioChange: () => undefined,

296+

onChatScroll: () => undefined,

297+

basePath: "",

298+

...overrides,

299+

}),

300+

container,

301+

);

302+

return container;

303+

}

304+223305

afterEach(() => {

224306

loadSessionsMock.mockClear();

225307

refreshVisibleToolsEffectiveForCurrentSessionMock.mockClear();

226308

vi.unstubAllGlobals();

227309

});

228310311+

describe("chat loading skeleton", () => {

312+

it("shows the skeleton while the initial history load has no rendered content", () => {

313+

const container = renderChatView({ loading: true });

314+315+

expect(container.querySelector(".chat-loading-skeleton")).not.toBeNull();

316+

expect(container.querySelector(".agent-chat__welcome")).toBeNull();

317+

});

318+319+

it("keeps existing messages visible without the skeleton during a background reload", () => {

320+

const container = renderChatView({

321+

loading: true,

322+

messages: [

323+

{

324+

role: "assistant",

325+

content: "Already loaded answer",

326+

timestamp: 1,

327+

},

328+

],

329+

});

330+331+

expect(container.querySelector(".chat-loading-skeleton")).toBeNull();

332+

expect(container.textContent).toContain("Already loaded answer");

333+

});

334+335+

it("keeps active stream content visible without the skeleton during a background reload", () => {

336+

const container = renderChatView({

337+

loading: true,

338+

stream: "Partial streamed answer",

339+

streamStartedAt: 1,

340+

});

341+342+

expect(container.querySelector(".chat-loading-skeleton")).toBeNull();

343+

expect(container.textContent).toContain("Partial streamed answer");

344+

});

345+346+

it("keeps the reading indicator visible without the skeleton before stream text arrives", () => {

347+

const container = renderChatView({

348+

loading: true,

349+

stream: "",

350+

streamStartedAt: 1,

351+

});

352+353+

expect(container.querySelector(".chat-loading-skeleton")).toBeNull();

354+

expect(container.querySelector(".chat-reading-indicator")).not.toBeNull();

355+

});

356+

});

357+229358

describe("chat queue", () => {

230359

it("renders Steer only for queued messages during an active run", () => {

231360

const onQueueSteer = vi.fn();