How do I save a node as a template that I can drag into the editor
See original GitHub issueDescribe the solution you’d like save a node as a template that I can drag into the editor
Something like #209 needs to regenerate the ID of each node. But how do I save it in the sidebar and drag it?
The second parameter can now only be ReactElement, and it should be possible to customize the NodeTree type
connectors.create(
ref,
<Element />
)
should like this
connectors.create(
ref,
// executed at the start of each drag to generate a new id for each node
() => {
const nodeTree = ...;
const newNodeId = getRandomId();
......
return nodeTree;
}
)
Issue Analytics
- State:
- Created 2 years ago
- Comments:16 (5 by maintainers)
Top Results From Across the Web
Node Template??? - Blackmagic Forum • View topic
1. Select all the nodes on the Fusion flow. ... 5. Save the text file with a .setting extension. Or, a different method:...
Read more >Using the Node-Red Template Node
In this tutorial we will discuss the HTML template node which is a core node, and is located in the function section.
Read more >How to save a diagram as node Template? - GoJS
I want create a diagram useing some base shapes of GoJS,and then save the diagram as a node template use it to another...
Read more >How To Save & Reuse YOUR Effects In Davinci Resolve ...
Do you want to learn how to save your davinci resolve Fusion creations so you can use them over and over again to...
Read more >Workflow Template Editor - PTC Support
◦ Click and drag nodes to rearrange them. ◦ To view the properties of an element, click any link or arrow. You can...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@hugominas This example can save the template anywhere you want, but you can’t drag it from the sidebar to the editor yet, maybe when my PR passes.
#317 Released in 0.2.0-beta.2 🎉