UNPKG

@neo4j-nvl/layout-workers

Version:

Layout workers for the Neo4j Visualization Library

10 lines (9 loc) 307 B
import { layout } from './cose-bilkent-layout-impl.js'; onconnect = ({ ports }) => { const port = ports[0]; port.onmessage = ({ data }) => { const { elements, spacingFactor } = data; const layoutData = layout(elements, spacingFactor); port.postMessage(layoutData); }; };