Skip to content

fix: make ComfyApp root-graph readiness reactive - #14976

Open
mattmillerai wants to merge 8 commits into
mainfrom
matt/fe-6860-root-graph-shallow-ref
Open

fix: make ComfyApp root-graph readiness reactive#14976
mattmillerai wants to merge 8 commits into
mainfrom
matt/fe-6860-root-graph-shallow-ref

Conversation

@mattmillerai

Copy link
Copy Markdown
Contributor

ELI-5

app.rootGraph was stored in a plain field, so nothing could "watch" for the graph showing up. Anything that asked "is the graph ready yet?" before startup finished got told "no" once and was never told otherwise. Putting the graph in a shallowRef makes that answer live, so watchers wake up when startup assigns it.

Summary

Back ComfyApp's root graph with a shallowRef so graph readiness is observable, without changing any getter's signature or behavior.

Changes

  • What: src/scripts/app.ts swaps the plain rootGraphInternal field for private readonly rootGraphRef = shallowRef<LGraph | undefined>(undefined). get graph(), get rootGraph() and get isGraphReady() read rootGraphRef.value — same signatures, same non-null assertions, same console.error('ComfyApp graph accessed before initialization'). The single production writer (setup()) assigns this.rootGraphRef.value = graph. No consumer call sites changed.
  • Breaking: rootGraphInternal no longer exists as a runtime own-property. It was TS-private and undocumented, so this only affects code that deliberately reached past the getters — inside this repo that was three test files, all updated here.
  • New src/scripts/rootGraphReadiness.test.ts covers the two behaviors the plain field could not provide.

Review Focus

Why shallowRef and not ref. ref would deep-proxy LGraph; the getters must keep returning the raw graph so litegraph identity checks and hot paths are untouched. shallowRef only tracks replacement of .value, and .value is written exactly once per setup(), so the reactive cost is a single false→true invalidation per cold start. Several computeds gated on isGraphReady (executionErrorStore, missingNodesErrorStore, RightSidePanel, useProcessedWidgets) will now legitimately recompute on that transition; their suites are green unchanged.

Judgment call — the ticket said "app.ts only", but 32 references lived in tests. app.test.ts (20), customWidgets.subgraphPromotion.test.ts (8) and customWidgets.clone.test.ts (4) wrote the private field directly (Reflect.set(app, 'rootGraphInternal', graph)), so leaving the name behind would have meant keeping a dead alias purely as a test seam. Instead those sites go through a typed seam, src/scripts/__tests__/appTestUtils.ts (setRootGraph / getRootGraph), which writes the same rootGraphRef.value that setup() writes. Making the seam typed surfaced two app.test.ts sites that had been passing a partial graph mock through an untyped Reflect.set; those now use fromPartial<LGraph> (the pattern already used in appModeStore.test.ts). git grep rootGraphInternal is now empty repo-wide.

Why the test does not call setup(). setup() needs four document.getElementById body slots, a real canvas for new LGraphCanvas, workflow sync and extension loading; no test in the repo invokes it. The test therefore uses the seam above, which executes the identical statement (rootGraphRef.value = graph). Both cases were verified red: replacing the shallowRef with a plain { value } holder fails both (expected [false] to equal [false, true], and the configured spy called 0 times).

The listener case registers useEventListener(() => app.rootGraph?.events, 'configured', spy) inside an effect scope while the graph is unassigned, matching appModeStore.ts:225-229 verbatim — that binding is dead on every cold start today, currently masked because afterLoadNewGraph also calls loadSelections directly. Note that appModeStore.test.ts mocks @/scripts/app with a plain object and so proves nothing about this; the new test uses the real ComfyApp singleton and restores its previous graph in afterEach.

Coordination: no semantic conflict with the open PR that swaps call-site guards to isGraphReady — that one touches consumers and one app.ts line inside clear(), this one touches only the field's storage. Either can land first; the rebase is mechanical.

Verified: pnpm typecheck, pnpm lint, pnpm format:check, pnpm knip all clean. Suites run: app.test.ts, rootGraphReadiness.test.ts, both customWidgets files, appModeStore, executionErrorStore, missingNodesErrorStore, useProcessedWidgets, useErrorClearingHooks (+ promotion), useGraphNodeManager, useErrorGroups, ErrorOverlay, useErrorOverlayState, missingMediaPreviewRegression — 335 tests, all green. One run of app.test.ts showed a 5s timeout in an unrelated drag-and-drop test; it did not reproduce across 6 further runs on this branch or 6 runs on main, so it is pre-existing load flake, not this change.

Back the root graph with a shallowRef so watchers, computeds and
useEventListener sources that read app.graph / app.rootGraph /
app.isGraphReady re-evaluate when setup() assigns the graph.

Stores constructed before ComfyApp.setup() runs (FirstRunTour pulls in
appModeStore on every cold start) previously bound to a plain field with
no reactive dependency, so a listener registered against
app.rootGraph?.events never rebound once the graph existed.
@mattmillerai mattmillerai added the agent-coded Opened by the agent-work code loop label Aug 9, 2026
@mattmillerai
mattmillerai marked this pull request as ready for review August 9, 2026 19:10
@mattmillerai
mattmillerai requested a review from a team August 9, 2026 19:10
@dosubot dosubot Bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Aug 9, 2026
@github-actions

github-actions Bot commented Aug 9, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/16/2026, 06:38:00 AM UTC

Links

🎭 Playwright: ✅ 1816 passed, 0 failed · 2 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1797 / ❌ 0 / ⚠️ 1 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 16 / ❌ 0 / ⚠️ 1 / ⏭️ 0)
  • New-test walkthrough (chromium, recorded video): View Report

📦 Bundle: 8.85 MB gzip 🟢 -1 B

Details

Summary

  • Raw size: 37.3 MB baseline 37.3 MB — 🔴 +95 B
  • Gzip: 8.85 MB baseline 8.85 MB — 🟢 -1 B
  • Brotli: 6.19 MB baseline 6.19 MB — 🔴 +77 B
  • Bundles: 438 current • 438 baseline • 145 added / 145 removed

Category Glance
Data & Services 🔴 +95 B (3.52 MB) · Vendor & Third-Party ⚪ 0 B (16.8 MB) · Other ⚪ 0 B (14.2 MB) · Graph Workspace ⚪ 0 B (1.37 MB) · Panels & Settings ⚪ 0 B (565 kB) · Utilities & Hooks ⚪ 0 B (550 kB) · + 5 more

App Entry Points — 3.71 kB (baseline 3.71 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BSOPmpV0.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.85 kB 🔴 +1.62 kB
assets/index-DKQHWC6C.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.86 kB 🟢 -1.6 kB

Status: 1 added / 1 removed

Graph Workspace — 1.37 MB (baseline 1.37 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CWLy5gsX.js (removed) 1.36 MB 🟢 -1.36 MB 🟢 -297 kB 🟢 -223 kB
assets/GraphView-Cx3CIf1M.js (new) 1.36 MB 🔴 +1.36 MB 🔴 +297 kB 🔴 +223 kB
assets/WidgetCompositor-CGhr2aRB.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.76 kB 🟢 -2.47 kB
assets/WidgetCompositor-DlgHz22W.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.76 kB 🔴 +2.45 kB

Status: 2 added / 2 removed / 1 unchanged

Views & Navigation — 124 kB (baseline 124 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-CpUBF0wM.js (removed) 25 kB 🟢 -25 kB 🟢 -6.25 kB 🟢 -5.52 kB
assets/CloudSurveyView-DKAxrc69.js (new) 25 kB 🔴 +25 kB 🔴 +6.24 kB 🔴 +5.52 kB
assets/CloudLayoutView-CboIsJM_.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.57 kB 🟢 -5.75 kB
assets/CloudLayoutView-Cwb7i2P6.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.57 kB 🔴 +5.74 kB
assets/UserCheckView-CIUyYlP6.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.91 kB
assets/UserCheckView-CVfmzRtO.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/CloudLoginView-BqA79EnM.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.26 kB
assets/CloudLoginView-DSfAeME1.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.55 kB 🔴 +2.26 kB
assets/useCloudAuthPage-BxOrLlfu.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.52 kB 🔴 +2.2 kB
assets/useCloudAuthPage-CVvCb5nP.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.21 kB
assets/CloudSignupView-BKQ07BSJ.js (new) 6.96 kB 🔴 +6.96 kB 🔴 +2.28 kB 🔴 +2 kB
assets/CloudSignupView-rU34rGLo.js (removed) 6.96 kB 🟢 -6.96 kB 🟢 -2.28 kB 🟢 -2 kB
assets/WidgetTextPreview-BKCk_AFq.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/WidgetTextPreview-DPSoMJDh.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.89 kB
assets/CloudSubscriptionRedirectView-DVHlej_l.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.96 kB
assets/CloudSubscriptionRedirectView-k0QmnZwq.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.97 kB
assets/UserSelectView-DpwyEoOp.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/UserSelectView-IsmRafnX.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-BXV5EM5m.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudForgotPasswordView-NZOzBEvG.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudAuthTimeoutView-chkQV7CJ.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/CloudAuthTimeoutView-D_EIOsvE.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.34 kB
assets/OAuthLayoutView-BQxo2Pdn.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -699 B 🟢 -599 B
assets/OAuthLayoutView-DGCQlDxi.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +700 B 🔴 +587 B
assets/WidgetTextPreview-CkTzTbcP.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +91 B
assets/WidgetTextPreview-oEpFVX9H.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -89 B

Status: 13 added / 13 removed / 4 unchanged

Panels & Settings — 565 kB (baseline 565 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-B77b-xQ-.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.95 kB 🔴 +8.8 kB
assets/KeybindingPanel-CsKWDl0e.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.95 kB 🟢 -8.8 kB
assets/SecretsPanel-BM4l_B2V.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.88 kB 🟢 -6.9 kB
assets/SecretsPanel-zRTJbeNh.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.87 kB 🔴 +6.92 kB
assets/CreditsPanel-Dd8ZAdHu.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.21 kB 🟢 -2.81 kB
assets/CreditsPanel-x04EtG4K.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.21 kB 🔴 +2.81 kB
assets/AboutPanel-Bqp2nZe2.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.03 kB 🟢 -2.72 kB
assets/AboutPanel-f8cHxrtG.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.03 kB 🔴 +2.72 kB
assets/ExtensionPanel-Bosm00aN.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.23 kB
assets/ExtensionPanel-DzgZzu1F.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.23 kB
assets/ServerConfigPanel-Bw6huYQM.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/ServerConfigPanel-DBdZgZNe.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/UserPanel-Cp4rs2jB.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/UserPanel-DHkWJxix.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/refreshRemoteConfig-CvNqWwGV.js (removed) 3.44 kB 🟢 -3.44 kB 🟢 -1.33 kB 🟢 -1.17 kB
assets/refreshRemoteConfig-K46N7hGe.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.33 kB 🔴 +1.17 kB
assets/cloudRemoteConfig-BLv6YerJ.js (new) 951 B 🔴 +951 B 🔴 +516 B 🔴 +422 B
assets/cloudRemoteConfig-JNUHYBGv.js (removed) 951 B 🟢 -951 B 🟢 -516 B 🟢 -421 B
assets/refreshRemoteConfig-BGDWgf8c.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -85 B
assets/refreshRemoteConfig-Dj8ByqUO.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +83 B

Status: 10 added / 10 removed / 16 unchanged

User & Accounts — 27.7 kB (baseline 27.7 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-DMrDZ3hu.js (removed) 13.3 kB 🟢 -13.3 kB 🟢 -4.53 kB 🟢 -3.93 kB
assets/SignUpForm-sirlXTlU.js (new) 13.3 kB 🔴 +13.3 kB 🔴 +4.52 kB 🔴 +3.93 kB
assets/auth-C9w1HGIb.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/auth-DgCLo6dw.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.29 kB 🔴 +1.1 kB
assets/UpdatePasswordContent-D0oRuFRa.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +842 B 🔴 +743 B
assets/UpdatePasswordContent-GqR6eQ_Y.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -843 B 🟢 -736 B
assets/authStore-DiAWYh_F.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -105 B
assets/authStore-Dzvb0FBT.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +104 B
assets/workspaceAuthStore-BBaCby1L.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -110 B
assets/workspaceAuthStore-CZvYTVYs.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +110 B
assets/auth-8KcNAkXG.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +84 B
assets/auth-DZ7cxJRr.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -80 B

Status: 6 added / 6 removed / 5 unchanged

Editors & Dialogs — 125 kB (baseline 125 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-B4wfozUa.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-BXNGyFEI.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/useShareDialog-BIhxO3Wb.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.04 kB
assets/useShareDialog-Bwxj54Gz.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.69 kB 🔴 +5.04 kB
assets/feedbackDialog-D3hPG7T_.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/feedbackDialog-fGBcOs3j.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/useRangeEditor-B44YGUGq.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.03 kB
assets/useRangeEditor-C1F3R6xn.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.05 kB
assets/useLayerEditor-B4KJONhC.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -491 B 🟢 -405 B
assets/useLayerEditor-CRCWTI5P.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +492 B 🔴 +407 B
assets/ComfyHubPublishDialog-Bq7kQkxO.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -90 B
assets/ComfyHubPublishDialog-GzBYqMF4.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +90 B
assets/useSubscriptionDialog-CM2a5W3m.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -98 B
assets/useSubscriptionDialog-DyG7XDxt.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +96 B

Status: 7 added / 7 removed / 1 unchanged

UI Components — 67.1 kB (baseline 67.1 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BaNhtzmm.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.52 kB
assets/ComfyQueueButton-DzrVk9p8.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.97 kB 🔴 +3.53 kB
assets/useTerminalTabs-ag8ZbNwc.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.27 kB
assets/useTerminalTabs-BZAkXup2.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.27 kB
assets/InviteMembersForm-BACp7QqT.js (new) 8.23 kB 🔴 +8.23 kB 🔴 +2.74 kB 🔴 +2.43 kB
assets/InviteMembersForm-CUxbmZzj.js (removed) 8.23 kB 🟢 -8.23 kB 🟢 -2.74 kB 🟢 -2.43 kB
assets/SubscribeButton-CLyzBVkw.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -969 B 🟢 -845 B
assets/SubscribeButton-Cxpxqy5_.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +969 B 🔴 +849 B
assets/cloudFeedbackTopbarButton-BTrCTxly.js (new) 705 B 🔴 +705 B 🔴 +421 B 🔴 +359 B
assets/cloudFeedbackTopbarButton-D0JLUR6z.js (removed) 705 B 🟢 -705 B 🟢 -422 B 🟢 -360 B
assets/ComfyQueueButton-But6f4IT.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +87 B
assets/ComfyQueueButton-DwTzbx_P.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -91 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.52 MB (baseline 3.52 MB) • 🔴 +95 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-CcRV9efO.js (new) 3.24 MB 🔴 +3.24 MB 🔴 +753 kB 🔴 +567 kB
assets/settingStore-Bg9LKhOI.js (removed) 3.24 MB 🟢 -3.24 MB 🟢 -753 kB 🟢 -567 kB
assets/load3dService-B25V5lnn.js (new) 132 kB 🔴 +132 kB 🔴 +29.3 kB 🔴 +24.6 kB
assets/load3dService-DDSTrPdf.js (removed) 132 kB 🟢 -132 kB 🟢 -29.3 kB 🟢 -24.6 kB
assets/api-CPFZ2JWc.js (removed) 98.4 kB 🟢 -98.4 kB 🟢 -27.3 kB 🟢 -23.4 kB
assets/api-sNt0fb5O.js (new) 98.4 kB 🔴 +98.4 kB 🔴 +27.3 kB 🔴 +23.4 kB
assets/workflowShareService-DimgAmSI.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-DQE2a52C.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/keybindingService-D_yHObxF.js (new) 6.89 kB 🔴 +6.89 kB 🔴 +1.73 kB 🔴 +1.49 kB
assets/keybindingService-Dr8g5urj.js (removed) 6.89 kB 🟢 -6.89 kB 🟢 -1.73 kB 🟢 -1.49 kB
assets/releaseStore-BaBVSbE2.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/releaseStore-DDnYsdZ6.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/systemStatsStore-B7qFnhJ1.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/systemStatsStore-ZgF5v2ls.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/userStore-BZ-d4rtZ.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -899 B 🟢 -795 B
assets/userStore-CefXBDNX.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +896 B 🔴 +795 B
assets/audioService-3p9RAwR9.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +830 B 🔴 +722 B
assets/audioService-B1bs6Wv5.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -831 B 🟢 -722 B
assets/dialogService-BtWS0kAE.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +81 B
assets/dialogService-gGpPXJXz.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -95 B
assets/releaseStore-B5nbjl6M.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +88 B
assets/releaseStore-CYc4X0Eh.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -83 B
assets/settingStore-B73gIVGm.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -90 B
assets/settingStore-BvRKiL9v.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +91 B
assets/assetsStore-Cwz-LtgK.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -86 B
assets/assetsStore-T566r-2Z.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +85 B
assets/api-5aWydnSJ.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-Cs2XJrQJ.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

Utilities & Hooks — 550 kB (baseline 550 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BvkpYHCo.js (removed) 236 kB 🟢 -236 kB 🟢 -53 kB 🟢 -43.2 kB
assets/useConflictDetection-Ddl4BOk9.js (new) 236 kB 🔴 +236 kB 🔴 +53 kB 🔴 +43.2 kB
assets/useLayerEditorSession-aKs-0ldY.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLayerEditorSession-JiNDhRcD.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLoad3d-BvRQ7B2X.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/useLoad3d-CBvuGYDi.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.14 kB
assets/useLoad3dViewer-CAyKRPCt.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.37 kB
assets/useLoad3dViewer-CY0wLRjV.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.37 kB
assets/useImageCrop-C4GQIHqw.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useImageCrop-JEwagOkV.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useDowngradeToPersonal-Cc_nYI--.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.73 kB 🟢 -2.35 kB
assets/useDowngradeToPersonal-rFrfWgz6.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.73 kB 🔴 +2.35 kB
assets/useFeatureFlags-C-rBj6fu.js (new) 6.98 kB 🔴 +6.98 kB 🔴 +2 kB 🔴 +1.71 kB
assets/useFeatureFlags-Dq9TSxZM.js (removed) 6.98 kB 🟢 -6.98 kB 🟢 -2 kB 🟢 -1.71 kB
assets/useCompositorLayers-3rDGa86E.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -897 B 🟢 -815 B
assets/useCompositorLayers-CnEoD9Fc.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +898 B 🔴 +800 B
assets/assetPreviewUtil-31Nc7MxG.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +967 B 🔴 +849 B
assets/assetPreviewUtil-CjEsmxqh.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -970 B 🟢 -846 B
assets/useUpstreamValue-DGtENp_v.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -758 B 🟢 -681 B
assets/useUpstreamValue-Hs1e8Eq0.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +758 B 🔴 +684 B
assets/useWorkspaceTierLabel-B41z0jHt.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +812 B 🔴 +694 B
assets/useWorkspaceTierLabel-CDfkl60B.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -813 B 🟢 -698 B
assets/subscriptionCheckoutUtil-CVDo58t7.js (new) 877 B 🔴 +877 B 🔴 +521 B 🔴 +431 B
assets/subscriptionCheckoutUtil-DrrYQ4Gf.js (removed) 877 B 🟢 -877 B 🟢 -521 B 🟢 -434 B
assets/useSessionCookie-D1N6p0Ss.js (removed) 652 B 🟢 -652 B 🟢 -338 B 🟢 -291 B
assets/useSessionCookie-Q9u7qZas.js (new) 652 B 🔴 +652 B 🔴 +334 B 🔴 +291 B
assets/useLoad3d-BrRidZh4.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +148 B
assets/useLoad3d-CorUzFbK.js (removed) 311 B 🟢 -311 B 🟢 -164 B 🟢 -147 B
assets/useSessionCookie-C54stvIh.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +78 B
assets/useSessionCookie-NeREBQM0.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -83 B
assets/useFeatureFlags-CMeZ-Gkq.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -93 B
assets/useFeatureFlags-CY7qHqXN.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +79 B
assets/useLoad3dViewer-BYXEecQi.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +83 B
assets/useLoad3dViewer-CLwOovP9.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -85 B
assets/useCurrentUser-C2OmN_UJ.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -80 B
assets/useCurrentUser-o7qBpBWB.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +82 B

Status: 18 added / 18 removed / 20 unchanged

Vendor & Third-Party — 16.8 MB (baseline 16.8 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 18 unchanged

Other — 14.2 MB (baseline 14.2 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BAjT_Hd5.js (removed) 115 kB 🟢 -115 kB 🟢 -29.7 kB 🟢 -25.1 kB
assets/core-DahbPA8t.js (new) 115 kB 🔴 +115 kB 🔴 +29.7 kB 🔴 +25.1 kB
assets/WidgetSelect-CjgUQppZ.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-CXtyBSZe.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/SubscriptionPanelContentWorkspace-CSAJqE4x.js (new) 80.9 kB 🔴 +80.9 kB 🔴 +15.9 kB 🔴 +13.7 kB
assets/SubscriptionPanelContentWorkspace-CSNzFOwi.js (removed) 80.9 kB 🟢 -80.9 kB 🟢 -15.9 kB 🟢 -13.7 kB
assets/Load3D-aqUrYq_g.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.97 kB
assets/Load3D-CVCZyWJo.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.98 kB
assets/WidgetVideoEdit-B8iXkum6.js (removed) 67.5 kB 🟢 -67.5 kB 🟢 -15.7 kB 🟢 -13.9 kB
assets/WidgetVideoEdit-DCOaYkM4.js (new) 67.5 kB 🔴 +67.5 kB 🔴 +15.7 kB 🔴 +13.9 kB
assets/SubscriptionTransitionPreviewWorkspace-Cfb8VVbf.js (removed) 66.5 kB 🟢 -66.5 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-LZp6QGwX.js (new) 66.5 kB 🔴 +66.5 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/WorkspaceSettingsPanelContent-BG6j2F91.js (new) 58.2 kB 🔴 +58.2 kB 🔴 +12.4 kB 🔴 +10.8 kB
assets/WorkspaceSettingsPanelContent-CzGRs9JE.js (removed) 58.2 kB 🟢 -58.2 kB 🟢 -12.4 kB 🟢 -10.8 kB
assets/Preview3d-BGZkuYr9.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.32 kB 🔴 +7.25 kB
assets/Preview3d-QYlGIi_T.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.32 kB 🟢 -7.24 kB
assets/main-CbhE8q7d.js (removed) 45.3 kB 🟢 -45.3 kB 🟢 -13.2 kB 🟢 -11.4 kB
assets/main-CtJBEQ-b.js (new) 45.3 kB 🔴 +45.3 kB 🔴 +13.2 kB 🔴 +11.4 kB
assets/SubscriptionRequiredDialogContentUnified-1XqQBWDA.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.39 kB 🔴 +8.2 kB
assets/SubscriptionRequiredDialogContentUnified-ej7dCeUN.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.39 kB 🟢 -8.19 kB
assets/LayerEditorContent-DkjqiEe-.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.62 kB 🟢 -8.42 kB
assets/LayerEditorContent-Do1xr5of.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.62 kB 🔴 +8.43 kB
assets/WidgetBoundingBoxes-BaoixYfV.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.12 kB
assets/WidgetBoundingBoxes-CZ2TlWwJ.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.13 kB
assets/WidgetPainter-DHKm3FsC.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.97 kB
assets/WidgetPainter-DljN6d6r.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.88 kB 🟢 -6.97 kB
assets/Load3dViewerContent-Dn5rASuG.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.29 kB 🟢 -5.45 kB
assets/Load3dViewerContent-UIjS9Wcc.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/SubscriptionRequiredDialogContent-BLojfJk2.js (removed) 26.9 kB 🟢 -26.9 kB 🟢 -6.36 kB 🟢 -5.6 kB
assets/SubscriptionRequiredDialogContent-BnNI4qKC.js (new) 26.9 kB 🔴 +26.9 kB 🔴 +6.36 kB 🔴 +5.61 kB
assets/SubscriptionRequiredDialogContentWorkspace-CaXnCMHH.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.81 kB 🟢 -5.12 kB
assets/SubscriptionRequiredDialogContentWorkspace-CRThTI0q.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.81 kB 🔴 +5.11 kB
assets/CreditsTile-CIAlrSHU.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.65 kB 🟢 -5.84 kB
assets/CreditsTile-DeSK6s84.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.65 kB 🔴 +5.83 kB
assets/load3d-CnmeKnHZ.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.67 kB
assets/load3d-DMQHWvEn.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.4 kB 🔴 +4.67 kB
assets/CurrentUserPopoverWorkspace-BKQDePtD.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -4.94 kB 🟢 -4.4 kB
assets/CurrentUserPopoverWorkspace-COUBqytc.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +4.94 kB 🔴 +4.41 kB
assets/SignInContent-CuN8TLJc.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.18 kB 🟢 -4.54 kB
assets/SignInContent-QM41mI2V.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.18 kB 🔴 +4.53 kB
assets/WidgetRecordAudio-BtniPt81.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/WidgetRecordAudio-UOVhCQae.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetInputNumber-BtYmUsBE.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetInputNumber-Dh0LSYKh.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetRange-B_viIEnl.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.12 kB
assets/WidgetRange-CZh3BnPj.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/WaveAudioPlayer-BuzJNJa0.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.05 kB
assets/WaveAudioPlayer-CS-4M3y3.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.04 kB
assets/WidgetCurve-BhdNDx9q.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.48 kB 🟢 -3.14 kB
assets/WidgetCurve-CD8fzRyT.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.48 kB 🔴 +3.15 kB
assets/TeamWorkspacesDialogContent-C5Sq-yIF.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/TeamWorkspacesDialogContent-DlwVV8S4.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/onboardingCloudRoutes-C7GMts3C.js (new) 9.39 kB 🔴 +9.39 kB 🔴 +2.82 kB 🔴 +2.41 kB
assets/onboardingCloudRoutes-CU4D253F.js (removed) 9.39 kB 🟢 -9.39 kB 🟢 -2.83 kB 🟢 -2.42 kB
assets/Load3DConfiguration-Ccv2rofa.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/Load3DConfiguration-I45HoJru.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/WidgetImageCrop-BDJCbF5V.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.66 kB 🔴 +2.34 kB
assets/WidgetImageCrop-BnitILKB.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.66 kB 🟢 -2.34 kB
assets/SetMemberCreditLimitDialogContent-ByvVEVLv.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/SetMemberCreditLimitDialogContent-Ddn93j4v.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/nodeTemplates-BsxAUhbq.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.86 kB 🟢 -2.5 kB
assets/nodeTemplates-D7x4qZLb.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.85 kB 🔴 +2.51 kB
assets/NightlySurveyController-B3ZhmpJN.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.25 kB
assets/NightlySurveyController-K75x5SA7.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/CloudRunButtonWrapper-DJPCH1CE.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.18 kB 🔴 +1.91 kB
assets/CloudRunButtonWrapper-fNPdnjd2.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.18 kB 🟢 -1.91 kB
assets/missingModelMetadata-Dnb09_Dy.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -2.21 kB 🟢 -1.93 kB
assets/missingModelMetadata-gp2WJGOJ.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +2.21 kB 🔴 +1.93 kB
assets/WidgetWithControl-b1YVY4nf.js (removed) 6.44 kB 🟢 -6.44 kB 🟢 -2.63 kB 🟢 -2.31 kB
assets/WidgetWithControl-DeG-NfgA.js (new) 6.44 kB 🔴 +6.44 kB 🔴 +2.62 kB 🔴 +2.3 kB
assets/CancelSubscriptionDialogContent-B3P70XpN.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/CancelSubscriptionDialogContent-DydUbCYq.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/load3dPreviewExtensions-Bppz1PDq.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/load3dPreviewExtensions-m_Ic8UlW.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/launchCancellationFlow-BepQgQ2j.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-Bqyfq8kF.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.57 kB
assets/CreateWorkspaceDialogContent-B5CJuxmU.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-BpCsVPEa.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/ChangeMemberRoleDialogContent-DGgfYeHy.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/ChangeMemberRoleDialogContent-DoW7jfuC.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/InviteMemberDialogContent-C5GOQE4L.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.65 kB 🔴 +1.44 kB
assets/InviteMemberDialogContent-DgyUf1Kc.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/EditWorkspaceDialogContent-4f8J7F2Z.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.52 kB
assets/EditWorkspaceDialogContent-veevGAWk.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/WidgetTextarea-6ejrXR3_.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/WidgetTextarea-D5hn4Fa0.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.64 kB
assets/saveMesh-Dbj_7-RD.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.35 kB
assets/saveMesh-JarbMRhS.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.35 kB
assets/WorkspacePanelContent-BqhG6jcV.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.63 kB 🟢 -1.45 kB
assets/WorkspacePanelContent-DiJgED0L.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.63 kB 🔴 +1.44 kB
assets/ValueControlPopover-CMZSMkem.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-eUAeHcys.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/DeleteWorkspaceDialogContent-DaJwoa5B.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/DeleteWorkspaceDialogContent-DhbOX7C0.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/RemoveMemberDialogContent-CaG6Bv6Z.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/RemoveMemberDialogContent-CX9kbYCt.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.39 kB 🟢 -1.23 kB
assets/RevokeInviteDialogContent-biwSNdRQ.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/RevokeInviteDialogContent-DQ1Ew2PF.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.22 kB
assets/LeaveWorkspaceDialogContent-BvYNtT1Z.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-CqLoht3R.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.21 kB
assets/InviteMemberUpsellDialogContent-B5E0GVcf.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-CWfwzcFD.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/workspaceCheckoutTelemetry-CKhLNz6S.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.32 kB
assets/workspaceCheckoutTelemetry-GATMb7oB.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.32 kB
assets/GlobalToast-BZPwoSlg.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/GlobalToast-Cyrd-CRq.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.16 kB
assets/Media3DTop-Be5XSzYa.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/Media3DTop-Ibz5CNXi.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/load3dAdvanced-ADKAo0x1.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +956 B
assets/load3dAdvanced-BOvruQOd.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -955 B
assets/SubscribeToRun-BQaL6fk9.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +909 B
assets/SubscribeToRun-BZRAfd3Q.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -909 B
assets/MediaAudioTop-B6N4w2Im.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -807 B 🟢 -668 B
assets/MediaAudioTop-DMO6fiAq.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +669 B
assets/cloudSessionCookie-CYyXf6y9.js (new) 933 B 🔴 +933 B 🔴 +432 B 🔴 +376 B
assets/cloudSessionCookie-DdVsPK8i.js (removed) 933 B 🟢 -933 B 🟢 -433 B 🟢 -378 B
assets/cloudBadges-CiHTuSf6.js (removed) 922 B 🟢 -922 B 🟢 -514 B 🟢 -453 B
assets/cloudBadges-vE47NZk9.js (new) 922 B 🔴 +922 B 🔴 +514 B 🔴 +436 B
assets/Load3DAdvanced-BE-VhzNv.js (removed) 761 B 🟢 -761 B 🟢 -424 B 🟢 -359 B
assets/Load3DAdvanced-CgL61F5P.js (new) 761 B 🔴 +761 B 🔴 +422 B 🔴 +358 B
assets/nightlyBadges-D98tp2Y5.js (removed) 411 B 🟢 -411 B 🟢 -273 B 🟢 -230 B
assets/nightlyBadges-DwNL_EHk.js (new) 411 B 🔴 +411 B 🔴 +272 B 🔴 +268 B
assets/Load3dViewerContent-BvMLtvM7.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +106 B
assets/Load3dViewerContent-DvEVGR9o.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -93 B
assets/missingModelMetadata-CYoAgrDX.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +104 B
assets/missingModelMetadata-CywXlzyU.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -103 B
assets/Load3DAdvanced-6UX-ZrV0.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -91 B
assets/Load3DAdvanced-BHYjml8o.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +89 B
assets/WidgetLegacy-DyAmi_Dc.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -106 B
assets/WidgetLegacy-iz5epxhl.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +105 B
assets/workflowDraftStoreV2-DuQTuUJn.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -109 B
assets/workflowDraftStoreV2-ylY8nWye.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +108 B
assets/Load3D-2drTM3-a.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -85 B
assets/Load3D-ChU2Hcyc.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +85 B
assets/changeTracker-BVyb8t-A.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +86 B
assets/changeTracker-ChpQJxtA.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -87 B

Status: 68 added / 68 removed / 217 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.5 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.9 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.3 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.9 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.3 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.9 MB heap
subgraph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.0 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 142ms TBT · 83.3 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.7 MB heap
vue-large-graph-idle: · 56.2 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.5 MB heap
vue-large-graph-pan: · 56.2 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 9ms TBT · 165.2 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.4 MB heap

⚠️ 6 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 488ms 590ms +21% ⚠️ z=6.3
canvas-zoom-sweep: task duration 371ms 408ms +10% ⚠️ z=3.5
large-graph-pan: task duration 1143ms 1217ms +6% ⚠️ z=3.1
minimap-idle: task duration 599ms 664ms +11% ⚠️ z=2.9
subgraph-dom-widget-clipping: task duration 404ms 424ms +5% ⚠️ z=2.5
subgraph-idle: task duration 443ms 490ms +11% ⚠️ z=3.8
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.9
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 8ms -3% z=-3.7
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 8 -17% z=-6.5
canvas-idle: task duration 488ms 590ms +21% ⚠️ z=6.3
canvas-idle: script duration 8ms 11ms +28% z=-6.5
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.5 MB 66.5 MB -0%
canvas-idle: DOM nodes 18 15 -17% z=-5.9
canvas-idle: event listeners 4 5 +25% z=-1.4
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=0.2
canvas-mouse-sweep: p95 frame time 17ms 17ms -1%
canvas-mouse-sweep: layout duration 4ms 4ms -10% z=0.2
canvas-mouse-sweep: style recalc duration 42ms 39ms -9% z=-1.3
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 78 74 -6% z=-2.2
canvas-mouse-sweep: task duration 928ms 898ms -3% z=0.6
canvas-mouse-sweep: script duration 109ms 119ms +9% z=-2.5
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 46.2 MB 53.5 MB +16%
canvas-mouse-sweep: DOM nodes -281 -114 -60% z=-68.0
canvas-mouse-sweep: event listeners -153 -77 -50% z=-20.5
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-1.1
canvas-zoom-sweep: p95 frame time 17ms 17ms +1%
canvas-zoom-sweep: layout duration 1ms 1ms -7% z=-0.2
canvas-zoom-sweep: style recalc duration 16ms 19ms +19% z=-0.2
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +2% z=0.5
canvas-zoom-sweep: task duration 371ms 408ms +10% ⚠️ z=3.5
canvas-zoom-sweep: script duration 10ms 12ms +20% z=-5.1
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 69.2 MB 69.3 MB +0%
canvas-zoom-sweep: DOM nodes 77 78 +1% z=-2.2
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.2
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 7ms +4% z=-3.5
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 -5% z=-5.2
dom-widget-clipping: task duration 375ms 381ms +2% z=1.0
dom-widget-clipping: script duration 55ms 57ms +3% z=-3.2
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 51.0 MB 50.9 MB -0%
dom-widget-clipping: DOM nodes 18 17 -6% z=-3.6
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 7ms 9ms +20% z=-3.4
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 10 +6% z=-6.7
large-graph-idle: task duration 606ms 646ms +7% z=1.9
large-graph-idle: script duration 15ms 17ms +17% z=-8.1
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 69.5 MB 68.3 MB -2%
large-graph-idle: DOM nodes -281 -282 +0% z=-339.3
large-graph-idle: event listeners -149 -169 +13% z=-32.0
large-graph-pan: avg frame time 17ms 17ms +0% z=0.8
large-graph-pan: p95 frame time 17ms 17ms -0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 14ms 14ms -0% z=-4.6
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 68 +0% z=-2.4
large-graph-pan: task duration 1143ms 1217ms +6% ⚠️ z=3.1
large-graph-pan: script duration 306ms 332ms +9% z=-3.8
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 65.5 MB 62.9 MB -4%
large-graph-pan: DOM nodes -284 -287 +1% z=-185.2
large-graph-pan: event listeners -149 -168 +13% z=-208.8
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 8ms 7ms -10%
large-graph-zoom: style recalc duration 15ms 14ms -3%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 65 -1%
large-graph-zoom: task duration 1387ms 1380ms -1%
large-graph-zoom: script duration 383ms 387ms +1%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 55.7 MB 65.5 MB +18%
large-graph-zoom: DOM nodes -287 -139 -52%
large-graph-zoom: event listeners -153 -75 -51%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 6ms 7ms +23% z=-2.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 7 8 +7% z=-3.0
minimap-idle: task duration 599ms 664ms +11% ⚠️ z=2.9
minimap-idle: script duration 16ms 17ms +6% z=-8.2
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 70.5 MB 68.3 MB -3%
minimap-idle: DOM nodes -284 -286 +1% z=-222.7
minimap-idle: event listeners -149 -169 +13% z=-262.9
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 11ms +5% z=-1.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 -1% z=-2.5
subgraph-dom-widget-clipping: task duration 404ms 424ms +5% ⚠️ z=2.5
subgraph-dom-widget-clipping: script duration 122ms 122ms +0% z=-1.0
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 51.6 MB 51.9 MB +0%
subgraph-dom-widget-clipping: DOM nodes 20 19 -5% z=-2.8
subgraph-dom-widget-clipping: event listeners 6 8 +33% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms +1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 7ms 9ms +33% z=-2.0
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 10 +6% z=-2.1
subgraph-idle: task duration 443ms 490ms +11% ⚠️ z=3.8
subgraph-idle: script duration 6ms 8ms +28% z=-4.6
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 66.7 MB 66.6 MB -0%
subgraph-idle: DOM nodes 18 19 +6% z=-1.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.1
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 4ms +3% z=-0.8
subgraph-mouse-sweep: style recalc duration 33ms 39ms +16% z=-1.2
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 77 +1% z=-1.9
subgraph-mouse-sweep: task duration 738ms 789ms +7% z=0.3
subgraph-mouse-sweep: script duration 80ms 87ms +9% z=-2.1
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 57.9 MB 58.0 MB +0%
subgraph-mouse-sweep: DOM nodes 63 64 +2% z=-1.3
subgraph-mouse-sweep: event listeners 4 4 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms -0%
subgraph-transition-enter: layout duration 11ms 14ms +19%
subgraph-transition-enter: style recalc duration 30ms 32ms +9%
subgraph-transition-enter: layout count 14 15 +7%
subgraph-transition-enter: style recalc count 19 20 +5%
subgraph-transition-enter: task duration 926ms 1057ms +14%
subgraph-transition-enter: script duration 17ms 20ms +22%
subgraph-transition-enter: TBT 128ms 142ms +11%
subgraph-transition-enter: heap used 73.3 MB 83.3 MB +14%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2375 2375 +0%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 40ms 38ms -5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 +0%
viewport-pan-sweep: task duration 4028ms 4427ms +10%
viewport-pan-sweep: script duration 940ms 1117ms +19%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 72.7 MB 71.7 MB -1%
viewport-pan-sweep: DOM nodes -283 -282 -1%
viewport-pan-sweep: event listeners -133 -136 +2%
vue-large-graph-idle: avg frame time 18ms 18ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 17535ms 16550ms -6%
vue-large-graph-idle: script duration 126ms 121ms -4%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 160.3 MB 162.5 MB +1%
vue-large-graph-idle: DOM nodes -8312 -8313 +0%
vue-large-graph-idle: event listeners -16389 -16394 +0%
vue-large-graph-pan: avg frame time 18ms 18ms -0%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 20ms 18ms -11%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 175 178 +1%
vue-large-graph-pan: task duration 21410ms 20004ms -7%
vue-large-graph-pan: script duration 408ms 396ms -3%
vue-large-graph-pan: TBT 50ms 9ms -82%
vue-large-graph-pan: heap used 175.4 MB 165.2 MB -6%
vue-large-graph-pan: DOM nodes -8312 -8313 +0%
vue-large-graph-pan: event listeners -16383 -16387 +0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms -0%
workflow-execution: layout duration 1ms 1ms +8% z=-4.0
workflow-execution: style recalc duration 24ms 22ms -9% z=-1.0
workflow-execution: layout count 3 3 +0% z=-3.6
workflow-execution: style recalc count 11 14 +27% z=-1.9
workflow-execution: task duration 116ms 118ms +1% z=-0.5
workflow-execution: script duration 7ms 8ms +22% z=-7.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 65.5 MB 65.4 MB -0%
workflow-execution: DOM nodes 121 126 +4% z=-5.0
workflow-execution: event listeners 97 98 +1% z=10.6
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-08-16T06:48:41.138Z",
  "gitSha": "81cb9fc0027caa410a3c2d70403209dd04e228c8",
  "branch": "matt/fe-6860-root-graph-shallow-ref",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2031.4480000000117,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.678,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 575.373,
      "heapDeltaBytes": 5019224,
      "heapUsedBytes": 69731040,
      "domNodes": 14,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 9.088,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2036.2400000000207,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.441,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 605.46,
      "heapDeltaBytes": 5019456,
      "heapUsedBytes": 69679708,
      "domNodes": 16,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 12.386000000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1872.9700000000093,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 39.053,
      "layouts": 12,
      "layoutDurationMs": 3.652,
      "taskDurationMs": 902.1189999999999,
      "heapDeltaBytes": -17040652,
      "heapUsedBytes": 47651752,
      "domNodes": -282,
      "jsHeapTotalBytes": 23040000,
      "scriptDurationMs": 118.221,
      "eventListeners": -158,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1837.0409999999993,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 38.313,
      "layouts": 12,
      "layoutDurationMs": 3.6560000000000006,
      "taskDurationMs": 894.3420000000001,
      "heapDeltaBytes": -237384,
      "heapUsedBytes": 64567328,
      "domNodes": 55,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 120.28499999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1772.086999999999,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.409000000000002,
      "layouts": 6,
      "layoutDurationMs": 0.6739999999999999,
      "taskDurationMs": 388.66200000000003,
      "heapDeltaBytes": 7954800,
      "heapUsedBytes": 72637864,
      "domNodes": 78,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 10.458999999999998,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1754.560999999967,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 19.167000000000005,
      "layouts": 6,
      "layoutDurationMs": 0.593,
      "taskDurationMs": 427.05800000000005,
      "heapDeltaBytes": 7957420,
      "heapUsedBytes": 72710128,
      "domNodes": 77,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 13.3,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 555.7459999999992,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.084999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.142,
      "heapDeltaBytes": -11564540,
      "heapUsedBytes": 53170400,
      "domNodes": 18,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 54.70099999999999,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 603.5960000000387,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.096,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 394.747,
      "heapDeltaBytes": -11202144,
      "heapUsedBytes": 53629740,
      "domNodes": 16,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 60.058,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2037.2959999999694,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.939000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 582.152,
      "heapDeltaBytes": 12712676,
      "heapUsedBytes": 72169644,
      "domNodes": -282,
      "jsHeapTotalBytes": 2195456,
      "scriptDurationMs": 15.341000000000005,
      "eventListeners": -154,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2042.4460000000408,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.340000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 710.804,
      "heapDeltaBytes": 11390388,
      "heapUsedBytes": 71096284,
      "domNodes": -282,
      "jsHeapTotalBytes": 3244032,
      "scriptDurationMs": 18.522999999999996,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2136.1700000000496,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 12.995999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1171.972,
      "heapDeltaBytes": 10302704,
      "heapUsedBytes": 71537232,
      "domNodes": -286,
      "jsHeapTotalBytes": 3436544,
      "scriptDurationMs": 325.00800000000004,
      "eventListeners": -152,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2231.706000000031,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 14.187000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1261.344,
      "heapDeltaBytes": -797640,
      "heapUsedBytes": 60458348,
      "domNodes": -287,
      "jsHeapTotalBytes": 3698688,
      "scriptDurationMs": 339.35,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3198.5599999999863,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 13.984,
      "layouts": 60,
      "layoutDurationMs": 7.1579999999999995,
      "taskDurationMs": 1376.8960000000002,
      "heapDeltaBytes": -4326632,
      "heapUsedBytes": 58313848,
      "domNodes": -288,
      "jsHeapTotalBytes": 4292608,
      "scriptDurationMs": 385.533,
      "eventListeners": -158,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3217.3119999999926,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 14.328999999999999,
      "layouts": 60,
      "layoutDurationMs": 7.431,
      "taskDurationMs": 1382.307,
      "heapDeltaBytes": 16863576,
      "heapUsedBytes": 79126936,
      "domNodes": 10,
      "jsHeapTotalBytes": 4718592,
      "scriptDurationMs": 388.863,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2029.2460000000005,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.932999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 610.353,
      "heapDeltaBytes": 13112052,
      "heapUsedBytes": 73736624,
      "domNodes": -285,
      "jsHeapTotalBytes": 3244032,
      "scriptDurationMs": 14.703000000000001,
      "eventListeners": -154,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2014.8629999999912,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.733000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 716.9540000000001,
      "heapDeltaBytes": 8559436,
      "heapUsedBytes": 69525032,
      "domNodes": -286,
      "jsHeapTotalBytes": 3506176,
      "scriptDurationMs": 18.375000000000004,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 611.0059999999748,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.262000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 417.479,
      "heapDeltaBytes": -10399084,
      "heapUsedBytes": 54456516,
      "domNodes": 18,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 122.05799999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 644.504999999981,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.934000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 430.07599999999996,
      "heapDeltaBytes": -10726752,
      "heapUsedBytes": 54294640,
      "domNodes": 20,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 121.75599999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2006.21000000001,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.784000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 437.01500000000004,
      "heapDeltaBytes": 5209212,
      "heapUsedBytes": 69993684,
      "domNodes": 20,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 6.155999999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2004.8949999999195,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.929999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 542.546,
      "heapDeltaBytes": 4871068,
      "heapUsedBytes": 69650248,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 9.86,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1730.6459999999788,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 36.90599999999999,
      "layouts": 16,
      "layoutDurationMs": 4.186,
      "taskDurationMs": 740.95,
      "heapDeltaBytes": -3849656,
      "heapUsedBytes": 60962104,
      "domNodes": 64,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 80.839,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1722.846000000004,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 40.349000000000004,
      "layouts": 16,
      "layoutDurationMs": 4.692,
      "taskDurationMs": 837.4639999999999,
      "heapDeltaBytes": -4068396,
      "heapUsedBytes": 60704292,
      "domNodes": 64,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 92.80300000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1431.8619999999669,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 32.457,
      "layouts": 15,
      "layoutDurationMs": 13.544999999999998,
      "taskDurationMs": 1057.2910000000002,
      "heapDeltaBytes": -446480,
      "heapUsedBytes": 87347040,
      "domNodes": 13673,
      "jsHeapTotalBytes": 9699328,
      "scriptDurationMs": 20.211999999999993,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 142,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8194.389000000001,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 37.13999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4133.659,
      "heapDeltaBytes": 14800568,
      "heapUsedBytes": 76262968,
      "domNodes": -281,
      "jsHeapTotalBytes": 4747264,
      "scriptDurationMs": 1023.2719999999999,
      "eventListeners": -138,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 9180.79399999999,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 38.111,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4719.7300000000005,
      "heapDeltaBytes": 13384668,
      "heapUsedBytes": 74101812,
      "domNodes": -282,
      "jsHeapTotalBytes": 4222976,
      "scriptDurationMs": 1210.6729999999998,
      "eventListeners": -134,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17062.471000000016,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16472.562,
      "heapDeltaBytes": -39947428,
      "heapUsedBytes": 170607660,
      "domNodes": -8313,
      "jsHeapTotalBytes": -10166272,
      "scriptDurationMs": 116.89199999999998,
      "eventListeners": -16394,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17610.35299999992,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16626.979,
      "heapDeltaBytes": -40052644,
      "heapUsedBytes": 170094716,
      "domNodes": -8313,
      "jsHeapTotalBytes": -6496256,
      "scriptDurationMs": 125.233,
      "eventListeners": -16394,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20570.769999999982,
      "styleRecalcs": 177,
      "styleRecalcDurationMs": 18.303999999999988,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19936.860000000004,
      "heapDeltaBytes": -33455740,
      "heapUsedBytes": 163954676,
      "domNodes": -8313,
      "jsHeapTotalBytes": -11440128,
      "scriptDurationMs": 400.15600000000006,
      "eventListeners": -16386,
      "totalBlockingTimeMs": 16,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20688.222999999994,
      "styleRecalcs": 178,
      "styleRecalcDurationMs": 17.41900000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20070.660999999996,
      "heapDeltaBytes": -14888912,
      "heapUsedBytes": 182572816,
      "domNodes": -8313,
      "jsHeapTotalBytes": -10727424,
      "scriptDurationMs": 392.54100000000005,
      "eventListeners": -16388,
      "totalBlockingTimeMs": 2,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 463.99500000001126,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 23.601000000000003,
      "layouts": 3,
      "layoutDurationMs": 1.2469999999999999,
      "taskDurationMs": 122.342,
      "heapDeltaBytes": 4993424,
      "heapUsedBytes": 68573232,
      "domNodes": 128,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 8.902999999999999,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 473.2539999999972,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 20.498999999999995,
      "layouts": 3,
      "layoutDurationMs": 0.694,
      "taskDurationMs": 112.89500000000001,
      "heapDeltaBytes": 4927208,
      "heapUsedBytes": 68663256,
      "domNodes": 123,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 7.369000000000001,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    }
  ]
}

@mattmillerai mattmillerai added the cursor-review Trigger multi-model Cursor agent review on this PR label Aug 9, 2026
@coderabbitai

coderabbitai Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: d64166ec-5608-4632-90b8-4d393891bc5d

📥 Commits

Reviewing files that changed from the base of the PR and between 2359c39 and 909788e.

📒 Files selected for processing (6)
  • src/extensions/core/customWidgets.clone.test.ts
  • src/extensions/core/customWidgets.subgraphPromotion.test.ts
  • src/scripts/__tests__/appTestUtils.ts
  • src/scripts/app.test.ts
  • src/scripts/app.ts
  • src/scripts/rootGraphReadiness.test.ts

Included review availability: 0 reviews are currently available. Based on recent review activity, included reviews refill at 1 per hour.


📝 Walkthrough

Walkthrough

ComfyApp now stores the root graph in a reactive shallowRef. Shared test helpers replace reflective graph mutation. App and widget tests use the helpers, and new tests verify readiness reactivity and deferred event-listener binding.

Changes

Root graph reactivity

Layer / File(s) Summary
Reactive root graph state
src/scripts/app.ts, src/scripts/rootGraphReadiness.test.ts
ComfyApp uses a shallowRef for the root graph. Accessors and setup read or write its value. Tests verify readiness and deferred event listeners.
Shared graph test setup
src/scripts/__tests__/appTestUtils.ts, src/scripts/app.test.ts
Shared helpers set or retrieve the root graph. App tests use them for graph setup and typed partial graph mocks.
Widget test graph migration
src/extensions/core/customWidgets.*.test.ts
Widget tests use shared helpers to save, assign, and restore root graph state.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Merge Risk: ⚪ Minimal · up to 90978

This localized change makes root-graph readiness reactive while preserving existing getter behavior and has passing checks and targeted tests; no actionable merge-blocking risk remains.

Sequence Diagram(s)

sequenceDiagram
  participant ComfyApp
  participant rootGraphRef
  participant LGraph
  participant Tests
  ComfyApp->>rootGraphRef: assign root graph
  rootGraphRef-->>ComfyApp: update readiness state
  Tests->>ComfyApp: observe isGraphReady
  Tests->>LGraph: register configured listener
  LGraph-->>Tests: emit configured event
  Tests->>rootGraphRef: replace root graph
  rootGraphRef-->>LGraph: rebind configured listener
Loading

Possibly related PRs

Suggested labels: risk:R2

Suggested reviewers: christian-byrne


Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❓ Inconclusive The provided context lists changed files and the description, but does not provide the PR title or commit subjects required to assess the bug-fix signal. Provide the PR title and all commit subjects, then re-evaluate whether the explicit failure conditions are all satisfied.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main change: making ComfyApp root-graph readiness reactive.
Description check ✅ Passed The description includes the required summary, changes, review focus, testing details, and breaking-change information.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Adr Compliance For Entity/Litegraph Changes ✅ Passed The changed custom widget/subgraph tests are graph-related, but the metadata shows no entity mutation, god-object growth, ECS component methods, or extension callback changes.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch matt/fe-6860-root-graph-shallow-ref

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/scripts/rootGraphReadiness.test.ts`:
- Around line 42-53: Update the test around useEventListener to first assign an
initial LGraph, then replace it with a second graph through setRootGraph;
dispatch configured on both graphs and assert onConfigured is called only once
for the replacement graph, covering rebinding after rootGraphRef changes.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 77388b8c-0cea-4ca0-9d50-a9af0993c32e

📥 Commits

Reviewing files that changed from the base of the PR and between a8f73de and 7ef0059.

📒 Files selected for processing (6)
  • src/extensions/core/customWidgets.clone.test.ts
  • src/extensions/core/customWidgets.subgraphPromotion.test.ts
  • src/scripts/__tests__/appTestUtils.ts
  • src/scripts/app.test.ts
  • src/scripts/app.ts
  • src/scripts/rootGraphReadiness.test.ts

Comment thread src/scripts/rootGraphReadiness.test.ts

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔍 Cursor Review — Consolidated panel

Triggered by @mattmillerai.

⚠️ Panel did not produce any findings.

Every reviewer in the matrix failed to contribute — see the panel summary for which cells errored, and the run logs for the underlying cause.

Panel: 0/8 reviewers contributed findings.

Reviewers that did not contribute: claude-opus-5-thinking-max:adversarial (error), gemini-3.1-pro:adversarial (error), gpt-5.6-sol-max:adversarial (error), kimi-k3-max:adversarial (error), claude-opus-5-thinking-max:edge-case (error), gemini-3.1-pro:edge-case (error), gpt-5.6-sol-max:edge-case (error), kimi-k3-max:edge-case (error)

@codecov

codecov Bot commented Aug 9, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 83.33333% with 2 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/scripts/app.ts 66.66% 2 Missing ⚠️
@@            Coverage Diff             @@
##             main   #14976      +/-   ##
==========================================
- Coverage   81.32%   81.32%   -0.01%     
==========================================
  Files        1882     1883       +1     
  Lines      107504   107511       +7     
  Branches    33840    33369     -471     
==========================================
+ Hits        87426    87431       +5     
+ Misses      19715    19707       -8     
- Partials      363      373      +10     
Flag Coverage Δ
unit 72.55% <83.33%> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/scripts/__tests__/appTestUtils.ts 100.00% <100.00%> (ø)
src/scripts/app.ts 79.90% <66.66%> (-0.17%) ⬇️

... and 8 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@mattmillerai

Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor
⚠️ Action not completed

Already reviewed.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/scripts/rootGraphReadiness.test.ts (1)

2-2: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Use the prescribed isolated Pinia setup, or remove it.

This test creates a real global Pinia instance but does not access a store directly. If app requires Pinia indirectly, use createTestingPinia. Otherwise, remove the Pinia import and setActivePinia call. Verify the indirect dependency before changing the setup.

As per path instructions, “Use createTestingPinia for Pinia-based tests, reset mocks between tests, and isolate shared state.”

Also applies to: 14-15

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/scripts/rootGraphReadiness.test.ts` at line 2, Update the Pinia setup in
the rootGraphReadiness test: verify whether app indirectly requires Pinia, and
use createTestingPinia with isolated shared state if it does; otherwise remove
the Pinia import and setActivePinia call. Preserve test behavior and reset mocks
between tests.

Source: Path instructions

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@src/scripts/rootGraphReadiness.test.ts`:
- Line 2: Update the Pinia setup in the rootGraphReadiness test: verify whether
app indirectly requires Pinia, and use createTestingPinia with isolated shared
state if it does; otherwise remove the Pinia import and setActivePinia call.
Preserve test behavior and reset mocks between tests.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 29d8b3b6-f7bb-4a43-8f32-f4946850d340

📥 Commits

Reviewing files that changed from the base of the PR and between 7ef0059 and 37abbf4.

📒 Files selected for processing (1)
  • src/scripts/rootGraphReadiness.test.ts

coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 9, 2026

@christian-byrne christian-byrne left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Some nits and potential followups in comments. Feel free to merge now.

Comment thread src/scripts/app.ts
Comment thread src/scripts/app.test.ts
The suite never reaches a store, so the global Pinia instance was dead
setup. Verified the three cases still pass without it.
@mattmillerai

Copy link
Copy Markdown
Contributor Author

Pushed one small commit after approval (d94c094), for the CodeRabbit outside-diff note on rootGraphReadiness.test.ts: the file created a global Pinia instance but never reaches a store, so it was dead setup. Verified empirically rather than by inspection — removed it and re-ran the file, all three cases still pass; pnpm typecheck and pnpm format clean.

@christian-byrne's two nits are both deferred to follow-up tickets rather than fixed here (replies on each thread): the getter type guard can't be behavior-preserving across 319 call sites and needs a throw-vs-widen decision first, and the store-ownership question is blocked on the canvasStore -> app import direction. Also ran the requested overlap check against drjkl's open PRs — no root-graph storage touched in any of them.

@mattmillerai

Copy link
Copy Markdown
Contributor Author

🤖 The reviews loop filed Linear follow-up ticket(s) for review thread(s) deferred as out of scope for this PR:

  • BE-6887 — Replace ComfyApp.rootGraph/graph non-null assertions with a real type guard — filed as agent-spike (premise unverified)
  • BE-6888 — Decide whether root-graph ownership belongs in canvasStore rather than the ComfyApp instance — filed as agent-spike (premise unverified)

The following carry agent-spike instead of agent-ok because their reachability claim was not backed by evidence (BE-5378) — the claim is investigated before any code is written, and "the premise does not hold" is a valid, successful outcome:

  • Replace ComfyApp.rootGraph/graph non-null assertions with a real type guard — no reachability block in the proposal
  • Decide whether root-graph ownership belongs in canvasStore rather than the ComfyApp instance — no reachability block in the proposal

@mattmillerai

Copy link
Copy Markdown
Contributor Author

Re-requesting review only because the branch-protection rule auto-dismissed your approval when d94c094 landed. That commit is the whole delta since you approved: a 2-line deletion of dead createPinia/setActivePinia setup from rootGraphReadiness.test.ts (the suite never reaches a store). No production code changed after your LGTM.

Re-verified at d94c094: full CI green, no merge conflict, and no merge-queue failure on the merged result. Also merged origin/main (5 commits ahead) locally and re-ran the affected suites — no semantic conflict; nothing on main touches rootGraphInternal or isGraphReady.

Your two nits stay deferred to BE-6887 / BE-6888 as noted on those threads; I've left both threads for you to resolve as promised there.

Adding shallowRef left app.ts as the only file in the repo with two value
imports from 'vue'.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@mattmillerai

Copy link
Copy Markdown
Contributor Author

Reviews-loop pass at 9d36354. One commit, no production behavior change.

Fixed: shallowRef had been added as a second import { ... } from 'vue' line, leaving src/scripts/app.ts as the only file in the repo with two value imports from 'vue' (1252 such imports across src/, checked). Merged into the existing line. pnpm typecheck, pnpm lint, pnpm knip, pnpm format all clean; rootGraphReadiness.test.ts green.

Merged-result check. Merged origin/main (5 commits ahead) locally and ran the affected suites against the merged tree. Two failures in app.test.ts (defers API JSON missing node warnings until they are flushed 5s timeout, and syncs the drop position and waits for the replacement workflow before restoring warningsopenWorkflow called 2x). Both reproduce identically on a clean origin/main worktree with no part of this branch present, so they are pre-existing and local-environment-only — CI is green on both. Not a semantic conflict; nothing on main touches rootGraphInternal (grep is empty repo-wide) or isGraphReady. No merge-queue run has ever been attempted for this PR, so there is no ejected merged-result failure either.

Cursor review panel never actually ran. The 0/8 "every reviewer errored" result above is not a code signal — all eight cells failed with the same upstream error:

ActionRequiredError: Your team has reached its usage limit ... return on 8/22/2026 when your usage resets.

Re-applying the cursor-review label will reproduce this until the org quota resets or an admin raises it, so I did not re-trigger. Flagging because this silently affects every PR using that gate right now, not just this one.

Not touched: the two open threads are @christian-byrne's, deferred to BE-6887 / BE-6888 with replies in place. Per AGENTS.md ("never resolve review comments on PRs where you are the author" — non-automated threads are the reviewer's prerogative), I left both for you to resolve.

Only remaining blocker is the dismissed approval; re-review is already requested.

@mattmillerai

Copy link
Copy Markdown
Contributor Author

Reviews-loop pass at 9d36354. No code changes — nothing was actionable, so the branch is untouched at the same SHA you're being asked to re-approve.

Re-verified since the last pass:

  • CI fully green at 9d36354 — 52 pass / 9 skip / 0 fail. The previous comment was written while this batch was still in flight; it has now completed.
  • Merged-result re-checked against a newer main (now 6 commits ahead, +#14970). Merged locally — clean, no textual conflict — and ran the overlapping suites on the merged tree: rootGraphReadiness, both customWidgets files, changeTracker (touched by main), and the whole src/platform/missingModel tree (the #14982 metadata refactor, which is the only new commit whose surface app.test.ts exercises). 14 files / 302 tests green. No semantic conflict.
  • No merge-queue run has ever been attempted for this PR, so there is no ejected merged-result failure hiding off-PR either.
  • app.test.ts still shows the same two 5s timeouts locally (defers API JSON missing node warnings until they are flushed, syncs the drop position and waits for the replacement workflow before restoring warnings). Confirmed pre-existing this pass rather than assumed: checked out clean origin/main in the same worktree with no part of this branch present and got the identical two failures. Local-environment only — the test job is green in CI on both.

The two open threads remain @christian-byrne's, deferred to BE-6887 / BE-6888 with replies in place and left for you to resolve. Only remaining blocker is the approval that branch protection auto-dismissed on d94c094; re-review is already requested.

coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 10, 2026
…ph-shallow-ref

# Conflicts:
#	src/scripts/app.test.ts
@mattmillerai

Copy link
Copy Markdown
Contributor Author

Rebased onto latest main to resolve the merge conflict; all CI checks are green. Ready for re-review (previous approval was dismissed by the new commits).

Comment thread src/scripts/__tests__/appTestUtils.ts Outdated
type AppWithRootGraphRef = { rootGraphRef: ShallowRef<LGraph | undefined> }

const rootGraphRefOf = (app: ComfyApp) =>
(app as unknown as AppWithRootGraphRef).rootGraphRef

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we do this without the type assertions by chance?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes — dropped both assertions in 909788e0.

TypeScript sanctions element access as the escape hatch for a private member, so app['rootGraphRef'] reaches the same storage with no cast and no hand-written shadow interface. The seam is now two lines:

export function setRootGraph(app: ComfyApp, graph: LGraph | undefined) {
  app['rootGraphRef'].value = graph
}

The old as unknown as AppWithRootGraphRef was the worse form of the two problems: it did not just bypass privacy, it re-declared the field's type by hand, so a change to rootGraphRef in app.ts would have gone unnoticed here. Element access keeps the real ShallowRef<LGraph | undefined>.

Verified the type actually survives rather than degrading to any — assigned a number to .value and pnpm typecheck rejected it (Type 'number' is not assignable to type 'LGraph'), then reverted. pnpm typecheck, pnpm lint, pnpm knip, pnpm format all clean; rootGraphReadiness and both customWidgets suites green.

@christian-byrne christian-byrne self-assigned this Aug 16, 2026
Element access reaches a TypeScript `private` member without an assertion,
so the seam keeps the real `ShallowRef<LGraph | undefined>` type instead of
laundering it through a hand-written shadow interface.
@coderabbitai

coderabbitai Bot commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@github-actions github-actions Bot added the risk:R3 PR risk grade (advisory shadow check; grader-owned) label Aug 16, 2026
@christian-byrne

Copy link
Copy Markdown
Contributor

CI is failing because #14900 added three Reflect.set(app, 'rootGraphInternal', graph) calls after this branch's last base sync. This PR removes that field, so those writes create an unused property and leave rootGraphRef undefined. The A1111 test then crashes at this.rootGraph.serialize().

Replacing those three calls with setRootGraph(app, graph) makes all 56 app.test.ts tests pass locally against the synthetic merge commit. Please merge or rebase main and update those test setup calls.

@christian-byrne christian-byrne removed their assignment Aug 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR risk:R3 PR risk grade (advisory shadow check; grader-owned) size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants