Package Exports
- @antv/g6-extension-react
- @antv/g6-extension-react/esm/index.js
- @antv/g6-extension-react/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@antv/g6-extension-react) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React extension for G6
This extension allows you to define G6 node by React component and JSX syntax.
Usage
- Install
npm install @antv/g6-extension-react- Import and Register
import { ExtensionCategory, register } from '@antv/g6';
import { ReactNode } from '@antv/g6-extension-react';
register(ExtensionCategory.NODE, 'react', ReactNode);- Define Node
React Node:
const ReactNode = () => {
return <div>node</div>;
};G Node:
import { Group, Rect, Text } from '@antv/g6-extension-react';
const GNode = () => {
return <Group>
<Rect width={100} height={100}></Rect>
<Text text={"node"} />
<Group>
};- Use
Use ReactNode:
const graph = new Graph({
// ... other options
node: {
type: 'react',
style: {
component: () => <ReactNode />,
},
},
});Use GNode:
const graph = new Graph({
// ... other options
node: {
type: 'g',
style: {
component: () => <GNode />,
},
},
});Q&A
- Difference between ReactNode and GNode
ReactNode is a React component, while GNode support jsx syntax but can only use G tag node.