@riil-frontend/component-topology-graph
v4.0.7
Published
Topo graph
Downloads
143
Readme
TopoView
- category: Components
- chinese: 拓扑组件
- type: UI
展示与编辑拓扑图。
安装
npm install @riil-frontend/component-topology-graph --save
方法
为满足组件使用者主动触发组件功能的需要,拓扑组件对外开放了一些函数。使用者可通过React Ref的方式获取组件的实例,进而调用开放的方法:
import TopoView from '@riil-frontend/component-topology-graph';
const ref = useRef();
// In effects, event handler, etc.
ref.current.emitEvent(event); // Call exposed APIs
<TopoView
ref={ref}
data={DATA}
onEvent={EVENT_HANDLER}
/>