Andraž Kos
Andraž Kos
When rendering Flume NodeEditor as a subwindow of a bigger app, general appearance needs to blend in with the rest to look professional. I'm trying to override the background styling,...
I see theming/styling dilemma as the "css !important clobbering vs javascript style override", but we could simply have both available. Sometimes it is way simpler to just clobber a class...
My preferred way of styling would be with the override prop, which would apply the extra styling when element gets created. At the moment I'm using this (which looks quite...
Yes, if I can get NodeEditor ref function to trigger an update manually, then I can control the updates that way. p.s.: The connections bug was on the store side,...
DefaultNodes should also include defaultConnections, else initial nodes won't be connected when initializing a graph. https://github.com/chrisjpatty/flume/blob/master/docs/docs/NodeEditor.mdx#defaultnodes--arrayobject
The third node works like the demonstration "login/signup" example - it is an external UI component. It is controlled by the second node inputs. I've added a custom input port...
If I'm understanding you correctly the nodes _are a graphical representation of the logic network_, but individual nodes _never receive live data_ while it is getting calculated because the execution...
Same here, client number shows, pwr = 0. Running on latest Kali in VirtualBox.
Your problem is caused by re-computing the same exact data thousands of times for no good reason. In the cloud CPU is expensive, disk is practically free. Use functions to...