Igor Khokhriakov
Igor Khokhriakov
Refactoring progress.
Following up on the meeting on Apr, 25th here are some use cases, that might be interesting for consideration when thinking about NP API, egress controllers etc Suppose we have...
Goal: integrate [waltz-grid-widget](https://github.com/waltz-controls/waltz-grid-widget)
Some ideas: - backend based on ScriptingEngine, as main functionality of this widget is a special case of a scripting - responsive UI/UX - accepts devices with position, and stop...
ScalarWidget MUST receive DataSource (Observable) and subscribe to it: ```js class ScalarWidget extends WaltzWidget { /** * @param {Observable} dataSource */ constructor(dataSource, /*...*/){ super(/*...*/) this.dataSource = dataSource; this.dataSource.subscribe(data => this.view.update(data))...