1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Created Design: Editor Events (markdown)

Nick O'Leary 2015-07-04 21:30:52 +01:00
parent 84ee2f7de7
commit 8a683a858e

10
Design:-Editor-Events.md Normal file

@ -0,0 +1,10 @@
The follow components emit events for the internal workings of the editor. Need to decide if it makes sense to expose these directly as part of the API, or hide them behind a single `RED.events` component.
| Component | Event | Args | Description |
|-----------|-------|------|-------------|
|`RED.nodes` | `change` | `{ dirty: true/false }` | The 'dirty' state of the flow has changed.|
|`RED.sidebar` | `resize` | | The sidebar has changed size.|
|`RED.view` | `selection-changed` | `{ nodes: [], link: link }` | The node selection has changed. |
|`RED.workspaces` | `change` | `{ old: 'tab-id', workspace: 'tab-id' }` | The visible workspace tab has changed |