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.
What type of PR is this? (check all applicable)
Description
feat: make primitive node titles consistent
fix(ui): fix context menu on workflow editor
There is a tricky mouse event interaction between chakra's
useOutsideClick()
hook (used by chakra<Menu />
) and reactflow. The hook doesn't work when you click the main reactflow area.To get around this, I've used a dirty hack, copy-pasting the simple context menu component we use, and extending it slightly to respond to a global
contextMenusClosed
redux action.fix(ui): improve node rendering performance
Previously the editor was using prop-drilling node data and templates to get values deep into nodes. This ended up causing very noticeable performance degradation. For example, any text entry fields were super laggy.
Refactor the whole thing to use memoized selectors via hooks. The hooks are mostly very narrow, returning only the data needed.
Data objects are never passed down, only node id and field name - sometimes the field kind ('input' or 'output').
The end result is a much smoother node editor with very minimal rerenders. This ended up being a fairly large change but the perf was unacceptable.
Before (note the terrible lag when editing the notes):
Screen.Recording.2023-08-16.at.10.19.25.pm.mov
After:
Screen.Recording.2023-08-16.at.10.20.48.pm.mov