Conversation
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
3 tasks
13170d5 to
4368a59
Compare
3 tasks
4368a59 to
cfcd2af
Compare
6115f43 to
8dca03b
Compare
cfcd2af to
8664f30
Compare
3 tasks
8664f30 to
87ae569
Compare
8dca03b to
f0ac49b
Compare
87ae569 to
4350d76
Compare
This was referenced Feb 3, 2026
Merged
f0ac49b to
d8bc666
Compare
4350d76 to
0e1efcd
Compare
8 tasks
0e1efcd to
7c93536
Compare
d8bc666 to
47ebeb8
Compare
7c93536 to
2af69e9
Compare
This was referenced Feb 3, 2026
2af69e9 to
f1ed428
Compare
47ebeb8 to
31dfecb
Compare
7c35804 to
7effb1c
Compare
a7a6429 to
7e1e9cd
Compare
maxy-shpfy
reviewed
Feb 18, 2026
src/components/shared/ReactFlow/FlowCanvas/utils/updateNodePosition.ts
Outdated
Show resolved
Hide resolved
8f7a3c3 to
d5196e4
Compare
7e1e9cd to
350000b
Compare
d5196e4 to
16bbb8e
Compare
16bbb8e to
8a45198
Compare
ac6e50b to
f9df251
Compare
8a45198 to
67ffaaa
Compare
4dfd416 to
a2ef9b5
Compare
9e0b22b to
329fafd
Compare
25650b0 to
e36e164
Compare
329fafd to
2536e0f
Compare
e36e164 to
8e10e5f
Compare
2536e0f to
2bf389c
Compare
2bf389c to
f2bdca4
Compare
f2bdca4 to
ce8d183
Compare
Collaborator
Author
This was referenced Feb 20, 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.

Description
Adds a basic static FlexNode component to the canvas when the
flex-nodesannotation has appropriate data (saved as a JSON string). The flex node cannot be interacted with beyond moving it around.Flex Nodes (aka "Sticky Notes") have the following attributes:
Flex Nodes can be found & defined directly in the component spec at
spec.metadata.annotations["flex-nodes"] = JSON.stringify(FlexNode[])Note this PR does not include a method of adding Flex Nodes to the canvas via UI. Nor does it add editing & basic canvas operations (e.g. delete). These features are added further upstack.
Related Issue and Pull requests
Progresses https://github.com/Shopify/oasis-frontend/issues/118
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
Create a component spec and define one ore more Sticky Notes via
spec.metadata.annotations["flex-nodes"], using the type structure provided. The created sticky notes should render on the canvas when the pipeline is imported.Note! Flex Nodes are saved in the spec as a JSON string. Remember to stringify the entire Flex Node array when defining them in the spec.
Alternatively, go upstack to test via a UI-based solution.
Additional Comments