This library lets you draw lines between elements (demo).
yarn add react-connect-lines
or npm i react-connect-lines
First, wrap your app with the ConnectProvider
. Then, wrap the elements you want to connect with the Connect
component.
The Connect
component accepts two props:
id
– unqiue identifier to use when connecting elementsconnectWith
– an array of objects which configures connections and their appearance. The available configurations are:id: string
– the element to connect withstroke?: "dashed" | "solid"
– the look of the line (solid
is default)edge?: "bezier" | "step"
– the curve of the line (bezier
is default)color?: string
– the color of the line (#000000
is default)
import {ConnectProvider, Connect} from 'react-connect-lines'
export function MyApp() {
return (
<ConnectProvider>
<Connect
id="element-1"
connectWith={[
{id: 'element-2', color: 'red', stroke: 'dashed'},
{id: 'element-3', edge: 'step'},
]}
>
<MyElement1 />
</Connect>
<Connect id="element-2">
<MyElement2 />
</Connect>
<Connect id="element-3">
<MyElement3 />
</Connect>
</ConnectProvider>
)
}
It is possible to skip the ConnectProvider
and the Connect
component - and only use the ConnectLines
component.
import {ConnectLines, ConnectElement} from 'react-connect-lines'
const ELEMENTS: ConnectElement[] = [
{id: 'id-1', connectWith: [{id: 'id-2'}]},
{id: 'id-2', connectWith: [{id: 'id-3'}]},
{id: 'id-3', connectWith: [{id: 'id-1'}]},
]
export function MyApp() {
return (
<div>
<MyElement id="id-1" />
<MyElement id="id-2" />
<MyElement id="id-3" />
<ConnectLines elements={ELEMENTS} />
</div>
)
}
import {ConnectLines, ConnectElement} from 'react-connect-lines'
export function MyApp() {
const [el1, setEl1] = useState<HTMLElement | null>(null)
const [el2, setEl2] = useState<HTMLElement | null>(null)
const [el3, setEl3] = useState<HTMLElement | null>(null)
const elements: ConnectElement[] = useMemo(
() => [
{id: 'id-1', element: el1, connectWith: [{id: 'id-2'}]},
{id: 'id-2', element: el2, connectWith: [{id: 'id-3'}]},
{id: 'id-3', element: el3, connectWith: [{id: 'id-1'}]},
],
[el1, el2, el3]
)
return (
<div>
<MyElement ref={setEl1} />
<MyElement ref={setEl2} />
<MyElement ref={setEl3} />
<ConnectLines elements={elements} />
</div>
)
}