()
| 707 | |
| 708 | // Hotkeys handlers |
| 709 | private selectAllNodes(): void { |
| 710 | if (!d3.event.shiftKey) { |
| 711 | this.state.selection.clear(); |
| 712 | } |
| 713 | const allVisibleNodes = [...this.graph.nodes(node => node.visible)]; |
| 714 | this.state.selection.select(allVisibleNodes, true); |
| 715 | this.updateGraphVisibility(); |
| 716 | } |
| 717 | |
| 718 | private selectOrigins(): void { |
| 719 | const selection = new SelectionStorage(); |
no test coverage detected