{
let hierarchyData = layout('jeff.skilling@enron.com', { nodes: nodes, edges: edges })
const { x, y, zoom } = trellis.boundsToViewport(
trellis.getSelectionBounds(hierarchyData.nodes, 40),
{ width: width, height: 600 }
)
const options = {
x,
y,
zoom,
width: width,
height: 600,
onNodePointerUp: ({ target: { id } }) => {
hierarchyData = layout(id, { nodes: nodes, edges: edges })
render({ nodes: hierarchyData.nodes, edges: hierarchyData.edges, options })
}
}
render({ nodes: hierarchyData.nodes, edges: hierarchyData.edges, options })
}