sigmacomputing / plugin

MIT License
2 stars 1 forks source link

Plugin action-effect support #13

Closed alisonjlai closed 4 months ago

alisonjlai commented 4 months ago

Corresponding PR on Slate: https://github.com/sigmacomputing/slate/pull/35490

How it will look like in custom plugin:

useEditorPanelConfig([{ type: 'action-effect', name: 'exampleEffect' }]);

useActionEffect(config.exampleEffect, triggerEffect);

function triggerEffect() {
 //...
}