vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1138 lines
37 KiB

  1. let util = require('../../util');
  2. let Hammer = require('../../module/hammer');
  3. let hammerUtil = require('../../hammerUtil');
  4. /**
  5. * clears the toolbar div element of children
  6. *
  7. * @private
  8. */
  9. class ManipulationSystem {
  10. constructor(body, canvas, selectionHandler) {
  11. this.body = body;
  12. this.canvas = canvas;
  13. this.selectionHandler = selectionHandler;
  14. this.editMode = false;
  15. this.manipulationDiv = undefined;
  16. this.editModeDiv = undefined;
  17. this.closeDiv = undefined;
  18. this.manipulationHammers = [];
  19. this.temporaryUIFunctions = {};
  20. this.temporaryEventFunctions = [];
  21. this.touchTime = 0;
  22. this.temporaryIds = {nodes: [], edges:[]};
  23. this.guiEnabled = false;
  24. this.inMode = false;
  25. this.selectedControlNode = undefined;
  26. this.options = {};
  27. this.defaultOptions = {
  28. enabled: false,
  29. initiallyActive: false,
  30. addNode: true,
  31. addEdge: true,
  32. editNode: undefined,
  33. editEdge: true,
  34. deleteNode: true,
  35. deleteEdge: true,
  36. controlNodeStyle:{
  37. shape:'dot',
  38. size:6,
  39. color: {background: '#ff0000', border: '#3c3c3c', highlight: {background: '#07f968', border: '#3c3c3c'}},
  40. borderWidth: 2,
  41. borderWidthSelected: 2
  42. }
  43. };
  44. util.extend(this.options, this.defaultOptions);
  45. this.body.emitter.on('destroy', () => {this._clean();});
  46. this.body.emitter.on('_dataChanged',this._restore.bind(this));
  47. this.body.emitter.on('_resetData', this._restore.bind(this));
  48. }
  49. /**
  50. * If something changes in the data during editing, switch back to the initial datamanipulation state and close all edit modes.
  51. * @private
  52. */
  53. _restore() {
  54. if (this.inMode !== false) {
  55. if (this.options.initiallyActive === true) {
  56. this.enableEditMode();
  57. }
  58. else {
  59. this.disableEditMode();
  60. }
  61. }
  62. }
  63. /**
  64. * Set the Options
  65. * @param options
  66. */
  67. setOptions(options, allOptions, globalOptions) {
  68. if (allOptions !== undefined) {
  69. if (allOptions.locale !== undefined) {this.options.locale = allOptions.locale} else {this.options.locale = globalOptions.locale;}
  70. if (allOptions.locales !== undefined) {this.options.locales = allOptions.locales} else {this.options.locales = globalOptions.locales;}
  71. }
  72. if (options !== undefined) {
  73. if (typeof options === 'boolean') {
  74. this.options.enabled = options;
  75. }
  76. else {
  77. this.options.enabled = true;
  78. util.deepExtend(this.options, options);
  79. }
  80. if (this.options.initiallyActive === true) {
  81. this.editMode = true;
  82. }
  83. this._setup();
  84. }
  85. }
  86. /**
  87. * Enable or disable edit-mode. Draws the DOM required and cleans up after itself.
  88. *
  89. * @private
  90. */
  91. toggleEditMode() {
  92. if (this.editMode === true) {
  93. this.disableEditMode();
  94. }
  95. else {
  96. this.enableEditMode();
  97. }
  98. }
  99. enableEditMode() {
  100. this.editMode = true;
  101. this._clean();
  102. if (this.guiEnabled === true) {
  103. this.manipulationDiv.style.display = 'block';
  104. this.closeDiv.style.display = 'block';
  105. this.editModeDiv.style.display = 'none';
  106. this.showManipulatorToolbar();
  107. }
  108. }
  109. disableEditMode() {
  110. this.editMode = false;
  111. this._clean();
  112. if (this.guiEnabled === true) {
  113. this.manipulationDiv.style.display = 'none';
  114. this.closeDiv.style.display = 'none';
  115. this.editModeDiv.style.display = 'block';
  116. this._createEditButton();
  117. }
  118. }
  119. /**
  120. * Creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar.
  121. *
  122. * @private
  123. */
  124. showManipulatorToolbar() {
  125. // restore the state of any bound functions or events, remove control nodes, restore physics
  126. this._clean();
  127. // reset global variables
  128. this.manipulationDOM = {};
  129. // if the gui is enabled, draw all elements.
  130. if (this.guiEnabled === true) {
  131. // a _restore will hide these menus
  132. this.editMode = true;
  133. this.manipulationDiv.style.display = 'block';
  134. this.closeDiv.style.display = 'block';
  135. let selectedNodeCount = this.selectionHandler._getSelectedNodeCount();
  136. let selectedEdgeCount = this.selectionHandler._getSelectedEdgeCount();
  137. let selectedTotalCount = selectedNodeCount + selectedEdgeCount;
  138. let locale = this.options.locales[this.options.locale];
  139. let needSeperator = false;
  140. if (this.options.addNode !== false) {
  141. this._createAddNodeButton(locale);
  142. needSeperator = true;
  143. }
  144. if (this.options.addEdge !== false) {
  145. if (needSeperator === true) {
  146. this._createSeperator(1);
  147. } else {
  148. needSeperator = true;
  149. }
  150. this._createAddEdgeButton(locale);
  151. }
  152. if (selectedNodeCount === 1 && typeof this.options.editNode === 'function') {
  153. if (needSeperator === true) {
  154. this._createSeperator(2);
  155. } else {
  156. needSeperator = true;
  157. }
  158. this._createEditNodeButton(locale);
  159. }
  160. else if (selectedEdgeCount === 1 && selectedNodeCount === 0 && this.options.editEdge !== false) {
  161. if (needSeperator === true) {
  162. this._createSeperator(3);
  163. } else {
  164. needSeperator = true;
  165. }
  166. this._createEditEdgeButton(locale);
  167. }
  168. // remove buttons
  169. if (selectedTotalCount !== 0) {
  170. if (selectedNodeCount > 0 && this.options.deleteNode !== false) {
  171. if (needSeperator === true) {
  172. this._createSeperator(4);
  173. }
  174. this._createDeleteButton(locale);
  175. }
  176. else if (selectedNodeCount === 0 && this.options.deleteEdge !== false) {
  177. if (needSeperator === true) {
  178. this._createSeperator(4);
  179. }
  180. this._createDeleteButton(locale);
  181. }
  182. }
  183. // bind the close button
  184. this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this));
  185. // refresh this bar based on what has been selected
  186. this._temporaryBindEvent('select', this.showManipulatorToolbar.bind(this));
  187. }
  188. // redraw to show any possible changes
  189. this.body.emitter.emit('_redraw');
  190. }
  191. /**
  192. * Create the toolbar for adding Nodes
  193. */
  194. addNodeMode() {
  195. // when using the gui, enable edit mode if it wasnt already.
  196. if (this.editMode !== true) {
  197. this.enableEditMode();
  198. }
  199. // restore the state of any bound functions or events, remove control nodes, restore physics
  200. this._clean();
  201. this.inMode = 'addNode';
  202. if (this.guiEnabled === true) {
  203. let locale = this.options.locales[this.options.locale];
  204. this.manipulationDOM = {};
  205. this._createBackButton(locale);
  206. this._createSeperator();
  207. this._createDescription(locale['addDescription'] || this.options.locales['en']['addDescription']);
  208. // bind the close button
  209. this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this));
  210. }
  211. this._temporaryBindEvent('click', this._performAddNode.bind(this));
  212. }
  213. /**
  214. * call the bound function to handle the editing of the node. The node has to be selected.
  215. */
  216. editNode() {
  217. // when using the gui, enable edit mode if it wasnt already.
  218. if (this.editMode !== true) {
  219. this.enableEditMode();
  220. }
  221. // restore the state of any bound functions or events, remove control nodes, restore physics
  222. this._clean();
  223. let node = this.selectionHandler._getSelectedNode();
  224. if (node !== undefined) {
  225. this.inMode = 'editNode';
  226. if (typeof this.options.editNode === 'function') {
  227. if (node.isCluster !== true) {
  228. let data = util.deepExtend({}, node.options, true);
  229. data.x = node.x;
  230. data.y = node.y;
  231. if (this.options.editNode.length === 2) {
  232. this.options.editNode(data, (finalizedData) => {
  233. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'editNode') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback) {
  234. this.body.data.nodes.getDataSet().update(finalizedData);
  235. }
  236. this.showManipulatorToolbar();
  237. });
  238. }
  239. else {
  240. throw new Error('The function for edit does not support two arguments (data, callback)');
  241. }
  242. }
  243. else {
  244. alert(this.options.locales[this.options.locale]['editClusterError'] || this.options.locales['en']['editClusterError']);
  245. }
  246. }
  247. else {
  248. throw new Error('No function has been configured to handle the editing of nodes.');
  249. }
  250. }
  251. else {
  252. this.showManipulatorToolbar();
  253. }
  254. }
  255. /**
  256. * create the toolbar to connect nodes
  257. */
  258. addEdgeMode() {
  259. // when using the gui, enable edit mode if it wasnt already.
  260. if (this.editMode !== true) {
  261. this.enableEditMode();
  262. }
  263. // restore the state of any bound functions or events, remove control nodes, restore physics
  264. this._clean();
  265. this.inMode = 'addEdge';
  266. if (this.guiEnabled === true) {
  267. let locale = this.options.locales[this.options.locale];
  268. this.manipulationDOM = {};
  269. this._createBackButton(locale);
  270. this._createSeperator();
  271. this._createDescription(locale['edgeDescription'] || this.options.locales['en']['edgeDescription']);
  272. // bind the close button
  273. this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this));
  274. }
  275. // temporarily overload functions
  276. this._temporaryBindUI('onTouch', this._handleConnect.bind(this));
  277. this._temporaryBindUI('onDragEnd', this._finishConnect.bind(this));
  278. this._temporaryBindUI('onDrag', this._dragControlNode.bind(this));
  279. this._temporaryBindUI('onRelease', this._finishConnect.bind(this));
  280. this._temporaryBindUI('onDragStart', () => {});
  281. this._temporaryBindUI('onHold', () => {});
  282. }
  283. /**
  284. * create the toolbar to edit edges
  285. */
  286. editEdgeMode() {
  287. // when using the gui, enable edit mode if it wasn't already.
  288. if (this.editMode !== true) {
  289. this.enableEditMode();
  290. }
  291. // restore the state of any bound functions or events, remove control nodes, restore physics
  292. this._clean();
  293. this.inMode = 'editEdge';
  294. if (this.guiEnabled === true) {
  295. let locale = this.options.locales[this.options.locale];
  296. this.manipulationDOM = {};
  297. this._createBackButton(locale);
  298. this._createSeperator();
  299. this._createDescription(locale['editEdgeDescription'] || this.options.locales['en']['editEdgeDescription']);
  300. // bind the close button
  301. this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this));
  302. }
  303. this.edgeBeingEditedId = this.selectionHandler.getSelectedEdges()[0];
  304. if (this.edgeBeingEditedId !== undefined) {
  305. let edge = this.body.edges[this.edgeBeingEditedId];
  306. // create control nodes
  307. let controlNodeFrom = this._getNewTargetNode(edge.from.x, edge.from.y);
  308. let controlNodeTo = this._getNewTargetNode(edge.to.x, edge.to.y);
  309. this.temporaryIds.nodes.push(controlNodeFrom.id);
  310. this.temporaryIds.nodes.push(controlNodeTo.id);
  311. this.body.nodes[controlNodeFrom.id] = controlNodeFrom;
  312. this.body.nodeIndices.push(controlNodeFrom.id);
  313. this.body.nodes[controlNodeTo.id] = controlNodeTo;
  314. this.body.nodeIndices.push(controlNodeTo.id);
  315. // temporarily overload UI functions, cleaned up automatically because of _temporaryBindUI
  316. this._temporaryBindUI('onTouch', this._controlNodeTouch.bind(this)); // used to get the position
  317. this._temporaryBindUI('onTap', () => {}); // disabled
  318. this._temporaryBindUI('onHold', () => {}); // disabled
  319. this._temporaryBindUI('onDragStart', this._controlNodeDragStart.bind(this));// used to select control node
  320. this._temporaryBindUI('onDrag', this._controlNodeDrag.bind(this)); // used to drag control node
  321. this._temporaryBindUI('onDragEnd', this._controlNodeDragEnd.bind(this)); // used to connect or revert control nodes
  322. this._temporaryBindUI('onMouseMove', () => {}); // disabled
  323. // create function to position control nodes correctly on movement
  324. // automatically cleaned up because we use the temporary bind
  325. this._temporaryBindEvent('beforeDrawing', (ctx) => {
  326. let positions = edge.edgeType.findBorderPositions(ctx);
  327. if (controlNodeFrom.selected === false) {
  328. controlNodeFrom.x = positions.from.x;
  329. controlNodeFrom.y = positions.from.y;
  330. }
  331. if (controlNodeTo.selected === false) {
  332. controlNodeTo.x = positions.to.x;
  333. controlNodeTo.y = positions.to.y;
  334. }
  335. });
  336. this.body.emitter.emit('_redraw');
  337. }
  338. else {
  339. this.showManipulatorToolbar();
  340. }
  341. }
  342. /**
  343. * delete everything in the selection
  344. */
  345. deleteSelected() {
  346. // when using the gui, enable edit mode if it wasnt already.
  347. if (this.editMode !== true) {
  348. this.enableEditMode();
  349. }
  350. // restore the state of any bound functions or events, remove control nodes, restore physics
  351. this._clean();
  352. this.inMode = 'delete';
  353. let selectedNodes = this.selectionHandler.getSelectedNodes();
  354. let selectedEdges = this.selectionHandler.getSelectedEdges();
  355. let deleteFunction = undefined;
  356. if (selectedNodes.length > 0) {
  357. for (let i = 0; i < selectedNodes.length; i++) {
  358. if (this.body.nodes[selectedNodes[i]].isCluster === true) {
  359. alert(this.options.locales[this.options.locale]['deleteClusterError'] || this.options.locales['en']['deleteClusterError']);
  360. return;
  361. }
  362. }
  363. if (typeof this.options.deleteNode === 'function') {
  364. deleteFunction = this.options.deleteNode;
  365. }
  366. }
  367. else if (selectedEdges.length > 0) {
  368. if (typeof this.options.deleteEdge === 'function') {
  369. deleteFunction = this.options.deleteEdge;
  370. }
  371. }
  372. if (typeof deleteFunction === 'function') {
  373. let data = {nodes: selectedNodes, edges: selectedEdges};
  374. if (deleteFunction.length === 2) {
  375. deleteFunction(data, (finalizedData) => {
  376. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'delete') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback) {
  377. this.body.data.edges.getDataSet().remove(finalizedData.edges);
  378. this.body.data.nodes.getDataSet().remove(finalizedData.nodes);
  379. this.body.emitter.emit('startSimulation');
  380. this.showManipulatorToolbar();
  381. }
  382. else {
  383. this.body.emitter.emit('startSimulation');
  384. this.showManipulatorToolbar();
  385. }
  386. });
  387. }
  388. else {
  389. throw new Error('The function for delete does not support two arguments (data, callback)')
  390. }
  391. }
  392. else {
  393. this.body.data.edges.getDataSet().remove(selectedEdges);
  394. this.body.data.nodes.getDataSet().remove(selectedNodes);
  395. this.body.emitter.emit('startSimulation');
  396. this.showManipulatorToolbar();
  397. }
  398. }
  399. //********************************************** PRIVATE ***************************************//
  400. /**
  401. * draw or remove the DOM
  402. * @private
  403. */
  404. _setup() {
  405. if (this.options.enabled === true) {
  406. // Enable the GUI
  407. this.guiEnabled = true;
  408. this._createWrappers();
  409. if (this.editMode === false) {
  410. this._createEditButton();
  411. }
  412. else {
  413. this.showManipulatorToolbar();
  414. }
  415. }
  416. else {
  417. this._removeManipulationDOM();
  418. // disable the gui
  419. this.guiEnabled = false;
  420. }
  421. }
  422. /**
  423. * create the div overlays that contain the DOM
  424. * @private
  425. */
  426. _createWrappers() {
  427. // load the manipulator HTML elements. All styling done in css.
  428. if (this.manipulationDiv === undefined) {
  429. this.manipulationDiv = document.createElement('div');
  430. this.manipulationDiv.className = 'vis-manipulation';
  431. if (this.editMode === true) {
  432. this.manipulationDiv.style.display = 'block';
  433. }
  434. else {
  435. this.manipulationDiv.style.display = 'none';
  436. }
  437. this.canvas.frame.appendChild(this.manipulationDiv);
  438. }
  439. // container for the edit button.
  440. if (this.editModeDiv === undefined) {
  441. this.editModeDiv = document.createElement('div');
  442. this.editModeDiv.className = 'vis-edit-mode';
  443. if (this.editMode === true) {
  444. this.editModeDiv.style.display = 'none';
  445. }
  446. else {
  447. this.editModeDiv.style.display = 'block';
  448. }
  449. this.canvas.frame.appendChild(this.editModeDiv);
  450. }
  451. // container for the close div button
  452. if (this.closeDiv === undefined) {
  453. this.closeDiv = document.createElement('div');
  454. this.closeDiv.className = 'vis-close';
  455. this.closeDiv.style.display = this.manipulationDiv.style.display;
  456. this.canvas.frame.appendChild(this.closeDiv);
  457. }
  458. }
  459. /**
  460. * generate a new target node. Used for creating new edges and editing edges
  461. * @param x
  462. * @param y
  463. * @returns {*}
  464. * @private
  465. */
  466. _getNewTargetNode(x,y) {
  467. let controlNodeStyle = util.deepExtend({}, this.options.controlNodeStyle);
  468. controlNodeStyle.id = 'targetNode' + util.randomUUID();
  469. controlNodeStyle.hidden = false;
  470. controlNodeStyle.physics = false;
  471. controlNodeStyle.x = x;
  472. controlNodeStyle.y = y;
  473. // we have to define the bounding box in order for the nodes to be drawn immediately
  474. let node = this.body.functions.createNode(controlNodeStyle);
  475. node.shape.boundingBox = {left: x, right:x, top:y, bottom:y};
  476. return node;
  477. }
  478. /**
  479. * Create the edit button
  480. */
  481. _createEditButton() {
  482. // restore everything to it's original state (if applicable)
  483. this._clean();
  484. // reset the manipulationDOM
  485. this.manipulationDOM = {};
  486. // empty the editModeDiv
  487. util.recursiveDOMDelete(this.editModeDiv);
  488. // create the contents for the editMode button
  489. let locale = this.options.locales[this.options.locale];
  490. let button = this._createButton('editMode', 'vis-button vis-edit vis-edit-mode', locale['edit'] || this.options.locales['en']['edit']);
  491. this.editModeDiv.appendChild(button);
  492. // bind a hammer listener to the button, calling the function toggleEditMode.
  493. this._bindHammerToDiv(button, this.toggleEditMode.bind(this));
  494. }
  495. /**
  496. * this function cleans up after everything this module does. Temporary elements, functions and events are removed, physics restored, hammers removed.
  497. * @private
  498. */
  499. _clean() {
  500. // not in mode
  501. this.inMode = false;
  502. // _clean the divs
  503. if (this.guiEnabled === true) {
  504. util.recursiveDOMDelete(this.editModeDiv);
  505. util.recursiveDOMDelete(this.manipulationDiv);
  506. // removes all the bindings and overloads
  507. this._cleanManipulatorHammers();
  508. }
  509. // remove temporary nodes and edges
  510. this._cleanupTemporaryNodesAndEdges();
  511. // restore overloaded UI functions
  512. this._unbindTemporaryUIs();
  513. // remove the temporaryEventFunctions
  514. this._unbindTemporaryEvents();
  515. // restore the physics if required
  516. this.body.emitter.emit('restorePhysics');
  517. }
  518. /**
  519. * Each dom element has it's own hammer. They are stored in this.manipulationHammers. This cleans them up.
  520. * @private
  521. */
  522. _cleanManipulatorHammers() {
  523. // _clean hammer bindings
  524. if (this.manipulationHammers.length != 0) {
  525. for (let i = 0; i < this.manipulationHammers.length; i++) {
  526. this.manipulationHammers[i].destroy();
  527. }
  528. this.manipulationHammers = [];
  529. }
  530. }
  531. /**
  532. * Remove all DOM elements created by this module.
  533. * @private
  534. */
  535. _removeManipulationDOM() {
  536. // removes all the bindings and overloads
  537. this._clean();
  538. // empty the manipulation divs
  539. util.recursiveDOMDelete(this.manipulationDiv);
  540. util.recursiveDOMDelete(this.editModeDiv);
  541. util.recursiveDOMDelete(this.closeDiv);
  542. // remove the manipulation divs
  543. if (this.manipulationDiv) {this.canvas.frame.removeChild(this.manipulationDiv);}
  544. if (this.editModeDiv) {this.canvas.frame.removeChild(this.editModeDiv);}
  545. if (this.closeDiv) {this.canvas.frame.removeChild(this.manipulationDiv);}
  546. // set the references to undefined
  547. this.manipulationDiv = undefined;
  548. this.editModeDiv = undefined;
  549. this.closeDiv = undefined;
  550. }
  551. /**
  552. * create a seperator line. the index is to differentiate in the manipulation dom
  553. * @param index
  554. * @private
  555. */
  556. _createSeperator(index = 1) {
  557. this.manipulationDOM['seperatorLineDiv' + index] = document.createElement('div');
  558. this.manipulationDOM['seperatorLineDiv' + index].className = 'vis-separator-line';
  559. this.manipulationDiv.appendChild(this.manipulationDOM['seperatorLineDiv' + index]);
  560. }
  561. // ---------------------- DOM functions for buttons --------------------------//
  562. _createAddNodeButton(locale) {
  563. let button = this._createButton('addNode', 'vis-button vis-add', locale['addNode'] || this.options.locales['en']['addNode']);
  564. this.manipulationDiv.appendChild(button);
  565. this._bindHammerToDiv(button, this.addNodeMode.bind(this));
  566. }
  567. _createAddEdgeButton(locale) {
  568. let button = this._createButton('addEdge', 'vis-button vis-connect', locale['addEdge'] || this.options.locales['en']['addEdge']);
  569. this.manipulationDiv.appendChild(button);
  570. this._bindHammerToDiv(button, this.addEdgeMode.bind(this));
  571. }
  572. _createEditNodeButton(locale) {
  573. let button = this._createButton('editNode', 'vis-button vis-edit', locale['editNode'] || this.options.locales['en']['editNode']);
  574. this.manipulationDiv.appendChild(button);
  575. this._bindHammerToDiv(button, this.editNode.bind(this));
  576. }
  577. _createEditEdgeButton(locale) {
  578. let button = this._createButton('editEdge', 'vis-button vis-edit', locale['editEdge'] || this.options.locales['en']['editEdge']);
  579. this.manipulationDiv.appendChild(button);
  580. this._bindHammerToDiv(button, this.editEdgeMode.bind(this));
  581. }
  582. _createDeleteButton(locale) {
  583. let button = this._createButton('delete', 'vis-button vis-delete', locale['del'] || this.options.locales['en']['del']);
  584. this.manipulationDiv.appendChild(button);
  585. this._bindHammerToDiv(button, this.deleteSelected.bind(this));
  586. }
  587. _createBackButton(locale) {
  588. let button = this._createButton('back', 'vis-button vis-back', locale['back'] || this.options.locales['en']['back']);
  589. this.manipulationDiv.appendChild(button);
  590. this._bindHammerToDiv(button, this.showManipulatorToolbar.bind(this));
  591. }
  592. _createButton(id, className, label, labelClassName = 'vis-label') {
  593. this.manipulationDOM[id+'Div'] = document.createElement('div');
  594. this.manipulationDOM[id+'Div'].className = className;
  595. this.manipulationDOM[id+'Label'] = document.createElement('div');
  596. this.manipulationDOM[id+'Label'].className = labelClassName;
  597. this.manipulationDOM[id+'Label'].innerHTML = label;
  598. this.manipulationDOM[id+'Div'].appendChild(this.manipulationDOM[id+'Label']);
  599. return this.manipulationDOM[id+'Div'];
  600. }
  601. _createDescription(label) {
  602. this.manipulationDiv.appendChild(
  603. this._createButton('description', 'vis-button vis-none', label)
  604. );
  605. }
  606. // -------------------------- End of DOM functions for buttons ------------------------------//
  607. /**
  608. * this binds an event until cleanup by the clean functions.
  609. * @param event
  610. * @param newFunction
  611. * @private
  612. */
  613. _temporaryBindEvent(event, newFunction) {
  614. this.temporaryEventFunctions.push({event:event, boundFunction:newFunction});
  615. this.body.emitter.on(event, newFunction);
  616. }
  617. /**
  618. * this overrides an UI function until cleanup by the clean function
  619. * @param UIfunctionName
  620. * @param newFunction
  621. * @private
  622. */
  623. _temporaryBindUI(UIfunctionName, newFunction) {
  624. if (this.body.eventListeners[UIfunctionName] !== undefined) {
  625. this.temporaryUIFunctions[UIfunctionName] = this.body.eventListeners[UIfunctionName];
  626. this.body.eventListeners[UIfunctionName] = newFunction;
  627. }
  628. else {
  629. throw new Error('This UI function does not exist. Typo? You tried: ' + UIfunctionName + ' possible are: ' + JSON.stringify(Object.keys(this.body.eventListeners)));
  630. }
  631. }
  632. /**
  633. * Restore the overridden UI functions to their original state.
  634. *
  635. * @private
  636. */
  637. _unbindTemporaryUIs() {
  638. for (let functionName in this.temporaryUIFunctions) {
  639. if (this.temporaryUIFunctions.hasOwnProperty(functionName)) {
  640. this.body.eventListeners[functionName] = this.temporaryUIFunctions[functionName];
  641. delete this.temporaryUIFunctions[functionName];
  642. }
  643. }
  644. this.temporaryUIFunctions = {};
  645. }
  646. /**
  647. * Unbind the events created by _temporaryBindEvent
  648. * @private
  649. */
  650. _unbindTemporaryEvents() {
  651. for (let i = 0; i < this.temporaryEventFunctions.length; i++) {
  652. let eventName = this.temporaryEventFunctions[i].event;
  653. let boundFunction = this.temporaryEventFunctions[i].boundFunction;
  654. this.body.emitter.off(eventName, boundFunction);
  655. }
  656. this.temporaryEventFunctions = [];
  657. }
  658. /**
  659. * Bind an hammer instance to a DOM element.
  660. * @param domElement
  661. * @param funct
  662. */
  663. _bindHammerToDiv(domElement, boundFunction) {
  664. let hammer = new Hammer(domElement, {});
  665. hammerUtil.onTouch(hammer, boundFunction);
  666. this.manipulationHammers.push(hammer);
  667. }
  668. /**
  669. * Neatly clean up temporary edges and nodes
  670. * @private
  671. */
  672. _cleanupTemporaryNodesAndEdges() {
  673. // _clean temporary edges
  674. for (let i = 0; i < this.temporaryIds.edges.length; i++) {
  675. this.body.edges[this.temporaryIds.edges[i]].disconnect();
  676. delete this.body.edges[this.temporaryIds.edges[i]];
  677. let indexTempEdge = this.body.edgeIndices.indexOf(this.temporaryIds.edges[i]);
  678. if (indexTempEdge !== -1) {this.body.edgeIndices.splice(indexTempEdge,1);}
  679. }
  680. // _clean temporary nodes
  681. for (let i = 0; i < this.temporaryIds.nodes.length; i++) {
  682. delete this.body.nodes[this.temporaryIds.nodes[i]];
  683. let indexTempNode = this.body.nodeIndices.indexOf(this.temporaryIds.nodes[i]);
  684. if (indexTempNode !== -1) {this.body.nodeIndices.splice(indexTempNode,1);}
  685. }
  686. this.temporaryIds = {nodes: [], edges: []};
  687. }
  688. // ------------------------------------------ EDIT EDGE FUNCTIONS -----------------------------------------//
  689. /**
  690. * the touch is used to get the position of the initial click
  691. * @param event
  692. * @private
  693. */
  694. _controlNodeTouch(event) {
  695. this.selectionHandler.unselectAll();
  696. this.lastTouch = this.body.functions.getPointer(event.center);
  697. this.lastTouch.translation = util.extend({},this.body.view.translation); // copy the object
  698. }
  699. /**
  700. * the drag start is used to mark one of the control nodes as selected.
  701. * @param event
  702. * @private
  703. */
  704. _controlNodeDragStart(event) {
  705. let pointer = this.lastTouch;
  706. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  707. let from = this.body.nodes[this.temporaryIds.nodes[0]];
  708. let to = this.body.nodes[this.temporaryIds.nodes[1]];
  709. let edge = this.body.edges[this.edgeBeingEditedId];
  710. this.selectedControlNode = undefined;
  711. let fromSelect = from.isOverlappingWith(pointerObj);
  712. let toSelect = to.isOverlappingWith(pointerObj);
  713. if (fromSelect === true) {
  714. this.selectedControlNode = from;
  715. edge.edgeType.from = from;
  716. }
  717. else if (toSelect === true) {
  718. this.selectedControlNode = to;
  719. edge.edgeType.to = to;
  720. }
  721. this.body.emitter.emit('_redraw');
  722. }
  723. /**
  724. * dragging the control nodes or the canvas
  725. * @param event
  726. * @private
  727. */
  728. _controlNodeDrag(event) {
  729. this.body.emitter.emit('disablePhysics');
  730. let pointer = this.body.functions.getPointer(event.center);
  731. let pos = this.canvas.DOMtoCanvas(pointer);
  732. if (this.selectedControlNode !== undefined) {
  733. this.selectedControlNode.x = pos.x;
  734. this.selectedControlNode.y = pos.y;
  735. }
  736. else {
  737. // if the drag was not started properly because the click started outside the network div, start it now.
  738. let diffX = pointer.x - this.lastTouch.x;
  739. let diffY = pointer.y - this.lastTouch.y;
  740. this.body.view.translation = {x:this.lastTouch.translation.x + diffX, y:this.lastTouch.translation.y + diffY};
  741. }
  742. this.body.emitter.emit('_redraw');
  743. }
  744. /**
  745. * connecting or restoring the control nodes.
  746. * @param event
  747. * @private
  748. */
  749. _controlNodeDragEnd(event) {
  750. let pointer = this.body.functions.getPointer(event.center);
  751. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  752. let edge = this.body.edges[this.edgeBeingEditedId];
  753. // if the node that was dragged is not a control node, return
  754. if (this.selectedControlNode === undefined) {
  755. return;
  756. }
  757. let overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj);
  758. let node = undefined;
  759. for (let i = overlappingNodeIds.length-1; i >= 0; i--) {
  760. if (overlappingNodeIds[i] !== this.selectedControlNode.id) {
  761. node = this.body.nodes[overlappingNodeIds[i]];
  762. break;
  763. }
  764. }
  765. // perform the connection
  766. if (node !== undefined && this.selectedControlNode !== undefined) {
  767. if (node.isCluster === true) {
  768. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError'])
  769. }
  770. else {
  771. let from = this.body.nodes[this.temporaryIds.nodes[0]];
  772. if (this.selectedControlNode.id === from.id) {
  773. this._performEditEdge(node.id, edge.to.id);
  774. }
  775. else {
  776. this._performEditEdge(edge.from.id, node.id);
  777. }
  778. }
  779. }
  780. else {
  781. edge.updateEdgeType();
  782. this.body.emitter.emit('restorePhysics');
  783. }
  784. this.body.emitter.emit('_redraw');
  785. }
  786. // ------------------------------------ END OF EDIT EDGE FUNCTIONS -----------------------------------------//
  787. // ------------------------------------------- ADD EDGE FUNCTIONS -----------------------------------------//
  788. /**
  789. * the function bound to the selection event. It checks if you want to connect a cluster and changes the description
  790. * to walk the user through the process.
  791. *
  792. * @private
  793. */
  794. _handleConnect(event) {
  795. // check to avoid double fireing of this function.
  796. if (new Date().valueOf() - this.touchTime > 100) {
  797. this.lastTouch = this.body.functions.getPointer(event.center);
  798. this.lastTouch.translation = util.extend({},this.body.view.translation); // copy the object
  799. let pointer = this.lastTouch;
  800. let node = this.selectionHandler.getNodeAt(pointer);
  801. if (node !== undefined) {
  802. if (node.isCluster === true) {
  803. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError'])
  804. }
  805. else {
  806. // create a node the temporary line can look at
  807. let targetNode = this._getNewTargetNode(node.x,node.y);
  808. this.body.nodes[targetNode.id] = targetNode;
  809. this.body.nodeIndices.push(targetNode.id);
  810. // create a temporary edge
  811. let connectionEdge = this.body.functions.createEdge({
  812. id: 'connectionEdge' + util.randomUUID(),
  813. from: node.id,
  814. to: targetNode.id,
  815. physics: false,
  816. smooth: {
  817. enabled: true,
  818. type: 'continuous',
  819. roundness: 0.5
  820. }
  821. });
  822. this.body.edges[connectionEdge.id] = connectionEdge;
  823. this.body.edgeIndices.push(connectionEdge.id);
  824. this.temporaryIds.nodes.push(targetNode.id);
  825. this.temporaryIds.edges.push(connectionEdge.id);
  826. }
  827. }
  828. this.touchTime = new Date().valueOf();
  829. }
  830. }
  831. _dragControlNode(event) {
  832. let pointer = this.body.functions.getPointer(event.center);
  833. if (this.temporaryIds.nodes[0] !== undefined) {
  834. let targetNode = this.body.nodes[this.temporaryIds.nodes[0]]; // there is only one temp node in the add edge mode.
  835. targetNode.x = this.canvas._XconvertDOMtoCanvas(pointer.x);
  836. targetNode.y = this.canvas._YconvertDOMtoCanvas(pointer.y);
  837. this.body.emitter.emit('_redraw');
  838. }
  839. else {
  840. let diffX = pointer.x - this.lastTouch.x;
  841. let diffY = pointer.y - this.lastTouch.y;
  842. this.body.view.translation = {x:this.lastTouch.translation.x + diffX, y:this.lastTouch.translation.y + diffY};
  843. }
  844. }
  845. /**
  846. * Connect the new edge to the target if one exists, otherwise remove temp line
  847. * @param event
  848. * @private
  849. */
  850. _finishConnect(event) {
  851. let pointer = this.body.functions.getPointer(event.center);
  852. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  853. // remember the edge id
  854. let connectFromId = undefined;
  855. if (this.temporaryIds.edges[0] !== undefined) {
  856. connectFromId = this.body.edges[this.temporaryIds.edges[0]].fromId;
  857. }
  858. // get the overlapping node but NOT the temporary node;
  859. let overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj);
  860. let node = undefined;
  861. for (let i = overlappingNodeIds.length-1; i >= 0; i--) {
  862. // if the node id is NOT a temporary node, accept the node.
  863. if (this.temporaryIds.nodes.indexOf(overlappingNodeIds[i]) === -1) {
  864. node = this.body.nodes[overlappingNodeIds[i]];
  865. break;
  866. }
  867. }
  868. // clean temporary nodes and edges.
  869. this._cleanupTemporaryNodesAndEdges();
  870. // perform the connection
  871. if (node !== undefined) {
  872. if (node.isCluster === true) {
  873. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError']);
  874. }
  875. else {
  876. if (this.body.nodes[connectFromId] !== undefined && this.body.nodes[node.id] !== undefined) {
  877. this._performAddEdge(connectFromId, node.id);
  878. }
  879. }
  880. }
  881. this.body.emitter.emit('_redraw');
  882. }
  883. // --------------------------------------- END OF ADD EDGE FUNCTIONS -------------------------------------//
  884. // ------------------------------ Performing all the actual data manipulation ------------------------//
  885. /**
  886. * Adds a node on the specified location
  887. */
  888. _performAddNode(clickData) {
  889. let defaultData = {
  890. id: util.randomUUID(),
  891. x: clickData.pointer.canvas.x,
  892. y: clickData.pointer.canvas.y,
  893. label: 'new'
  894. };
  895. if (typeof this.options.addNode === 'function') {
  896. if (this.options.addNode.length === 2) {
  897. this.options.addNode(defaultData, (finalizedData) => {
  898. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'addNode') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback
  899. this.body.data.nodes.getDataSet().add(finalizedData);
  900. this.showManipulatorToolbar();
  901. }
  902. });
  903. }
  904. else {
  905. throw new Error('The function for add does not support two arguments (data,callback)');
  906. this.showManipulatorToolbar();
  907. }
  908. }
  909. else {
  910. this.body.data.nodes.getDataSet().add(defaultData);
  911. this.showManipulatorToolbar();
  912. }
  913. }
  914. /**
  915. * connect two nodes with a new edge.
  916. *
  917. * @private
  918. */
  919. _performAddEdge(sourceNodeId, targetNodeId) {
  920. let defaultData = {from: sourceNodeId, to: targetNodeId};
  921. if (typeof this.options.addEdge === 'function') {
  922. if (this.options.addEdge.length === 2) {
  923. this.options.addEdge(defaultData, (finalizedData) => {
  924. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'addEdge') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback
  925. this.body.data.edges.getDataSet().add(finalizedData);
  926. this.selectionHandler.unselectAll();
  927. this.showManipulatorToolbar();
  928. }
  929. });
  930. }
  931. else {
  932. throw new Error('The function for connect does not support two arguments (data,callback)');
  933. }
  934. }
  935. else {
  936. this.body.data.edges.getDataSet().add(defaultData);
  937. this.selectionHandler.unselectAll();
  938. this.showManipulatorToolbar();
  939. }
  940. }
  941. /**
  942. * connect two nodes with a new edge.
  943. *
  944. * @private
  945. */
  946. _performEditEdge(sourceNodeId, targetNodeId) {
  947. let defaultData = {id: this.edgeBeingEditedId, from: sourceNodeId, to: targetNodeId};
  948. if (typeof this.options.editEdge === 'function') {
  949. if (this.options.editEdge.length === 2) {
  950. this.options.editEdge(defaultData, (finalizedData) => {
  951. if (finalizedData === null || finalizedData === undefined || this.inMode !== 'editEdge') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback) {
  952. this.body.edges[defaultData.id].updateEdgeType();
  953. this.body.emitter.emit('_redraw');
  954. }
  955. else {
  956. this.body.data.edges.getDataSet().update(finalizedData);
  957. this.selectionHandler.unselectAll();
  958. this.showManipulatorToolbar();
  959. }
  960. });
  961. }
  962. else {
  963. throw new Error('The function for edit does not support two arguments (data, callback)');
  964. }
  965. }
  966. else {
  967. this.body.data.edges.getDataSet().update(defaultData);
  968. this.selectionHandler.unselectAll();
  969. this.showManipulatorToolbar();
  970. }
  971. }
  972. }
  973. export default ManipulationSystem;