Skip to content
Snippets Groups Projects
Commit ae868325 authored by Valentin Perrelle's avatar Valentin Perrelle
Browse files

[ivette] Dive: improves selection logic

parent b3b5f826
No related branches found
No related tags found
No related merge requests found
...@@ -103,7 +103,7 @@ class Dive { ...@@ -103,7 +103,7 @@ class Dive {
const data = ele.data(); const data = ele.data();
const commands = [{ const commands = [{
content: renderToString(ctxmenu.explore), content: renderToString(ctxmenu.explore),
select: () => this.explore(ele), select: () => { this.explore(ele); },
enabled: true, enabled: true,
}]; }];
if (data.kind === 'composite') { if (data.kind === 'composite') {
...@@ -414,13 +414,13 @@ class Dive { ...@@ -414,13 +414,13 @@ class Dive {
async add(marker: string) { async add(marker: string) {
const node = await this.exec(API.add, marker); const node = await this.exec(API.add, marker);
if (node) if (node)
this.selectNode(node); this.updateNodeSelection(node);
} }
explore(node: Cytoscape.NodeSingular): void { async explore(node: Cytoscape.NodeSingular) {
const id = parseInt(node.id(), 10); const id = parseInt(node.id(), 10);
if (id) if (id)
this.exec(API.explore, id); await this.exec(API.explore, id);
} }
show(node: Cytoscape.NodeSingular): void { show(node: Cytoscape.NodeSingular): void {
...@@ -435,12 +435,12 @@ class Dive { ...@@ -435,12 +435,12 @@ class Dive {
this.exec(API.hide, id); this.exec(API.hide, id);
} }
clickNode(node: Cytoscape.NodeSingular): void { async clickNode(node: Cytoscape.NodeSingular) {
this.selectNode(node); this.updateNodeSelection(node);
this.explore(node); await this.explore(node);
const writes = node.data()?.writes; const writes = node.data()?.writes;
if (writes) if (writes && writes.length)
this.onSelect?.(writes); this.onSelect?.(writes);
/* Cytoscape automatically selects the node clicked, and unselects all other /* Cytoscape automatically selects the node clicked, and unselects all other
...@@ -449,18 +449,21 @@ class Dive { ...@@ -449,18 +449,21 @@ class Dive {
node.unselectify(); node.unselectify();
} }
selectLocation(location: States.Location) { selectLocation(location: States.Location, doExplore: boolean) {
const selectNode = this.cy.$('node:selected'); if (location !== this.selectedLocation) {
const writes = selectNode?.data()?.writes; this.selectedLocation = location;
if (location.marker && !_.some(writes, location)) { const selectNode = this.cy.$('node:selected');
this.add(location.marker); const writes = selectNode?.data()?.writes;
} if (doExplore && location.marker && !_.some(writes, location)) {
else { this.add(location.marker);
this.selectNode(selectNode); // Update selection }
else {
this.updateNodeSelection(selectNode);
}
} }
} }
selectNode(node: Cytoscape.NodeSingular): void { updateNodeSelection(node: Cytoscape.NodeSingular): void {
const hasOrigin = (ele: Cytoscape.NodeSingular) => ( const hasOrigin = (ele: Cytoscape.NodeSingular) => (
_.some(ele.data().origins, this.selectedLocation) _.some(ele.data().origins, this.selectedLocation)
); );
...@@ -468,7 +471,11 @@ class Dive { ...@@ -468,7 +471,11 @@ class Dive {
select(node); select(node);
const edges = node.incomers('edge'); const edges = node.incomers('edge');
edges.unselect(); edges.unselect();
edges.filter(hasOrigin).select(); const relevantEdges = edges.filter(hasOrigin);
if (relevantEdges.empty())
edges.select();
else
relevantEdges.select();
} }
} }
...@@ -495,40 +502,21 @@ const GraphView = () => { ...@@ -495,40 +502,21 @@ const GraphView = () => {
dive.mode = selectionMode === 'follow' ? 'explore' : 'overview'; dive.mode = selectionMode === 'follow' ? 'explore' : 'overview';
}, [dive, selectionMode]); }, [dive, selectionMode]);
/* When clicking on a node, select its writes locations as a multiple
selection. If these locations were already selected, select the next
location in the multiple selection. */
useEffect(() => { useEffect(() => {
/* When clicking on a node, select its writes locations as a multiple
selection. If these locations were already selected, select the next
location in the multiple selection. */
dive.onSelect = (locations) => { dive.onSelect = (locations) => {
if (updateSelection) { if (_.isEqual(locations, selection?.multiple?.allSelections))
if (_.isEqual(locations, selection?.multiple?.allSelections)) { updateSelection('MULTIPLE_CYCLE');
updateSelection('MULTIPLE_CYCLE'); else
} updateSelection({ locations, index: 0 });
else {
updateSelection({
locations,
index: 0,
});
}
}
}; };
}, [dive, selection, updateSelection]);
useEffect(() => { // Updates the graph according to the selected marker.
const index = selection?.multiple?.index; if (selection?.current)
const allSelections = selection?.multiple?.allSelections; dive.selectLocation(selection?.current, !lock);
if (allSelections && 0 <= index && index < allSelections.length) { }, [dive, lock, selection, updateSelection]);
const selected = allSelections[index];
dive.selectedLocation = selected;
}
}, [dive, selection]);
// Updates the graph according to the selected marker.
useEffect(() => {
if (!lock && selection?.current) {
dive.selectLocation(selection?.current);
}
}, [dive, lock, selection, selectionMode]);
// Layout selection // Layout selection
const selectLayout = (layout?: string) => { const selectLayout = (layout?: string) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment