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

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

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): lazy load usage dashboard · openclaw/openclaw@f8...
vincentkoc · 2026-06-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -50,6 +50,7 @@ Docs: https://docs.openclaw.ai

5050

- Release/CI/E2E: reset shared Crabbox pnpm hydrate state before installs so stale `/var/tmp` stores cannot leave `pnpm install` spinning after completion.

5151

- Release/CI/E2E: print heartbeat progress during centralized Docker builds while keeping successful build logs quiet.

5252

- Release/CI/E2E: avoid heartbeat-tail delays in Docker E2E log wrappers while reporting captured log bytes during long runs.

53+

- Control UI: lazy-load the usage view so the initial app bundle stays below the chunk warning threshold.

5354

- Build: render independent CLI startup metadata help snapshots concurrently to cut cold build-all metadata time.

5455

- Plugins: stop timed-out package-boundary prep steps by process group so descendant TypeScript/helper processes do not survive local check cleanup.

5556

- Control UI: serve static assets asynchronously after safe-open checks so large UI files do not block Gateway request handling.

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@

22

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

33

import { renderUsageTab } from "./app-render-usage-tab.ts";

44

import type { AppViewState } from "./app-view-state.ts";

5+

import type { LazyView } from "./lazy-view.ts";

56

import type { UsageProps } from "./views/usageTypes.ts";

67
78

const loadUsageMock = vi.hoisted(() => vi.fn(async () => {}));

@@ -15,9 +16,17 @@ vi.mock("./controllers/usage.ts", async (importOriginal) => {

1516

};

1617

});

1718
18-

vi.mock("./views/usage.ts", () => ({

19-

renderUsage: renderUsageMock,

20-

}));

19+

type UsageViewModule = typeof import("./views/usage.ts");

20+
21+

function createLoadedUsageView(): LazyView<UsageViewModule> {

22+

return {

23+

read: () => ({ renderUsage: renderUsageMock }) as unknown as UsageViewModule,

24+

retry: () => {},

25+

error: () => undefined,

26+

hasError: () => false,

27+

pending: () => false,

28+

};

29+

}

2130
2231

function createState(overrides: Partial<AppViewState> = {}): AppViewState {

2332

return {

@@ -52,7 +61,7 @@ describe("renderUsageTab", () => {

5261

});

5362
5463

it("passes configured agents to the usage view", () => {

55-

renderUsageTab(createState());

64+

renderUsageTab(createState(), createLoadedUsageView());

5665
5766

expect(renderUsageMock).toHaveBeenCalledWith(

5867

expect.objectContaining({

@@ -64,7 +73,7 @@ describe("renderUsageTab", () => {

6473

it("reloads usage when selecting an agent scope", () => {

6574

const state = createState();

6675
67-

renderUsageTab(state);

76+

renderUsageTab(state, createLoadedUsageView());

6877

expect(renderUsageMock).toHaveBeenCalled();

6978

const props = renderUsageMock.mock.calls[0]?.[0];

7079

if (!props) {

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,11 @@ import { nothing } from "lit";

22

import type { AppViewState } from "./app-view-state.ts";

33

import type { UsageState } from "./controllers/usage.ts";

44

import { loadUsage, loadSessionTimeSeries, loadSessionLogs } from "./controllers/usage.ts";

5-

import { renderUsage } from "./views/usage.ts";

5+

import type { LazyView } from "./lazy-view.ts";

6+

import { renderLazyView } from "./lazy-view.ts";

7+

import type { UsageColumnId } from "./views/usageTypes.ts";

8+
9+

type UsageViewModule = typeof import("./views/usage.ts");

610
711

type UsageCacheStatus = NonNullable<NonNullable<UsageState["usageResult"]>["cacheStatus"]>;

812

@@ -40,12 +44,12 @@ const debouncedLoadUsage = (state: UsageState) => {

4044

usageDateDebounceTimeout = window.setTimeout(() => void loadUsage(state), 400);

4145

};

4246
43-

export function renderUsageTab(state: AppViewState) {

47+

export function renderUsageTab(state: AppViewState, usageView: LazyView<UsageViewModule>) {

4448

if (state.tab !== "usage") {

4549

return nothing;

4650

}

4751
48-

return renderUsage({

52+

return renderLazyView(usageView, ({ renderUsage }) => renderUsage({

4953

data: {

5054

loading: state.usageLoading,

5155

error: state.usageError,

@@ -79,7 +83,7 @@ export function renderUsageTab(state: AppViewState) {

7983

sessionSortDir: state.usageSessionSortDir,

8084

recentSessions: state.usageRecentSessions,

8185

sessionsTab: state.usageSessionsTab,

82-

visibleColumns: state.usageVisibleColumns as import("./views/usage.ts").UsageColumnId[],

86+

visibleColumns: state.usageVisibleColumns as UsageColumnId[],

8387

contextExpanded: state.usageContextExpanded,

8488

headerPinned: state.usageHeaderPinned,

8589

},

@@ -333,5 +337,5 @@ export function renderUsageTab(state: AppViewState) {

333337

},

334338

},

335339

},

336-

});

340+

}));

337341

}

Original file line numberDiff line numberDiff line change

@@ -531,6 +531,7 @@ const lazySkillWorkshop = createLazyView(

531531

notifyLazyViewChanged,

532532

);

533533

const lazySkills = createLazyView(() => import("./views/skills.ts"), notifyLazyViewChanged);

534+

const lazyUsage = createLazyView(() => import("./views/usage.ts"), notifyLazyViewChanged);

534535

const lazyWorkboard = createLazyView(() => import("./views/workboard.ts"), notifyLazyViewChanged);

535536
536537

type ChatWorkspaceFilesState = {

@@ -2642,7 +2643,7 @@ export function renderApp(state: AppViewState) {

26422643

});

26432644

})

26442645

: nothing}

2645-

${renderUsageTab(state)}

2646+

${renderUsageTab(state, lazyUsage)}

26462647

${state.tab === "cron" ? renderCronQuickCreateForTab(state, requestHostUpdate) : nothing}

26472648

${state.tab === "cron"

26482649

? renderLazyView(lazyCron, (m) =>