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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

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: narrow grouped render test imports · openclaw/openc...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -4,7 +4,6 @@ import { html, render } from "lit";

44

import { afterEach, describe, expect, it, vi } from "vitest";

55

import { getSafeLocalStorage } from "../../local-storage.ts";

66

import type { MessageGroup } from "../types/chat-types.ts";

7-

import { buildChatItems, type BuildChatItemsProps } from "./build-chat-items.ts";

87

import {

98

renderMessageGroup,

109

resetAssistantAttachmentAvailabilityCacheForTest,

@@ -104,6 +103,44 @@ function createMessageGroup(message: unknown, role: string): MessageGroup {

104103

};

105104

}

106105106+

function createAssistantCanvasBlock(params: {

107+

suffix: string;

108+

title?: string;

109+

url?: string;

110+

preferredHeight?: number;

111+

presentationTarget?: "assistant_message" | "tool_card";

112+

}) {

113+

const viewId = `cv_inline_${params.suffix}`;

114+

const url = params.url ?? `/__openclaw__/canvas/documents/${viewId}/index.html`;

115+

const title = params.title ?? "Inline demo";

116+

const preferredHeight = params.preferredHeight ?? 360;

117+

return {

118+

type: "canvas",

119+

preview: {

120+

kind: "canvas",

121+

surface: "assistant_message",

122+

render: "url",

123+

viewId,

124+

title,

125+

url,

126+

preferredHeight,

127+

},

128+

rawText: JSON.stringify({

129+

kind: "canvas",

130+

view: {

131+

backend: "canvas",

132+

id: viewId,

133+

url,

134+

title,

135+

preferred_height: preferredHeight,

136+

},

137+

presentation: {

138+

target: params.presentationTarget ?? "assistant_message",

139+

},

140+

}),

141+

};

142+

}

143+107144

function renderMessageGroups(

108145

container: HTMLElement,

109146

groups: MessageGroup[],

@@ -123,24 +160,6 @@ function renderMessageGroups(

123160

);

124161

}

125162126-

function renderBuiltMessageGroups(

127-

container: HTMLElement,

128-

props: Partial<BuildChatItemsProps>,

129-

opts: Partial<RenderMessageGroupOptions> = {},

130-

) {

131-

const groups = buildChatItems({

132-

sessionKey: "main",

133-

messages: [],

134-

toolMessages: [],

135-

streamSegments: [],

136-

stream: null,

137-

streamStartedAt: null,

138-

showToolCalls: true,

139-

...props,

140-

}).filter((item) => item.kind === "group");

141-

renderMessageGroups(container, groups, opts);

142-

}

143-144163

function clearDeleteConfirmSkip() {

145164

try {

146165

getSafeLocalStorage()?.removeItem("openclaw:skipDeleteConfirm");

@@ -1110,41 +1129,22 @@ describe("grouped chat rendering", () => {

11101129

it("renders hidden assistant_message canvas results with the configured sandbox", () => {

11111130

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

11121131

const renderCanvas = (params: { embedSandboxMode?: "trusted"; suffix: string }) =>

1113-

renderBuiltMessageGroups(

1132+

renderMessageGroups(

11141133

container,

1115-

{

1116-

showToolCalls: false,

1117-

messages: [

1134+

[

1135+

createMessageGroup(

11181136

{

11191137

id: `assistant-canvas-inline-${params.suffix}`,

11201138

role: "assistant",

1121-

content: [{ type: "text", text: "Inline canvas result." }],

1139+

content: [

1140+

{ type: "text", text: "Inline canvas result." },

1141+

createAssistantCanvasBlock({ suffix: params.suffix }),

1142+

],

11221143

timestamp: Date.now(),

11231144

},

1124-

],

1125-

toolMessages: [

1126-

{

1127-

id: `tool-artifact-inline-${params.suffix}`,

1128-

role: "tool",

1129-

toolCallId: `call-artifact-inline-${params.suffix}`,

1130-

toolName: "canvas_render",

1131-

content: JSON.stringify({

1132-

kind: "canvas",

1133-

view: {

1134-

backend: "canvas",

1135-

id: `cv_inline_${params.suffix}`,

1136-

url: `/__openclaw__/canvas/documents/cv_inline_${params.suffix}/index.html`,

1137-

title: "Inline demo",

1138-

preferred_height: 360,

1139-

},

1140-

presentation: {

1141-

target: "assistant_message",

1142-

},

1143-

}),

1144-

timestamp: Date.now() + 1,

1145-

},

1146-

],

1147-

},

1145+

"assistant",

1146+

),

1147+

],

11481148

{

11491149

embedSandboxMode: params.embedSandboxMode ?? "scripts",

11501150

},

@@ -1169,19 +1169,22 @@ describe("grouped chat rendering", () => {

1169116911701170

it("renders assistant_message canvas results in the assistant bubble even when tool rows are visible", () => {

11711171

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

1172-

renderBuiltMessageGroups(

1172+

renderMessageGroups(

11731173

container,

1174-

{

1175-

showToolCalls: true,

1176-

messages: [

1174+

[

1175+

createMessageGroup(

11771176

{

11781177

id: "assistant-canvas-inline-visible",

11791178

role: "assistant",

1180-

content: [{ type: "text", text: "Inline canvas result." }],

1179+

content: [

1180+

{ type: "text", text: "Inline canvas result." },

1181+

createAssistantCanvasBlock({ suffix: "visible" }),

1182+

],

11811183

timestamp: Date.now(),

11821184

},

1183-

],

1184-

toolMessages: [

1185+

"assistant",

1186+

),

1187+

createMessageGroup(

11851188

{

11861189

id: "tool-artifact-inline-visible",

11871190

role: "tool",

@@ -1202,8 +1205,9 @@ describe("grouped chat rendering", () => {

12021205

}),

12031206

timestamp: Date.now() + 1,

12041207

},

1205-

],

1206-

},

1208+

"tool",

1209+

),

1210+

],

12071211

{

12081212

isToolMessageExpanded: () => true,

12091213

},

@@ -1222,19 +1226,19 @@ describe("grouped chat rendering", () => {

12221226

it("opens generic tool details instead of a canvas preview from tool rows", () => {

12231227

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

12241228

const onOpenSidebar = vi.fn();

1225-

renderBuiltMessageGroups(

1229+

renderMessageGroups(

12261230

container,

1227-

{

1228-

showToolCalls: true,

1229-

messages: [

1231+

[

1232+

createMessageGroup(

12301233

{

12311234

id: "assistant-canvas-sidebar",

12321235

role: "assistant",

12331236

content: [{ type: "text", text: "Sidebar canvas result." }],

12341237

timestamp: Date.now(),

12351238

},

1236-

],

1237-

toolMessages: [

1239+

"assistant",

1240+

),

1241+

createMessageGroup(

12381242

{

12391243

id: "tool-artifact-sidebar",

12401244

role: "tool",

@@ -1255,8 +1259,9 @@ describe("grouped chat rendering", () => {

12551259

}),

12561260

timestamp: Date.now() + 1,

12571261

},

1258-

],

1259-

},

1262+

"tool",

1263+

),

1264+

],

12601265

{

12611266

isToolExpanded: () => true,

12621267

isToolMessageExpanded: () => true,