Skip to content

Commit 12aa389

Browse files
jdbocarslyml-evs
authored andcommitted
dynamically remove and re-add item nodes
1 parent 789bfd1 commit 12aa389

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

webapp/src/components/ItemGraph.vue

+24-24
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,13 @@
6969
</div>
7070

7171
<label for="ignore-items">Ignore connections to items:</label>
72-
<ItemSelect id="ignore-items" v-model="ignoreItems" multiple />
72+
<ItemSelect
73+
id="ignore-items"
74+
v-model="ignoreItems"
75+
multiple
76+
@option:selected="removeItemFromGraph"
77+
@option:deselected="readdItemToGraph"
78+
/>
7379

7480
<label for="ignore-collections">Ignore connections to collections:</label>
7581
<CollectionSelect id="ignore-collections" v-model="ignoreCollections" multiple />
@@ -165,37 +171,16 @@ export default {
165171
graphStyle: this.defaultGraphStyle,
166172
optionsDisplayed: false,
167173
ignoreItems: [],
174+
removedNodeData: {},
168175
ignoreCollections: [],
169176
labelStartingMaterialsByName: true,
170177
layoutIsRunning: true,
171178
};
172179
},
173-
computed: {
174-
filteredGraphData() {
175-
const ignoredItemIds = this.ignoreItems.map((d) => d.item_id);
176-
const ignoredCollectionIds = this.ignoreCollections.map(
177-
(d) => `Collection: ${d.collection_id}`,
178-
);
179-
return {
180-
edges: this.graphData.edges.filter(
181-
(edge) =>
182-
!(
183-
ignoredItemIds.includes(edge.data.source) ||
184-
ignoredItemIds.includes(edge.data.target) ||
185-
ignoredCollectionIds.includes(edge.data.source)
186-
),
187-
),
188-
nodes: this.graphData.nodes,
189-
};
190-
},
191-
},
192180
watch: {
193181
graphData() {
194182
this.generateCyNetworkPlot();
195183
},
196-
ignoreItems() {
197-
this.generateCyNetworkPlot();
198-
},
199184
ignoreCollections() {
200185
this.generateCyNetworkPlot();
201186
},
@@ -207,6 +192,21 @@ export default {
207192
this.generateCyNetworkPlot();
208193
},
209194
methods: {
195+
removeItemFromGraph(event) {
196+
const itemToIgnore = event[event.length - 1];
197+
const node = this.cy.$(`node[id="${itemToIgnore.item_id}"]`);
198+
if (node) {
199+
this.removedNodeData[itemToIgnore.item_id] = this.cy.remove(
200+
node.union(node.connectedEdges()),
201+
);
202+
}
203+
},
204+
readdItemToGraph(event) {
205+
if (this.removedNodeData && this.removedNodeData[event.item_id]) {
206+
this.removedNodeData[event.item_id].restore();
207+
delete this.removedNodeData[event.item_id];
208+
}
209+
},
210210
updateAndRunLayout() {
211211
this.layout && this.layout.stop();
212212
this.layoutIsRunning = true;
@@ -219,7 +219,7 @@ export default {
219219
}
220220
this.cy = cytoscape({
221221
container: document.getElementById("cy"),
222-
elements: this.filteredGraphData,
222+
elements: this.graphData,
223223
userPanningEnabled: true,
224224
minZoom: 0.5,
225225
maxZoom: 1,

0 commit comments

Comments
 (0)