feat(joint-core): Graph cell namespace and type constructor API#3275
Merged
Geliogabalus merged 9 commits intoclientIO:masterfrom Apr 14, 2026
Merged
Conversation
Retrieve frozen default attributes for a cell type by looking up its constructor in the cellNamespace. Results are cached per graph instance. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…Graph Add public accessors for the cell namespace and type constructor resolution. Refactor getTypeDefaults() to use getTypeConstructor(). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The constructor lookup logic lives next to the cellNamespace it queries. Graph.getTypeConstructor() delegates to layerCollection. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Geliogabalus
approved these changes
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
graph.getCellNamespace()/graph.setCellNamespace(namespace)— get/set the cell namespace, setter invalidates type defaults cachegraph.getTypeConstructor(type)— resolve a cell type string (e.g.'standard.Rectangle') to its constructor, generic typed<T extends Cell>graph.getTypeDefaults(type)— return frozen, cached default attributes for a cell typegraphLayerCollection.getTypeConstructor(type)— single source of truth for constructor lookups, includescellNamespacenull guardCellCollection.model()to delegate tolayerCollection.getTypeConstructor()instead of duplicating the lookupPaper.defaultLinkto usegraph.getTypeConstructor('standard.Link')instead of reaching intolayerCollection.cellNamespaceCellCollection.cellNamespaceproperty — now a getter that reads fromlayerCollection.cellNamespacecellNamespacepropagation fromGraphLayerCollection._addReference/_removeReference🤖 Generated with Claude Code