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.
This PR adds support for a new type of Node - the Macro
Macro nodes address 2 issues:
Another great example is the "Switch" node - nowadays, it requires the user to feed a value, and individual cases, all as inputs. With macro nodes, the user can configure the amount of cases needed, and receive a dynamic number of outputs based on the cases inputed.
Authors of a macro node can provide a custom React component that will be in charge of rendering UI control for the macro's value. The UI control should be bundled using the example webpack config and will be dynamically loaded into the flyde editor once the macro node is edited.
Macro node will also enable dropping the "Inline value" support in core, and move it out to the user-world, in the standard library, which is another nice win.