Control

export default class CodeBoxControl extends Rete.Control {
  static component = (props) => {
    return <div>test1</div>
  }
  // DON'T use `render` function, it will override the original render function
  // render () {
  //   return <div>test2</div>
  // }
}

Remove all nodes and connections

editor.clear();

Control

How to get node in control

Node is the parent of control.

class InputControl extends Rete.Control {
  constructor(emitter, key) {
    // not ready
    console.log(this.parent); // null
  }
  
  handleChange(val) {
    console.log(this.parent); // Node {name:"",id:1}
  }
}

How to get data and save data in control

class InputControl extends Rete.Control {
  handleChange(val) {
    // this.key is the current control key
    console.log('old val:', this.getData(this.key)); // old val: 1
    this.setData(this.key, 2); // new val: 2
  }
}

How to rerender after data update

To rerender control

class InputControl extends Rete.Control {
  static component = ({ value }) => <input value={value} />
  handleChange(val) {
    this.props.value = '123'; // pass value to react component
    this.update(); // Call react to render this control only
  }
}
// The implementation of control.update()
// ```js
// control.update = () => new Promise((res) => {
//   render(<Component {...control.props} />, el, res)
// });
// ```

To rerender node

export default class ConcatComponent extends Rete.Component {
  builder(node) {
    const handleChange = () => {
      node.removeOutput(node.outputs.get(ctrKey)); // remove a output
      node.update(); // Rerender ConcatComponent
    }
  }
}
// The implementation of node.update()
// ```js
// node.update = () => new Promise((res) => {
//   render(<Component node={node} editor={editor} bindSocket={bindSocket} bindControl={bindControl} />, el, res)
// });
// ```