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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

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
perf(ui): debounce chat draft persistence · openclaw/open...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -35,6 +35,14 @@ function createHost() {

3535

};

3636

}

373738+

type ComposerPersistHost = ReturnType<typeof createHost> & {

39+

chatComposerPersistTimer?: ReturnType<typeof globalThis.setTimeout> | number | null;

40+

};

41+42+

function createComposerPersistHost(): ComposerPersistHost {

43+

return createHost() as ComposerPersistHost;

44+

}

45+3846

describe("handleDisconnected", () => {

3947

afterEach(() => {

4048

vi.useRealTimers();

@@ -82,9 +90,143 @@ describe("handleDisconnected", () => {

82908391

describe("handleUpdated", () => {

8492

afterEach(() => {

93+

vi.useRealTimers();

8594

vi.unstubAllGlobals();

8695

});

879697+

it("debounces draft-only composer persistence", () => {

98+

vi.useFakeTimers();

99+

vi.stubGlobal("sessionStorage", createStorageMock());

100+

const host = createHost();

101+

host.chatMessage = "typing without blocking input";

102+103+

handleUpdated(

104+

host as unknown as Parameters<typeof handleUpdated>[0],

105+

new Map<PropertyKey, unknown>([["chatMessage", ""]]),

106+

);

107+108+

expect(loadChatComposerSnapshot(host, "main")).toBeNull();

109+110+

vi.advanceTimersByTime(199);

111+

expect(loadChatComposerSnapshot(host, "main")).toBeNull();

112+113+

vi.advanceTimersByTime(1);

114+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

115+

draft: "typing without blocking input",

116+

queue: [],

117+

});

118+

});

119+120+

it("flushes delayed draft persistence on teardown", () => {

121+

vi.useFakeTimers();

122+

vi.stubGlobal("sessionStorage", createStorageMock());

123+

vi.stubGlobal("window", {

124+

removeEventListener: vi.fn(),

125+

});

126+

const host = createHost();

127+

host.chatMessage = "save before close";

128+129+

handleUpdated(

130+

host as unknown as Parameters<typeof handleUpdated>[0],

131+

new Map<PropertyKey, unknown>([["chatMessage", ""]]),

132+

);

133+

handleDisconnected(host as unknown as Parameters<typeof handleDisconnected>[0]);

134+135+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

136+

draft: "save before close",

137+

queue: [],

138+

});

139+

vi.advanceTimersByTime(200);

140+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

141+

draft: "save before close",

142+

queue: [],

143+

});

144+

});

145+146+

it("persists queue changes immediately and clears delayed draft persistence", () => {

147+

vi.useFakeTimers();

148+

vi.stubGlobal("sessionStorage", createStorageMock());

149+

const host = createComposerPersistHost();

150+

host.chatMessage = "draft with queued work";

151+152+

handleUpdated(

153+

host as unknown as Parameters<typeof handleUpdated>[0],

154+

new Map<PropertyKey, unknown>([["chatMessage", ""]]),

155+

);

156+

host.chatQueue = [{ id: "queued-1", text: "next prompt", createdAt: 1 }];

157+

handleUpdated(

158+

host as unknown as Parameters<typeof handleUpdated>[0],

159+

new Map<PropertyKey, unknown>([["chatQueue", []]]),

160+

);

161+162+

expect(host.chatComposerPersistTimer).toBeNull();

163+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

164+

draft: "draft with queued work",

165+

queue: [{ id: "queued-1", text: "next prompt", createdAt: 1 }],

166+

});

167+

});

168+169+

it("persists drafts immediately when the active session changes", () => {

170+

vi.useFakeTimers();

171+

vi.stubGlobal("sessionStorage", createStorageMock());

172+

const host = createComposerPersistHost();

173+

host.chatMessage = "draft before new chat";

174+175+

handleUpdated(

176+

host as unknown as Parameters<typeof handleUpdated>[0],

177+

new Map<PropertyKey, unknown>([["chatMessage", ""]]),

178+

);

179+

host.sessionKey = "agent:main:new-session";

180+

host.chatMessage = "draft restored into new chat";

181+

handleUpdated(

182+

host as unknown as Parameters<typeof handleUpdated>[0],

183+

new Map<PropertyKey, unknown>([

184+

["sessionKey", "main"],

185+

["chatMessage", ""],

186+

]),

187+

);

188+189+

expect(host.chatComposerPersistTimer).toBeNull();

190+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

191+

draft: "draft before new chat",

192+

queue: [],

193+

});

194+

expect(loadChatComposerSnapshot(host, "agent:main:new-session")).toEqual({

195+

draft: "draft restored into new chat",

196+

queue: [],

197+

});

198+

});

199+200+

it("flushes delayed draft persistence when only the session changes", () => {

201+

vi.useFakeTimers();

202+

vi.stubGlobal("sessionStorage", createStorageMock());

203+

const host = createComposerPersistHost();

204+

host.chatMessage = "draft from old session";

205+206+

handleUpdated(

207+

host as unknown as Parameters<typeof handleUpdated>[0],

208+

new Map<PropertyKey, unknown>([["chatMessage", ""]]),

209+

);

210+

host.sessionKey = "agent:main:other";

211+

handleUpdated(

212+

host as unknown as Parameters<typeof handleUpdated>[0],

213+

new Map<PropertyKey, unknown>([["sessionKey", "main"]]),

214+

);

215+216+

expect(host.chatComposerPersistTimer).toBeNull();

217+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

218+

draft: "draft from old session",

219+

queue: [],

220+

});

221+

expect(loadChatComposerSnapshot(host, "agent:main:other")).toBeNull();

222+

vi.advanceTimersByTime(200);

223+

expect(loadChatComposerSnapshot(host, "agent:main:other")).toBeNull();

224+

expect(loadChatComposerSnapshot(host, "main")).toEqual({

225+

draft: "draft from old session",

226+

queue: [],

227+

});

228+

});

229+88230

it("persists chat draft and queue changes before chat refresh short-circuits", () => {

89231

vi.stubGlobal("sessionStorage", createStorageMock());

90232

const host = createHost();