Skip to content

Add functionality to quickly disconnect moved input links#7459

Merged
AustinMroz merged 7 commits intomainfrom
austin/fast-disco
Feb 23, 2026
Merged

Add functionality to quickly disconnect moved input links#7459
AustinMroz merged 7 commits intomainfrom
austin/fast-disco

Conversation

@AustinMroz
Copy link
Collaborator

@AustinMroz AustinMroz commented Dec 13, 2025

Disconnections are frequently performed by dragging a link from an input slot and dropping it on the canvas, but needing to wait for the searchbox to pop up, and then needing to manually close out of this can make it feel slow. Sometimes, this will even result in users disabling the link release action for more responsive graph building.

Instead, this PR introduces new functionality where a link which is moved only a short distance from a node input and dropped will be immediately disconnected instead of performing the default link release action.
fast-disco_00001

┆Issue is synchronized with this Notion page by Unito

@AustinMroz AustinMroz requested review from a team and benceruleanlu as code owners December 13, 2025 22:56
@dosubot dosubot bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Dec 13, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 13, 2025

Important

Review skipped

Draft detected.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

This PR enhances link dragging interactions by introducing visual feedback circles for input links, implementing proximity-based disconnect behavior controlled by a disconnectOnDrop flag, and extending input link initialization to accept layout information for positioning alignment.

Changes

Cohort / File(s) Summary
Visual feedback and proximity-based disconnect
src/lib/litegraph/src/canvas/MovingInputLink.ts, src/lib/litegraph/src/LGraphCanvas.ts
Introduces disconnectOnDrop flag and drawConnectionCircle() method to MovingInputLink; adds rendering logic in LGraphCanvas to draw connection circle during link drag and toggle disconnect flag based on distance proximity.
Drop-on-nothing disconnect logic
src/lib/litegraph/src/canvas/LinkConnector.ts
Adds logic in dropOnNothing() to remove all MovingInputLink instances where disconnectOnDrop is truthy, using remove() utility.
Layout-aware input link initialization
src/renderer/core/canvas/links/linkConnectorAdapter.ts, src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
Extends beginFromInput() options to accept layout (SlotLayout) parameter for updating input slot position; composable passes layout information when initiating input link drag.

Sequence Diagram

sequenceDiagram
    participant User
    participant useSlotLinkInteraction
    participant linkConnectorAdapter
    participant LGraphCanvas
    participant MovingInputLink
    participant LinkConnector

    User->>useSlotLinkInteraction: Drag from input slot
    useSlotLinkInteraction->>linkConnectorAdapter: beginFromInput(nodeId, index, {layout, moveExisting})
    linkConnectorAdapter->>linkConnectorAdapter: Apply layout positioning
    linkConnectorAdapter->>MovingInputLink: Create/configure link

    loop During drag
        User->>LGraphCanvas: Mouse move
        LGraphCanvas->>MovingInputLink: drawConnectionCircle(ctx, mousePos)
        MovingInputLink->>MovingInputLink: Compute distance to target
        alt Distance within radius
            MovingInputLink->>MovingInputLink: Set disconnectOnDrop = true
        else Distance beyond radius
            MovingInputLink->>MovingInputLink: Set disconnectOnDrop = false
        end
        LGraphCanvas->>LGraphCanvas: Render visual feedback
    end

    User->>LinkConnector: Release mouse (drop)
    LinkConnector->>MovingInputLink: Check disconnectOnDrop flag
    alt disconnectOnDrop is true
        LinkConnector->>MovingInputLink: Remove from renderLinks
    end
Loading

Possibly related PRs

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch austin/fast-disco

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@github-actions
Copy link

github-actions bot commented Dec 13, 2025

🎨 Storybook Build Status

Build completed successfully!

⏰ Completed at: 02/21/2026, 11:27:35 PM UTC

🔗 Links


🎉 Your Storybook is ready for review!

@github-actions
Copy link

github-actions bot commented Dec 13, 2025

Playwright: ✅ 522 passed, 0 failed · 6 flaky

📊 Browser Reports
  • chromium: View Report (✅ 509 / ❌ 0 / ⚠️ 6 / ⏭️ 10)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 10 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@github-actions
Copy link

github-actions bot commented Dec 13, 2025

📦 Bundle: 4.37 MB gzip 🔴 +898 B

Details

Summary

  • Raw size: 20.6 MB baseline 20.6 MB — 🔴 +1.28 kB
  • Gzip: 4.37 MB baseline 4.37 MB — 🔴 +898 B
  • Brotli: 3.37 MB baseline 3.37 MB — 🔴 +135 B
  • Bundles: 223 current • 223 baseline • 107 added / 107 removed

Category Glance
Data & Services 🔴 +1.27 kB (2.51 MB) · UI Components 🔴 +20 B (43.2 kB) · Graph Workspace 🟢 -4 B (942 kB) · Vendor & Third-Party ⚪ 0 B (8.86 MB) · Other ⚪ 0 B (7.61 MB) · Panels & Settings ⚪ 0 B (436 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BtuyEIoi.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +7.03 kB 🔴 +6.11 kB
assets/index-CoIzrQZA.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -7.02 kB 🟢 -6.09 kB

Status: 1 added / 1 removed

Graph Workspace — 942 kB (baseline 942 kB) • 🟢 -4 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CYcw5VZM.js (removed) 942 kB 🟢 -942 kB 🟢 -202 kB 🟢 -154 kB
assets/GraphView-BQxvt6A5.js (new) 942 kB 🔴 +942 kB 🔴 +202 kB 🔴 +154 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BeSnMhut.js (new) 15.5 kB 🔴 +15.5 kB 🔴 +3.32 kB 🔴 +2.82 kB
assets/CloudSurveyView-BRNzm1GZ.js (removed) 15.5 kB 🟢 -15.5 kB 🟢 -3.32 kB 🟢 -2.83 kB
assets/CloudLoginView-Albez5vX.js (new) 10 kB 🔴 +10 kB 🔴 +2.93 kB 🔴 +2.57 kB
assets/CloudLoginView-B0Fyf8_p.js (removed) 10 kB 🟢 -10 kB 🟢 -2.94 kB 🟢 -2.57 kB
assets/UserCheckView-CaWmtXuf.js (removed) 8.41 kB 🟢 -8.41 kB 🟢 -2.23 kB 🟢 -1.94 kB
assets/UserCheckView-DB0O6BwZ.js (new) 8.41 kB 🔴 +8.41 kB 🔴 +2.23 kB 🔴 +1.94 kB
assets/CloudSignupView-32tJGUXp.js (new) 7.41 kB 🔴 +7.41 kB 🔴 +2.33 kB 🔴 +2.03 kB
assets/CloudSignupView-DL5h89pJ.js (removed) 7.41 kB 🟢 -7.41 kB 🟢 -2.33 kB 🟢 -2.04 kB
assets/CloudLayoutView-Bd60T-Of.js (removed) 6.43 kB 🟢 -6.43 kB 🟢 -2.11 kB 🟢 -1.84 kB
assets/CloudLayoutView-CVg1XqPq.js (new) 6.43 kB 🔴 +6.43 kB 🔴 +2.11 kB 🔴 +1.83 kB
assets/CloudForgotPasswordView-DJG5-47d.js (removed) 5.56 kB 🟢 -5.56 kB 🟢 -1.94 kB 🟢 -1.73 kB
assets/CloudForgotPasswordView-vw0bi9cv.js (new) 5.56 kB 🔴 +5.56 kB 🔴 +1.94 kB 🔴 +1.7 kB
assets/CloudAuthTimeoutView-0rkPOLK7.js (removed) 4.91 kB 🟢 -4.91 kB 🟢 -1.77 kB 🟢 -1.55 kB
assets/CloudAuthTimeoutView-D6lEWTYf.js (new) 4.91 kB 🔴 +4.91 kB 🔴 +1.77 kB 🔴 +1.56 kB
assets/CloudSubscriptionRedirectView-CzLgeKvR.js (new) 4.71 kB 🔴 +4.71 kB 🔴 +1.78 kB 🔴 +1.58 kB
assets/CloudSubscriptionRedirectView-D8L-Mr31.js (removed) 4.71 kB 🟢 -4.71 kB 🟢 -1.78 kB 🟢 -1.58 kB
assets/UserSelectView-C6ERfgMx.js (removed) 4.5 kB 🟢 -4.5 kB 🟢 -1.64 kB 🟢 -1.47 kB
assets/UserSelectView-MGPXW4Z3.js (new) 4.5 kB 🔴 +4.5 kB 🔴 +1.64 kB 🔴 +1.47 kB
assets/CloudSorryContactSupportView-BpNQvxFs.js 1.02 kB 1.02 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/layout-CY3QTpcy.js 296 B 296 B ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 9 added / 9 removed

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SecretsPanel-DhAE4LwC.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -5.3 kB 🟢 -4.65 kB
assets/SecretsPanel-DRVpKw0X.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +5.31 kB 🔴 +4.66 kB
assets/LegacyCreditsPanel-CyRfYVr9.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.57 kB 🔴 +4.89 kB
assets/LegacyCreditsPanel-DBstkvM3.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.57 kB 🟢 -4.9 kB
assets/SubscriptionPanel-DmxQnXR-.js (removed) 18.6 kB 🟢 -18.6 kB 🟢 -4.73 kB 🟢 -4.17 kB
assets/SubscriptionPanel-mJL8Dzx5.js (new) 18.6 kB 🔴 +18.6 kB 🔴 +4.73 kB 🔴 +4.17 kB
assets/KeybindingPanel-B8PxS3yd.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +3.58 kB 🔴 +3.17 kB
assets/KeybindingPanel-zD2mmeiO.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -3.58 kB 🟢 -3.18 kB
assets/AboutPanel-gsuacrv2.js (new) 9.79 kB 🔴 +9.79 kB 🔴 +2.73 kB 🔴 +2.47 kB
assets/AboutPanel-zAdKXnJO.js (removed) 9.79 kB 🟢 -9.79 kB 🟢 -2.73 kB 🟢 -2.46 kB
assets/ExtensionPanel-CkQfrrV2.js (new) 9.38 kB 🔴 +9.38 kB 🔴 +2.65 kB 🔴 +2.35 kB
assets/ExtensionPanel-CV6JGMMw.js (removed) 9.38 kB 🟢 -9.38 kB 🟢 -2.65 kB 🟢 -2.35 kB
assets/ServerConfigPanel-CL9r-mxa.js (removed) 6.44 kB 🟢 -6.44 kB 🟢 -2.13 kB 🟢 -1.91 kB
assets/ServerConfigPanel-CQxGYvFy.js (new) 6.44 kB 🔴 +6.44 kB 🔴 +2.13 kB 🔴 +1.93 kB
assets/UserPanel-CqgDxJjC.js (removed) 6.16 kB 🟢 -6.16 kB 🟢 -2 kB 🟢 -1.75 kB
assets/UserPanel-DGotKQEz.js (new) 6.16 kB 🔴 +6.16 kB 🔴 +2 kB 🔴 +1.75 kB
assets/cloudRemoteConfig-ByPoM-Qo.js (removed) 1.44 kB 🟢 -1.44 kB 🟢 -711 B 🟢 -610 B
assets/cloudRemoteConfig-Dbp8_OPZ.js (new) 1.44 kB 🔴 +1.44 kB 🔴 +712 B 🔴 +611 B
assets/refreshRemoteConfig-B-eEdH0P.js (new) 1.14 kB 🔴 +1.14 kB 🔴 +519 B 🔴 +462 B
assets/refreshRemoteConfig-DLhvk6MI.js (removed) 1.14 kB 🟢 -1.14 kB 🟢 -520 B 🟢 -460 B
assets/config-QxkqTZy6.js 996 B 996 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-3cK4vYSX.js 27.9 kB 27.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-AqJa7Oe1.js 28.7 kB 28.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BOcWl0Qp.js 34.2 kB 34.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BodhSOuG.js 30.5 kB 30.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CCD8qxmc.js 27.8 kB 27.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CVDNuOXV.js 23.9 kB 23.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DLodCRRz.js 24.5 kB 24.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DLqeCT09.js 38.5 kB 38.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DP-OgTXN.js 29.9 kB 29.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DRIXyZ_Z.js 28.8 kB 28.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-IRk9rDbu.js 32.4 kB 32.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 10 added / 10 removed

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-D5LQ9V7V.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.18 kB 🔴 +989 B
assets/auth-Dpe9LkDr.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.18 kB 🟢 -985 B
assets/SignUpForm-DK3MQHqZ.js (removed) 3.01 kB 🟢 -3.01 kB 🟢 -1.23 kB 🟢 -1.1 kB
assets/SignUpForm-DVP4zTIL.js (new) 3.01 kB 🔴 +3.01 kB 🔴 +1.23 kB 🔴 +1.09 kB
assets/UpdatePasswordContent-PokGMy77.js (new) 2.37 kB 🔴 +2.37 kB 🔴 +1.07 kB 🔴 +944 B
assets/UpdatePasswordContent-WbRrWcvp.js (removed) 2.37 kB 🟢 -2.37 kB 🟢 -1.07 kB 🟢 -944 B
assets/firebaseAuthStore-C6Z_9-Tj.js (new) 790 B 🔴 +790 B 🔴 +394 B 🔴 +352 B
assets/firebaseAuthStore-DkpAssG6.js (removed) 790 B 🟢 -790 B 🟢 -391 B 🟢 -374 B
assets/auth-C8RzcEmj.js (new) 357 B 🔴 +357 B 🔴 +223 B 🔴 +191 B
assets/auth-DxeyfKVc.js (removed) 357 B 🟢 -357 B 🟢 -221 B 🟢 -212 B
assets/PasswordFields-DlUohnmK.js 4.51 kB 4.51 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WorkspaceProfilePic-BRX_wv6S.js 1.57 kB 1.57 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 5 added / 5 removed

Editors & Dialogs — 738 B (baseline 738 B) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useSubscriptionDialog-DlTlDq6t.js (new) 738 B 🔴 +738 B 🔴 +382 B 🔴 +329 B
assets/useSubscriptionDialog-du6HehL2.js (removed) 738 B 🟢 -738 B 🟢 -383 B 🟢 -327 B

Status: 1 added / 1 removed

UI Components — 43.2 kB (baseline 43.2 kB) • 🔴 +20 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useTerminalTabs-BaXCkwxM.js (new) 9.85 kB 🔴 +9.85 kB 🔴 +3.4 kB 🔴 +3 kB
assets/useTerminalTabs-J9Wc2aAV.js (removed) 9.85 kB 🟢 -9.85 kB 🟢 -3.41 kB 🟢 -3.01 kB
assets/ComfyQueueButton-D8D-N6RC.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.49 kB 🟢 -2.22 kB
assets/ComfyQueueButton-ebiYs1Hb.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.49 kB 🔴 +2.23 kB
assets/ScrubableNumberInput-CfmzmfrA.js (new) 5.96 kB 🔴 +5.96 kB 🔴 +2.06 kB 🔴 +1.83 kB
assets/ScrubableNumberInput-DJE0B1NQ.js (removed) 5.94 kB 🟢 -5.94 kB 🟢 -2.06 kB 🟢 -1.83 kB
assets/SubscribeButton-By4k45Lc.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +1.02 kB 🔴 +890 B
assets/SubscribeButton-D9ZQMgzY.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -1.02 kB 🟢 -888 B
assets/cloudFeedbackTopbarButton-BfoO9g_C.js (removed) 1.6 kB 🟢 -1.6 kB 🟢 -858 B 🟢 -767 B
assets/cloudFeedbackTopbarButton-gyZcyNWx.js (new) 1.6 kB 🔴 +1.6 kB 🔴 +858 B 🔴 +767 B
assets/ComfyQueueButton-CB0Jiakk.js (removed) 795 B 🟢 -795 B 🟢 -398 B 🟢 -351 B
assets/ComfyQueueButton-Cr3XuNrS.js (new) 795 B 🔴 +795 B 🔴 +397 B 🔴 +350 B
assets/Button-Dty3EQfq.js 2.98 kB 2.98 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/CloudBadge-aQ2E47Yi.js 1.24 kB 1.24 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/TopbarBadge-3g_6CddN.js 7.45 kB 7.45 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/UserAvatar-GxvsGuiA.js 1.17 kB 1.17 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetButton-BT3Ds9jk.js 1.84 kB 1.84 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 6 added / 6 removed

Data & Services — 2.51 MB (baseline 2.51 MB) • 🔴 +1.27 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-Ct__n9tg.js (new) 1.73 MB 🔴 +1.73 MB 🔴 +386 kB 🔴 +292 kB
assets/dialogService-YTpNk5lW.js (removed) 1.73 MB 🟢 -1.73 MB 🟢 -386 kB 🟢 -292 kB
assets/api-DRyKE3Qx.js (new) 653 kB 🔴 +653 kB 🔴 +148 kB 🔴 +118 kB
assets/api-BXafhtUh.js (removed) 652 kB 🟢 -652 kB 🟢 -147 kB 🟢 -117 kB
assets/load3dService-BP5CjaLU.js (new) 91 kB 🔴 +91 kB 🔴 +19.1 kB 🔴 +16.4 kB
assets/load3dService-CZUfGrGz.js (removed) 91 kB 🟢 -91 kB 🟢 -19.1 kB 🟢 -16.4 kB
assets/systemStatsStore-CHVDvSqo.js (removed) 12.7 kB 🟢 -12.7 kB 🟢 -4.42 kB 🟢 -3.89 kB
assets/systemStatsStore-T15L4g3x.js (new) 12.7 kB 🔴 +12.7 kB 🔴 +4.42 kB 🔴 +3.88 kB
assets/releaseStore-BdKomzJ7.js (removed) 7.96 kB 🟢 -7.96 kB 🟢 -2.22 kB 🟢 -1.95 kB
assets/releaseStore-D9VsQ3Np.js (new) 7.96 kB 🔴 +7.96 kB 🔴 +2.22 kB 🔴 +1.95 kB
assets/keybindingService-B8dls5qq.js (new) 6.52 kB 🔴 +6.52 kB 🔴 +1.71 kB 🔴 +1.47 kB
assets/keybindingService-DES87esF.js (removed) 6.52 kB 🟢 -6.52 kB 🟢 -1.71 kB 🟢 -1.47 kB
assets/bootstrapStore-BBQiVOiE.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -871 B 🟢 -794 B
assets/bootstrapStore-CLGAnOnz.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +873 B 🔴 +791 B
assets/userStore-B79sdcHi.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -719 B 🟢 -678 B
assets/userStore-Da9-cTP3.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +719 B 🔴 +667 B
assets/audioService-DLo29I0H.js (new) 1.73 kB 🔴 +1.73 kB 🔴 +851 B 🔴 +728 B
assets/audioService-OCFX_0pn.js (removed) 1.73 kB 🟢 -1.73 kB 🟢 -848 B 🟢 -728 B
assets/releaseStore-bMaW7Kvn.js (removed) 762 B 🟢 -762 B 🟢 -390 B 🟢 -338 B
assets/releaseStore-KRDV92oc.js (new) 762 B 🔴 +762 B 🔴 +388 B 🔴 +339 B
assets/settingStore-1mmMmLXR.js (removed) 746 B 🟢 -746 B 🟢 -391 B 🟢 -342 B
assets/settingStore-D5pQMbLS.js (new) 746 B 🔴 +746 B 🔴 +390 B 🔴 +344 B
assets/workflowDraftStore-C_SJI8RG.js (new) 738 B 🔴 +738 B 🔴 +382 B 🔴 +333 B
assets/workflowDraftStore-CXWe27E3.js (removed) 738 B 🟢 -738 B 🟢 -382 B 🟢 -334 B
assets/dialogService-BADRMwn9.js (new) 727 B 🔴 +727 B 🔴 +374 B 🔴 +329 B
assets/dialogService-DhFUP2fQ.js (removed) 727 B 🟢 -727 B 🟢 -371 B 🟢 -329 B
assets/serverConfigStore-B17wcfZ1.js 2.32 kB 2.32 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 13 added / 13 removed

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useLoad3d-Czk1lfH5.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/useLoad3d-Dvr_4r9-.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/useLoad3dViewer-CfJyAp0T.js (removed) 14.1 kB 🟢 -14.1 kB 🟢 -3.15 kB 🟢 -2.8 kB
assets/useLoad3dViewer-Dgg3o-P9.js (new) 14.1 kB 🔴 +14.1 kB 🔴 +3.15 kB 🔴 +2.8 kB
assets/useFeatureFlags-BFC2i1Fj.js (new) 3.52 kB 🔴 +3.52 kB 🔴 +1.09 kB 🔴 +936 B
assets/useFeatureFlags-BRX4vS07.js (removed) 3.52 kB 🟢 -3.52 kB 🟢 -1.09 kB 🟢 -933 B
assets/useWorkspaceUI-B_RBsYYj.js (removed) 3 kB 🟢 -3 kB 🟢 -824 B 🟢 -742 B
assets/useWorkspaceUI-DRfTBFDc.js (new) 3 kB 🔴 +3 kB 🔴 +822 B 🔴 +705 B
assets/useSubscriptionCredits-BckUGYPw.js (removed) 2.75 kB 🟢 -2.75 kB 🟢 -1.04 kB 🟢 -900 B
assets/useSubscriptionCredits-DncWzpzr.js (new) 2.75 kB 🔴 +2.75 kB 🔴 +1.04 kB 🔴 +901 B
assets/subscriptionCheckoutUtil-A6jpCIls.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.06 kB 🔴 +953 B
assets/subscriptionCheckoutUtil-gKizFXe9.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.06 kB 🟢 -965 B
assets/useErrorHandling-BlsRz778.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -629 B 🟢 -534 B
assets/useErrorHandling-BQEOvSyV.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +630 B 🔴 +534 B
assets/useWorkspaceSwitch-CgGHJKmN.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +544 B 🔴 +481 B
assets/useWorkspaceSwitch-DtaLo3G7.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -546 B 🟢 -481 B
assets/useLoad3d--z3EfLX7.js (new) 861 B 🔴 +861 B 🔴 +428 B 🔴 +382 B
assets/useLoad3d-ggdZBxPk.js (removed) 861 B 🟢 -861 B 🟢 -429 B 🟢 -381 B
assets/audioUtils-CfR7bzY7.js (new) 858 B 🔴 +858 B 🔴 +500 B 🔴 +420 B
assets/audioUtils-DX9136jV.js (removed) 858 B 🟢 -858 B 🟢 -502 B 🟢 -402 B
assets/useLoad3dViewer-BDqlODQZ.js (new) 840 B 🔴 +840 B 🔴 +413 B 🔴 +370 B
assets/useLoad3dViewer-DWX2Gv7W.js (removed) 840 B 🟢 -840 B 🟢 -416 B 🟢 -368 B
assets/useCurrentUser-D1qyGy0s.js (removed) 724 B 🟢 -724 B 🟢 -374 B 🟢 -327 B
assets/useCurrentUser-DC1CFB4r.js (new) 724 B 🔴 +724 B 🔴 +377 B 🔴 +326 B
assets/_plugin-vue_export-helper-CY4XIWDa.js 315 B 315 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/colorUtil-CcRT0Prq.js 7 kB 7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/envUtil-BQSmRN2Q.js 466 B 466 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/markdownRendererUtil-DfJrqNx-.js 1.56 kB 1.56 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/SkeletonUtils-BputJAFn.js 133 B 133 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/useExternalLink-CxRHryh9.js 1.66 kB 1.66 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 12 added / 12 removed

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

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-axios-C4mPrLmU.js 70.3 kB 70.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-chart-BxkFiWzp.js 399 kB 399 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-firebase-BvMr43CG.js 836 kB 836 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-i18n-CJliEbVY.js 131 kB 131 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-markdown-DDKkCsp-.js 145 kB 145 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-other-C95vNT5d.js 1.52 MB 1.52 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-primevue-CDtYfbOi.js 1.73 MB 1.73 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-reka-ui-CWMIYdD2.js 379 kB 379 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-sentry-SQwstEKc.js 182 kB 182 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-three-LBLOE6BD.js 1.8 MB 1.8 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-tiptap-Bi_34iZD.js 625 kB 625 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-vue-core-CmHHRvL9.js 311 kB 311 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-vueuse-B4hGe0IQ.js 113 kB 113 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-xterm-vkxZGffR.js 374 kB 374 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-yjs-CP_4YO8u.js 143 kB 143 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-zod-DcCUUPIi.js 109 kB 109 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
Other — 7.61 MB (baseline 7.61 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-1-eTuLqJ.js (removed) 72.8 kB 🟢 -72.8 kB 🟢 -18.8 kB 🟢 -16.1 kB
assets/core-BeoEH83x.js (new) 72.8 kB 🔴 +72.8 kB 🔴 +18.8 kB 🔴 +16.1 kB
assets/groupNode-D_1FUZPR.js (new) 71.8 kB 🔴 +71.8 kB 🔴 +17.7 kB 🔴 +15.5 kB
assets/groupNode-D3ynrRoc.js (removed) 71.8 kB 🟢 -71.8 kB 🟢 -17.7 kB 🟢 -15.5 kB
assets/WidgetSelect-9Pe9NmUu.js (new) 57.6 kB 🔴 +57.6 kB 🔴 +12.2 kB 🔴 +10.5 kB
assets/WidgetSelect-B4OYaKY8.js (removed) 57.6 kB 🟢 -57.6 kB 🟢 -12.2 kB 🟢 -10.5 kB
assets/SubscriptionRequiredDialogContentWorkspace-5hPBtxge.js (new) 45.8 kB 🔴 +45.8 kB 🔴 +8.56 kB 🔴 +7.4 kB
assets/SubscriptionRequiredDialogContentWorkspace-CczzPx1C.js (removed) 45.8 kB 🟢 -45.8 kB 🟢 -8.57 kB 🟢 -7.43 kB
assets/Load3DControls-6mCyu0tu.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +5.34 kB 🔴 +4.64 kB
assets/Load3DControls-BIHGdWAN.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -5.34 kB 🟢 -4.64 kB
assets/WorkspacePanelContent-CHXk0g0Z.js (new) 29.3 kB 🔴 +29.3 kB 🔴 +6.15 kB 🔴 +5.39 kB
assets/WorkspacePanelContent-o5eveZ3F.js (removed) 29.3 kB 🟢 -29.3 kB 🟢 -6.14 kB 🟢 -5.4 kB
assets/SubscriptionRequiredDialogContent-BDmUIQlg.js (removed) 26.2 kB 🟢 -26.2 kB 🟢 -6.57 kB 🟢 -5.78 kB
assets/SubscriptionRequiredDialogContent-oxZfk8eZ.js (new) 26.2 kB 🔴 +26.2 kB 🔴 +6.57 kB 🔴 +5.79 kB
assets/Load3dViewerContent-B8yTAxkK.js (new) 23 kB 🔴 +23 kB 🔴 +5.18 kB 🔴 +4.5 kB
assets/Load3dViewerContent-CV2XZDZS.js (removed) 23 kB 🟢 -23 kB 🟢 -5.18 kB 🟢 -4.5 kB
assets/WidgetImageCrop-CLLtqZT9.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.51 kB 🟢 -4.86 kB
assets/WidgetImageCrop-DvmapyOc.js (new) 22.1 kB 🔴 +22.1 kB 🔴 +5.51 kB 🔴 +4.85 kB
assets/SubscriptionPanelContentWorkspace-BMSqb9Sp.js (new) 21.6 kB 🔴 +21.6 kB 🔴 +5.02 kB 🔴 +4.43 kB
assets/SubscriptionPanelContentWorkspace-C3myxEYN.js (removed) 21.6 kB 🟢 -21.6 kB 🟢 -5.02 kB 🟢 -4.44 kB
assets/CurrentUserPopoverWorkspace-1PUnq57j.js (new) 19.8 kB 🔴 +19.8 kB 🔴 +4.87 kB 🔴 +4.33 kB
assets/CurrentUserPopoverWorkspace-BaDfYvrD.js (removed) 19.8 kB 🟢 -19.8 kB 🟢 -4.87 kB 🟢 -4.33 kB
assets/SignInContent-BguwbUcI.js (new) 18.9 kB 🔴 +18.9 kB 🔴 +4.79 kB 🔴 +4.2 kB
assets/SignInContent-DT0Wkx83.js (removed) 18.9 kB 🟢 -18.9 kB 🟢 -4.79 kB 🟢 -4.19 kB
assets/WidgetInputNumber-CC4aazgJ.js (new) 18.6 kB 🔴 +18.6 kB 🔴 +4.71 kB 🔴 +4.18 kB
assets/WidgetInputNumber-DLBVD3GE.js (removed) 18.6 kB 🟢 -18.6 kB 🟢 -4.71 kB 🟢 -4.17 kB
assets/WidgetRecordAudio-BB47ZWzF.js (removed) 17.3 kB 🟢 -17.3 kB 🟢 -4.95 kB 🟢 -4.42 kB
assets/WidgetRecordAudio-CDaLqQG_.js (new) 17.3 kB 🔴 +17.3 kB 🔴 +4.95 kB 🔴 +4.42 kB
assets/Load3D-BmzSxZjV.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.03 kB 🟢 -3.52 kB
assets/Load3D-KL1VFGA5.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.03 kB 🔴 +3.52 kB
assets/load3d-C9Rk3nPy.js (removed) 14.7 kB 🟢 -14.7 kB 🟢 -4.2 kB 🟢 -3.63 kB
assets/load3d-CMUrv_dX.js (new) 14.7 kB 🔴 +14.7 kB 🔴 +4.2 kB 🔴 +3.63 kB
assets/AudioPreviewPlayer-BLAvUKI9.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -3.2 kB 🟢 -2.87 kB
assets/AudioPreviewPlayer-er4kK91h.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +3.2 kB 🔴 +2.86 kB
assets/changeTracker-2nWhl0bE.js (new) 9.38 kB 🔴 +9.38 kB 🔴 +2.89 kB 🔴 +2.55 kB
assets/changeTracker-DQlqc8OR.js (removed) 9.38 kB 🟢 -9.38 kB 🟢 -2.89 kB 🟢 -2.55 kB
assets/nodeTemplates-CCAoAJAl.js (new) 9.3 kB 🔴 +9.3 kB 🔴 +3.26 kB 🔴 +2.86 kB
assets/nodeTemplates-DhACl9Fr.js (removed) 9.3 kB 🟢 -9.3 kB 🟢 -3.26 kB 🟢 -2.86 kB
assets/InviteMemberDialogContent-eRuBmUTo.js (removed) 7.38 kB 🟢 -7.38 kB 🟢 -2.3 kB 🟢 -2 kB
assets/InviteMemberDialogContent-kQ5qNow8.js (new) 7.38 kB 🔴 +7.38 kB 🔴 +2.3 kB 🔴 +2 kB
assets/Load3DConfiguration-Ch86j2MI.js (new) 6.27 kB 🔴 +6.27 kB 🔴 +1.92 kB 🔴 +1.68 kB
assets/Load3DConfiguration-lbsaUxIe.js (removed) 6.27 kB 🟢 -6.27 kB 🟢 -1.91 kB 🟢 -1.68 kB
assets/CreateWorkspaceDialogContent-BSFP1tqX.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2 kB 🔴 +1.74 kB
assets/CreateWorkspaceDialogContent-RV1B-CcA.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2 kB 🟢 -1.75 kB
assets/EditWorkspaceDialogContent-BaNuqvv3.js (removed) 5.33 kB 🟢 -5.33 kB 🟢 -1.95 kB 🟢 -1.71 kB
assets/EditWorkspaceDialogContent-CHh6ZEAH.js (new) 5.33 kB 🔴 +5.33 kB 🔴 +1.95 kB 🔴 +1.7 kB
assets/ValueControlPopover-CfHGnCNu.js (removed) 4.92 kB 🟢 -4.92 kB 🟢 -1.77 kB 🟢 -1.58 kB
assets/ValueControlPopover-CyEsfGGz.js (new) 4.92 kB 🔴 +4.92 kB 🔴 +1.77 kB 🔴 +1.58 kB
assets/Preview3d-BAMDw2ZL.js (removed) 4.82 kB 🟢 -4.82 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/Preview3d-BQRGeG7V.js (new) 4.82 kB 🔴 +4.82 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CancelSubscriptionDialogContent-B_LUlMPt.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.79 kB 🟢 -1.56 kB
assets/CancelSubscriptionDialogContent-DNJYTPUZ.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/DeleteWorkspaceDialogContent-2sIaiKCB.js (removed) 4.23 kB 🟢 -4.23 kB 🟢 -1.64 kB 🟢 -1.42 kB
assets/DeleteWorkspaceDialogContent-DKPOGBYy.js (new) 4.23 kB 🔴 +4.23 kB 🔴 +1.64 kB 🔴 +1.42 kB
assets/WidgetWithControl-BEuG-KEm.js (removed) 4.11 kB 🟢 -4.11 kB 🟢 -1.78 kB 🟢 -1.61 kB
assets/WidgetWithControl-DIxHFFRR.js (new) 4.11 kB 🔴 +4.11 kB 🔴 +1.78 kB 🔴 +1.6 kB
assets/LeaveWorkspaceDialogContent-BqQdQUJ9.js (new) 4.06 kB 🔴 +4.06 kB 🔴 +1.58 kB 🔴 +1.38 kB
assets/LeaveWorkspaceDialogContent-DcsXk0Ht.js (removed) 4.06 kB 🟢 -4.06 kB 🟢 -1.58 kB 🟢 -1.38 kB
assets/RemoveMemberDialogContent-CNEgnAjM.js (removed) 4.04 kB 🟢 -4.04 kB 🟢 -1.53 kB 🟢 -1.34 kB
assets/RemoveMemberDialogContent-IZxH6tiH.js (new) 4.04 kB 🔴 +4.04 kB 🔴 +1.53 kB 🔴 +1.33 kB
assets/RevokeInviteDialogContent-D76yF9aE.js (removed) 3.96 kB 🟢 -3.96 kB 🟢 -1.55 kB 🟢 -1.36 kB
assets/RevokeInviteDialogContent-DI1raDK1.js (new) 3.96 kB 🔴 +3.96 kB 🔴 +1.54 kB 🔴 +1.36 kB
assets/InviteMemberUpsellDialogContent-Dyf1Wez1.js (new) 3.83 kB 🔴 +3.83 kB 🔴 +1.41 kB 🔴 +1.24 kB
assets/InviteMemberUpsellDialogContent-EWmMMQZR.js (removed) 3.83 kB 🟢 -3.83 kB 🟢 -1.41 kB 🟢 -1.24 kB
assets/saveMesh-BK1lResW.js (new) 3.38 kB 🔴 +3.38 kB 🔴 +1.46 kB 🔴 +1.3 kB
assets/saveMesh-KRZ8JBi9.js (removed) 3.38 kB 🟢 -3.38 kB 🟢 -1.46 kB 🟢 -1.3 kB
assets/WidgetBoundingBox-Cr_HMYRP.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -896 B 🟢 -778 B
assets/WidgetBoundingBox-jn-1G6CA.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +894 B 🔴 +777 B
assets/cloudSessionCookie-Cku6w4qf.js (removed) 3.1 kB 🟢 -3.1 kB 🟢 -1.09 kB 🟢 -976 B
assets/cloudSessionCookie-DadyEWOh.js (new) 3.1 kB 🔴 +3.1 kB 🔴 +1.09 kB 🔴 +965 B
assets/GlobalToast-CuvjezOb.js (removed) 2.91 kB 🟢 -2.91 kB 🟢 -1.21 kB 🟢 -1.06 kB
assets/GlobalToast-dDuBK_hI.js (new) 2.91 kB 🔴 +2.91 kB 🔴 +1.21 kB 🔴 +1.07 kB
assets/SubscribeToRun-BRQpXw9C.js (new) 2.2 kB 🔴 +2.2 kB 🔴 +1.01 kB 🔴 +883 B
assets/SubscribeToRun-D2FR95xH.js (removed) 2.2 kB 🟢 -2.2 kB 🟢 -1.01 kB 🟢 -882 B
assets/CloudRunButtonWrapper-2Vjb6-NU.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +790 B 🔴 +722 B
assets/CloudRunButtonWrapper-CKeK23Qv.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -790 B 🟢 -708 B
assets/cloudBadges-BPKWwUy9.js (new) 1.37 kB 🔴 +1.37 kB 🔴 +705 B 🔴 +615 B
assets/cloudBadges-CH7xE8xy.js (removed) 1.37 kB 🟢 -1.37 kB 🟢 -706 B 🟢 -617 B
assets/cloudSubscription-Bah5m9-q.js (new) 1.33 kB 🔴 +1.33 kB 🔴 +659 B 🔴 +571 B
assets/cloudSubscription-RhggCQ2C.js (removed) 1.33 kB 🟢 -1.33 kB 🟢 -660 B 🟢 -572 B
assets/Load3D-Ccs0iyf9.js (new) 1.07 kB 🔴 +1.07 kB 🔴 +501 B 🔴 +443 B
assets/Load3D-WCHwUw2-.js (removed) 1.07 kB 🟢 -1.07 kB 🟢 -501 B 🟢 -445 B
assets/nightlyBadges-BJqBv4Sn.js (removed) 1 kB 🟢 -1 kB 🟢 -535 B 🟢 -474 B
assets/nightlyBadges-BOk-ol2x.js (new) 1 kB 🔴 +1 kB 🔴 +535 B 🔴 +475 B
assets/Load3dViewerContent-BjcFYbbc.js (removed) 995 B 🟢 -995 B 🟢 -473 B 🟢 -418 B
assets/Load3dViewerContent-uPewkQzc.js (new) 995 B 🔴 +995 B 🔴 +471 B 🔴 +418 B
assets/SubscriptionPanelContentWorkspace-BskGwWFn.js (new) 932 B 🔴 +932 B 🔴 +439 B 🔴 +381 B
assets/SubscriptionPanelContentWorkspace-C1Rhl4OX.js (removed) 932 B 🟢 -932 B 🟢 -441 B 🟢 -381 B
assets/graphHasMissingNodes-BZvMdCtg.js (removed) 761 B 🟢 -761 B 🟢 -371 B 🟢 -323 B
assets/graphHasMissingNodes-D6o57BNO.js (new) 761 B 🔴 +761 B 🔴 +374 B 🔴 +358 B
assets/changeTracker-BJM2ovdg.js (removed) 759 B 🟢 -759 B 🟢 -390 B 🟢 -340 B
assets/changeTracker-CmE9dtUw.js (new) 759 B 🔴 +759 B 🔴 +389 B 🔴 +339 B
assets/WidgetLegacy-BzfDnLRQ.js (removed) 747 B 🟢 -747 B 🟢 -388 B 🟢 -357 B
assets/WidgetLegacy-CJtzlvZg.js (new) 747 B 🔴 +747 B 🔴 +388 B 🔴 +338 B
assets/WidgetInputNumber-6KRiXPdi.js (new) 469 B 🔴 +469 B 🔴 +263 B 🔴 +224 B
assets/WidgetInputNumber-CJSzqElq.js (removed) 469 B 🟢 -469 B 🟢 -264 B 🟢 -229 B
assets/WidgetBoundingBox-BN6kk8Gn.js (removed) 283 B 🟢 -283 B 🟢 -186 B 🟢 -166 B
assets/WidgetBoundingBox-Ch7Vnrxm.js (new) 283 B 🔴 +283 B 🔴 +184 B 🔴 +166 B
assets/AnimationControls-DfakB9G0.js 4.61 kB 4.61 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/ApiNodesSignInContent-DjCuJRKV.js 2.69 kB 2.69 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/auto-BTnZwrs2.js 1.7 kB 1.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/BaseViewTemplate-sbUO3_hD.js 1.78 kB 1.78 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/comfy-logo-single-DhnNuB-i.js 198 B 198 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/ComfyOrgHeader-CKD9vwNi.js 910 B 910 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-BIWmUVEc.js 16.9 kB 16.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-BOt38VCw.js 16.1 kB 16.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-C0NcxRH3.js 18.8 kB 18.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-C2xuXGb5.js 17.5 kB 17.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CmiKIQwc.js 16.1 kB 16.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DMwP8S5e.js 16.7 kB 16.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DwBt3HhT.js 15.9 kB 15.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-JX559A2n.js 15.1 kB 15.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-n_2KJWcD.js 15.2 kB 15.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-OO-8nFm9.js 16.1 kB 16.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-wq2Y-YKn.js 17.5 kB 17.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/constants-BIWjk1ar.js 579 B 579 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/i18n-BmN90Lyt.js 518 kB 518 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/i18n-DseiGbFf.js 199 B 199 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/LazyImage-2uMi-pR-.js 12.3 kB 12.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BA2V8d-C.js 139 kB 139 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BccLgA47.js 168 kB 168 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-C-ZfUqj4.js 194 kB 194 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-C1DJg0HU.js 123 kB 123 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CjFsXT_Y.js 160 kB 160 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CNIsXuKE.js 147 kB 147 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CqcSAz7B.js 144 kB 144 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-DDxNg4P1.js 174 kB 174 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Dr-RBucI.js 122 kB 122 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Gap3UP2p.js 142 kB 142 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-x00Xksju.js 139 kB 139 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/Media3DTop-D3QRJ6eZ.js 1.82 kB 1.82 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaAudioTop-vXuump5i.js 1.43 kB 1.43 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaImageTop-XsW6Reb5.js 1.75 kB 1.75 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaOtherTop-Crhpst_D.js 1.02 kB 1.02 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaTextTop-DLkC3BlW.js 1.01 kB 1.01 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaVideoTop-DU5vbYRh.js 2.77 kB 2.77 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-2U4KtUml.js 360 kB 360 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-5rcOJVex.js 391 kB 391 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BTBSP0IQ.js 480 kB 480 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BZEpP7w6.js 383 kB 383 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-C-Tw-7I_.js 407 kB 407 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-C76rbmLh.js 441 kB 441 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CxxD1ymF.js 395 kB 395 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-DciNsuYe.js 392 kB 392 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-G7wcMpUD.js 356 kB 356 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-nGdg-hIO.js 388 kB 388 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-xiPSrG6S.js 440 kB 440 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/OBJLoader2WorkerModule-DTMpvldF.js 109 kB 109 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/Popover-Dz7QVY1n.js 3.65 kB 3.65 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/previousFullPath-DeIFnh1k.js 665 B 665 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/rolldown-runtime-DLICfi3-.js 1.97 kB 1.97 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/SelectValue-DCc1Zu30.js 8.94 kB 8.94 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/signInSchema-BEz-vSDq.js 1.53 kB 1.53 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/Slider-B2wM6nig.js 3.52 kB 3.52 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/src-Bomay1-S.js 251 B 251 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/telemetry-zZf2dHJ2.js 226 B 226 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/types-DT3N7am7.js 204 B 204 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/VideoPlayOverlay-pAmsiKmj.js 1.35 kB 1.35 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widget-DTUjK0ZE.js 445 B 445 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetChart-FXoNjF90.js 2.21 kB 2.21 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetColorPicker-CZWZ2P2t.js 2.9 kB 2.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetGalleria-DxUiq10J.js 3.61 kB 3.61 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetImageCompare-BV2GfN2g.js 3.1 kB 3.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetInputText-DNGqyry1.js 1.86 kB 1.86 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetLayoutField-OZHuH8dM.js 1.95 kB 1.95 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetMarkdown-BhWgQvMw.js 2.93 kB 2.93 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widgetPropFilter-COB1L9Pj.js 1.1 kB 1.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetTextarea-Bty_kSxO.js 3.13 kB 3.13 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/WidgetToggleSwitch-aBcC1iuD.js 6.8 kB 6.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widgetTypes-BtuQMzwn.js 393 B 393 B ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 49 added / 49 removed

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 5

📜 Review details

Configuration used: CodeRabbit UI

Review profile: ASSERTIVE

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fd97473 and f0a0868.

📒 Files selected for processing (5)
  • src/lib/litegraph/src/LGraphCanvas.ts (2 hunks)
  • src/lib/litegraph/src/canvas/LinkConnector.ts (2 hunks)
  • src/lib/litegraph/src/canvas/MovingInputLink.ts (4 hunks)
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts (2 hunks)
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (11)
src/**/*.{vue,ts}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.{vue,ts}: Leverage VueUse functions for performance-enhancing styles
Implement proper error handling
Use vue-i18n in composition API for any string literals. Place new translation entries in src/locales/en/main.json

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/**/*.ts

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.ts: Use es-toolkit for utility functions
Use TypeScript for type safety

Minimize the surface area (exported values) of each module and composable

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/*.{ts,tsx,vue}: Sanitize HTML with DOMPurify to prevent XSS attacks
Avoid using @ts-expect-error; use proper TypeScript types instead
Use es-toolkit for utility functions instead of other utility libraries
Implement proper TypeScript types throughout the codebase

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/**/*.{vue,ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Follow Vue 3 composition API style guide

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/lib/litegraph/**/*.{js,ts,jsx,tsx}

📄 CodeRabbit inference engine (src/lib/litegraph/CLAUDE.md)

src/lib/litegraph/**/*.{js,ts,jsx,tsx}: Run ESLint instead of manually figuring out whitespace fixes or other trivial style concerns using the pnpm lint:fix command
Take advantage of TypedArray subarray when appropriate
The size and pos properties of Rectangle share the same array buffer (subarray); they may be used to set the rectangle's size and position
Prefer single line if syntax over adding curly braces, when the statement has a very concise expression and concise, single line statement
Do not replace &&= or ||= with = when there is no reason to do so. If you do find a reason to remove either &&= or ||=, leave a comment explaining why the removal occurred
When writing methods, prefer returning idiomatic JavaScript undefined over null

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/lib/litegraph/**/*.{ts,tsx}

📄 CodeRabbit inference engine (src/lib/litegraph/CLAUDE.md)

Type assertions are an absolute last resort. In almost all cases, they are a crutch that leads to brittle code

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
**/*.{ts,tsx,js,jsx,vue,json}

📄 CodeRabbit inference engine (AGENTS.md)

Code style: Use 2-space indentation, single quotes, no trailing semicolons, and 80-character line width (see .prettierrc)

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (AGENTS.md)

**/*.{ts,tsx,vue}: Imports must be sorted and grouped by plugin; run pnpm format before committing
Use TypeScript for type safety; never use any type - use proper TypeScript types
Never use as any type assertions; fix the underlying type issue instead
Use es-toolkit for utility functions
Write code that is expressive and self-documenting; avoid comments unless absolutely necessary; do not add or retain redundant comments
Keep functions short and functional
Minimize nesting in code (e.g., deeply nested if or for statements); apply the Arrow Anti-Pattern principle
Avoid mutable state; prefer immutability and assignment at point of declaration
Favor pure functions, especially testable ones

Files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
src/**/{services,composables}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/{services,composables}/**/*.{ts,tsx}: Use api.apiURL() for backend endpoints instead of constructing URLs directly
Use api.fileURL() for static file access instead of constructing URLs directly

Files:

  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
src/**/{composables,components}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Clean up subscriptions in state management to prevent memory leaks

Files:

  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
src/**/{components,composables}/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Use vue-i18n for ALL user-facing strings by adding them to src/locales/en/main.json

Files:

  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
🧠 Learnings (12)
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{js,ts,jsx,tsx} : Do not replace `&&=` or `||=` with `=` when there is no reason to do so. If you do find a reason to remove either `&&=` or `||=`, leave a comment explaining why the removal occurred

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{test,spec}.{ts,tsx} : Use provided test helpers `createTestSubgraph` and `createTestSubgraphNode` from `./fixtures/subgraphHelpers` for consistent subgraph test setup

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{test,spec}.{ts,tsx} : When writing tests for subgraph-related code, always import from the barrel export at `@/lib/litegraph/src/litegraph` to avoid circular dependency issues

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{ts,tsx} : Type assertions are an absolute last resort. In almost all cases, they are a crutch that leads to brittle code

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
📚 Learning: 2025-11-24T19:47:02.860Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: .github/copilot-instructions.md:0-0
Timestamp: 2025-11-24T19:47:02.860Z
Learning: Applies to src/**/*.ts : Use es-toolkit for utility functions

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
📚 Learning: 2025-12-09T03:39:54.501Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7169
File: src/platform/remote/comfyui/jobs/jobTypes.ts:1-107
Timestamp: 2025-12-09T03:39:54.501Z
Learning: In the ComfyUI_frontend project, Zod is on v3.x. Do not suggest Zod v4 standalone validators (z.uuid, z.ulid, z.cuid2, z.nanoid) until an upgrade to Zod 4 is performed. When reviewing TypeScript files (e.g., src/platform/remote/comfyui/jobs/jobTypes.ts) validate against Zod 3 capabilities and avoid introducing v4-specific features; flag any proposal to upgrade or incorporate v4-only validators and propose staying with compatible 3.x patterns.

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-12-13T11:03:11.264Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7416
File: src/stores/imagePreviewStore.ts:5-7
Timestamp: 2025-12-13T11:03:11.264Z
Learning: In the ComfyUI_frontend repository, lint rules require keeping 'import type' statements separate from non-type imports, even if importing from the same module. Do not suggest consolidating them into a single import statement. Ensure type imports remain on their own line (import type { ... } from 'module') and regular imports stay on separate lines.

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-12-11T12:25:15.470Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7358
File: src/components/dialog/content/signin/SignUpForm.vue:45-54
Timestamp: 2025-12-11T12:25:15.470Z
Learning: This repository uses CI automation to format code (pnpm format). Do not include manual formatting suggestions in code reviews for Comfy-Org/ComfyUI_frontend. If formatting issues are detected, rely on the CI formatter or re-run pnpm format. Focus reviews on correctness, readability, performance, accessibility, and maintainability rather than style formatting.

Applied to files:

  • src/lib/litegraph/src/canvas/LinkConnector.ts
  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts
  • src/renderer/core/canvas/links/linkConnectorAdapter.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{js,ts,jsx,tsx} : Take advantage of `TypedArray` `subarray` when appropriate

Applied to files:

  • src/lib/litegraph/src/canvas/MovingInputLink.ts
  • src/lib/litegraph/src/LGraphCanvas.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{js,ts,jsx,tsx} : When writing methods, prefer returning idiomatic JavaScript `undefined` over `null`

Applied to files:

  • src/lib/litegraph/src/canvas/MovingInputLink.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{test,spec}.{js,ts,jsx,tsx} : When adding features, always write vitest unit tests using cursor rules in @.cursor

Applied to files:

  • src/lib/litegraph/src/canvas/MovingInputLink.ts
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{js,ts,jsx,tsx} : Prefer single line `if` syntax over adding curly braces, when the statement has a very concise expression and concise, single line statement

Applied to files:

  • src/lib/litegraph/src/canvas/MovingInputLink.ts
🧬 Code graph analysis (4)
src/lib/litegraph/src/canvas/LinkConnector.ts (2)
src/lib/litegraph/src/Reroute.ts (1)
  • remove (476-481)
src/lib/litegraph/src/canvas/MovingInputLink.ts (1)
  • MovingInputLink (20-153)
src/lib/litegraph/src/canvas/MovingInputLink.ts (2)
src/lib/litegraph/src/interfaces.ts (1)
  • Point (229-229)
src/lib/litegraph/src/litegraph.ts (1)
  • LiteGraph (17-17)
src/renderer/core/canvas/links/linkConnectorAdapter.ts (1)
src/renderer/core/layout/types.ts (2)
  • RerouteId (42-42)
  • SlotLayout (55-61)
src/lib/litegraph/src/LGraphCanvas.ts (2)
src/lib/litegraph/src/canvas/MovingInputLink.ts (1)
  • MovingInputLink (20-153)
src/lib/litegraph/src/litegraph.ts (1)
  • MovingInputLink (167-167)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: deploy-and-comment
  • GitHub Check: lint-and-format
  • GitHub Check: test
  • GitHub Check: setup
  • GitHub Check: collect
🔇 Additional comments (6)
src/lib/litegraph/src/canvas/LinkConnector.ts (1)

1-1: The import and implementation are correct; no action needed.

The use of es-toolkit's remove() function is appropriate—it's an established dependency (^1.39.9) already used throughout the codebase. The type assertion (link as MovingLinkBase) is safe because MovingInputLink extends MovingLinkBase and implements the disconnect() method. The disconnectOnDrop flag is intentionally updated during dragging via drawConnectionCircle() and correctly reflects the cursor proximity at drop time—not a stale value, but live state.

src/renderer/extensions/vueNodes/composables/useSlotLinkInteraction.ts (1)

673-676: No changes needed. The layout object from layoutStore.getSlotLayout() is only read by beginFromInput() (accessing position.x and position.y); the adapter does not mutate it. Passing the store-owned reference directly is safe.

src/lib/litegraph/src/canvas/MovingInputLink.ts (2)

2-2: LGTM: Import added for runtime constant access.

The non-type import of LiteGraph is correctly used to access WIDGET_OUTLINE_COLOR in the new rendering method.


28-28: LGTM: Property correctly declared and initialized.

The disconnectOnDrop flag is appropriately initialized to true, enabling the disconnect-on-drop behavior by default.

Also applies to: 43-43

src/renderer/core/canvas/links/linkConnectorAdapter.ts (2)

1-1: LGTM: Type import correctly added.

Proper use of import type for the SlotLayout interface.


85-89: No issues to address. The code correctly uses the standard LiteGraph slot API.

The pos property is a documented, optional property of slot objects (declared in SlotBase.ts:35 and implemented in NodeSlot.ts:35) designed to store "the centre point of the slot." Setting input.pos before calling dragNewFromInput or moveInputLink is the intended usage pattern, not a side effect or maintainability concern. Other parts of the codebase (e.g., LGraphCanvas.ts:5672) explicitly expect input.pos to be set, and lifecycle cleanup (e.g., SubgraphNode.ts:217 deleting input.pos) is already handled appropriately. This follows the established LiteGraph API design.

@AustinMroz AustinMroz marked this pull request as draft December 14, 2025 01:00
@without-ordinary
Copy link

Stupid question, doesn't ctrl+alt+click doing this already?

@AustinMroz
Copy link
Collaborator Author

Yes. The functionality is similar and ctrl+alt+click is not being removed.

This functionality is

  • More discoverable and doesn't require remembering specific modifiers
  • Doesn't require a keyboard
  • 0 cost. Unless you're disconnecting a node and creating a new one directly on top, functionality is unchanged.

But I do value your opinon. Is there a problem I've missed?

@without-ordinary
Copy link

without-ordinary commented Dec 17, 2025

  • More discoverable and doesn't require remembering specific modifiers

Unless the user doesn't read patch notes and is expecting the default setting of Action on link release (No modifier) to be followed.

If this is an opt-in behavior that will be added under the existing Link Release settings or will have a clear visual cue that a different action will be preformed based on which side of a invisible radius the drop occurs on, then I retract the above.

The me that knows short link release will disconnect wants this. The me that didn't know that was an intentional change would be filing a bug report for link release being inconsistently broken. :v

When a link is dragged only a short disctance from an input slot before
being dropped on canvas, immediately disconnect it instead of displaying
the node search dialogue
Only applied on input links

Once snapped, stays disabled

Simplified logic

Some actual themeing
Moving the draw operation to the background means that the distance
check logic was no longer being tracked. since only a single bg draw was
made.

This is slightly less than ideal, but it's reasonable to expect that the
user will continually be dragging the mouse when moving links
@AustinMroz AustinMroz marked this pull request as ready for review February 23, 2026 19:23

const highlightPos = this._getHighlightPosition()
this.linkConnector.renderLinks
.filter((rl) => rl instanceof MovingInputLink)
Copy link
Contributor

Choose a reason for hiding this comment

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

Like this!

@DrJKL DrJKL assigned AustinMroz and unassigned DrJKL Feb 23, 2026
@AustinMroz AustinMroz merged commit d7546e6 into main Feb 23, 2026
28 checks passed
@AustinMroz AustinMroz deleted the austin/fast-disco branch February 23, 2026 19:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants