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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

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): cache chat transcript renders (#88952) · opencl...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -44,6 +44,64 @@ const loadSessionsMock = vi.hoisted(() =>

4444

}

4545

}),

4646

);

47+

const buildChatItemsMock = vi.hoisted(() =>

48+

vi.fn(

49+

(props: { messages: unknown[]; stream: string | null; streamStartedAt: number | null }) => {

50+

if (

51+

props.messages.some(

52+

(message) =>

53+

typeof message === "object" &&

54+

message !== null &&

55+

(message as { __testDivider?: unknown })["__testDivider"] === true,

56+

)

57+

) {

58+

return [

59+

{

60+

kind: "divider",

61+

key: "divider:compaction:test",

62+

label: "Compacted history",

63+

description:

64+

"The compacted transcript is preserved as a checkpoint. Open session checkpoints to branch or restore from that compacted view.",

65+

action: {

66+

kind: "session-checkpoints",

67+

label: "Open checkpoints",

68+

},

69+

timestamp: 1,

70+

},

71+

];

72+

}

73+

if (props.messages.length > 0) {

74+

return [

75+

{

76+

kind: "group",

77+

key: "group:assistant:test",

78+

role: "assistant",

79+

messages: props.messages.map((message, index) => ({

80+

key: `message:${index}`,

81+

message,

82+

})),

83+

timestamp: 1,

84+

isStreaming: false,

85+

},

86+

];

87+

}

88+

if (props.stream !== null) {

89+

return props.stream

90+

? [

91+

{

92+

kind: "stream",

93+

key: "stream:test",

94+

text: props.stream,

95+

startedAt: props.streamStartedAt ?? 1,

96+

isStreaming: true,

97+

},

98+

]

99+

: [{ kind: "reading-indicator", key: "reading:test" }];

100+

}

101+

return [];

102+

},

103+

),

104+

);

4710548106

function requireFirstAttachmentsChange(

49107

onAttachmentsChange: ReturnType<typeof vi.fn>,

@@ -64,64 +122,7 @@ vi.mock("../icons.ts", () => ({

64122

}));

6512366124

vi.mock("../chat/build-chat-items.ts", () => ({

67-

buildChatItems: (props: {

68-

messages: unknown[];

69-

stream: string | null;

70-

streamStartedAt: number | null;

71-

}) => {

72-

if (

73-

props.messages.some(

74-

(message) =>

75-

typeof message === "object" &&

76-

message !== null &&

77-

(message as { __testDivider?: unknown })["__testDivider"] === true,

78-

)

79-

) {

80-

return [

81-

{

82-

kind: "divider",

83-

key: "divider:compaction:test",

84-

label: "Compacted history",

85-

description:

86-

"The compacted transcript is preserved as a checkpoint. Open session checkpoints to branch or restore from that compacted view.",

87-

action: {

88-

kind: "session-checkpoints",

89-

label: "Open checkpoints",

90-

},

91-

timestamp: 1,

92-

},

93-

];

94-

}

95-

if (props.messages.length > 0) {

96-

return [

97-

{

98-

kind: "group",

99-

key: "group:assistant:test",

100-

role: "assistant",

101-

messages: props.messages.map((message, index) => ({

102-

key: `message:${index}`,

103-

message,

104-

})),

105-

timestamp: 1,

106-

isStreaming: false,

107-

},

108-

];

109-

}

110-

if (props.stream !== null) {

111-

return props.stream

112-

? [

113-

{

114-

kind: "stream",

115-

key: "stream:test",

116-

text: props.stream,

117-

startedAt: props.streamStartedAt ?? 1,

118-

isStreaming: true,

119-

},

120-

]

121-

: [{ kind: "reading-indicator", key: "reading:test" }];

122-

}

123-

return [];

124-

},

125+

buildChatItems: buildChatItemsMock,

125126

}));

126127127128

vi.mock("../chat/grouped-render.ts", () => ({

@@ -673,13 +674,52 @@ describe("chat composer workbench", () => {

673674674675

afterEach(() => {

675676

vi.useRealTimers();

677+

buildChatItemsMock.mockClear();

676678

loadSessionsMock.mockClear();

677679

refreshVisibleToolsEffectiveForCurrentSessionMock.mockClear();

678680

resetChatViewState();

679681

resetChatAttachmentPayloadStoreForTest();

680682

vi.unstubAllGlobals();

681683

});

682684685+

describe("chat transcript rendering cache", () => {

686+

it("does not rebuild transcript items for draft-only rerenders", () => {

687+

const messages = [{ role: "assistant", content: "ready" }];

688+

const toolMessages: unknown[] = [];

689+

const streamSegments: Array<{ text: string; ts: number }> = [];

690+

const queue: ChatQueueItem[] = [];

691+692+

renderChatView({ messages, toolMessages, streamSegments, queue, draft: "" });

693+

renderChatView({ messages, toolMessages, streamSegments, queue, draft: "h" });

694+

renderChatView({ messages, toolMessages, streamSegments, queue, draft: "hello" });

695+696+

expect(buildChatItemsMock).toHaveBeenCalledTimes(1);

697+

});

698+699+

it("rebuilds transcript items when the transcript reference changes", () => {

700+

const toolMessages: unknown[] = [];

701+

const streamSegments: Array<{ text: string; ts: number }> = [];

702+

const queue: ChatQueueItem[] = [];

703+704+

renderChatView({

705+

messages: [{ role: "assistant", content: "ready" }],

706+

toolMessages,

707+

streamSegments,

708+

queue,

709+

draft: "",

710+

});

711+

renderChatView({

712+

messages: [{ role: "assistant", content: "new reply" }],

713+

toolMessages,

714+

streamSegments,

715+

queue,

716+

draft: "",

717+

});

718+719+

expect(buildChatItemsMock).toHaveBeenCalledTimes(2);

720+

});

721+

});

722+683723

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

684724

it("renders realtime Talk transcript as ordered voice turns", () => {

685725

const container = renderChatView({