You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow executing components and pipelines as part of code.
This can significantly improve flexibility of the system.
Imported code should be a promise/observable due to the nature of the platform (we'll need to pre-compile it on server before it can be used).
Example pseudo-code:
importcomponentPromisefrom'user/c/component';// or 'user/p/pipeline'exportdefault(data)=>Rx.Observable.create(obs=>{componentPromise.then(component=>component(data).subscribe(obs));});
The text was updated successfully, but these errors were encountered:
Allow executing components and pipelines as part of code.
This can significantly improve flexibility of the system.
Imported code should be a promise/observable due to the nature of the platform (we'll need to pre-compile it on server before it can be used).
Example pseudo-code:
The text was updated successfully, but these errors were encountered: