69
69
</div >
70
70
71
71
<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
+ />
73
79
74
80
<label for =" ignore-collections" >Ignore connections to collections:</label >
75
81
<CollectionSelect id =" ignore-collections" v-model =" ignoreCollections" multiple />
@@ -165,37 +171,16 @@ export default {
165
171
graphStyle: this .defaultGraphStyle ,
166
172
optionsDisplayed: false ,
167
173
ignoreItems: [],
174
+ removedNodeData: {},
168
175
ignoreCollections: [],
169
176
labelStartingMaterialsByName: true ,
170
177
layoutIsRunning: true ,
171
178
};
172
179
},
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
- },
192
180
watch: {
193
181
graphData () {
194
182
this .generateCyNetworkPlot ();
195
183
},
196
- ignoreItems () {
197
- this .generateCyNetworkPlot ();
198
- },
199
184
ignoreCollections () {
200
185
this .generateCyNetworkPlot ();
201
186
},
@@ -207,6 +192,21 @@ export default {
207
192
this .generateCyNetworkPlot ();
208
193
},
209
194
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
+ },
210
210
updateAndRunLayout () {
211
211
this .layout && this .layout .stop ();
212
212
this .layoutIsRunning = true ;
@@ -219,7 +219,7 @@ export default {
219
219
}
220
220
this .cy = cytoscape ({
221
221
container: document .getElementById (" cy" ),
222
- elements: this .filteredGraphData ,
222
+ elements: this .graphData ,
223
223
userPanningEnabled: true ,
224
224
minZoom: 0.5 ,
225
225
maxZoom: 1 ,
0 commit comments