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.

1133 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 letiables
  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 wasnt 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. return this.body.functions.createNode(controlNodeStyle);
  474. }
  475. /**
  476. * Create the edit button
  477. */
  478. _createEditButton() {
  479. // restore everything to it's original state (if applicable)
  480. this._clean();
  481. // reset the manipulationDOM
  482. this.manipulationDOM = {};
  483. // empty the editModeDiv
  484. util.recursiveDOMDelete(this.editModeDiv);
  485. // create the contents for the editMode button
  486. let locale = this.options.locales[this.options.locale];
  487. let button = this._createButton('editMode', 'vis-button vis-edit vis-edit-mode', locale['edit'] || this.options.locales['en']['edit']);
  488. this.editModeDiv.appendChild(button);
  489. // bind a hammer listener to the button, calling the function toggleEditMode.
  490. this._bindHammerToDiv(button, this.toggleEditMode.bind(this));
  491. }
  492. /**
  493. * this function cleans up after everything this module does. Temporary elements, functions and events are removed, physics restored, hammers removed.
  494. * @private
  495. */
  496. _clean() {
  497. // not in mode
  498. this.inMode = false;
  499. // _clean the divs
  500. if (this.guiEnabled === true) {
  501. util.recursiveDOMDelete(this.editModeDiv);
  502. util.recursiveDOMDelete(this.manipulationDiv);
  503. // removes all the bindings and overloads
  504. this._cleanManipulatorHammers();
  505. }
  506. // remove temporary nodes and edges
  507. this._cleanupTemporaryNodesAndEdges();
  508. // restore overloaded UI functions
  509. this._unbindTemporaryUIs();
  510. // remove the temporaryEventFunctions
  511. this._unbindTemporaryEvents();
  512. // restore the physics if required
  513. this.body.emitter.emit('restorePhysics');
  514. }
  515. /**
  516. * Each dom element has it's own hammer. They are stored in this.manipulationHammers. This cleans them up.
  517. * @private
  518. */
  519. _cleanManipulatorHammers() {
  520. // _clean hammer bindings
  521. if (this.manipulationHammers.length != 0) {
  522. for (let i = 0; i < this.manipulationHammers.length; i++) {
  523. this.manipulationHammers[i].destroy();
  524. }
  525. this.manipulationHammers = [];
  526. }
  527. }
  528. /**
  529. * Remove all DOM elements created by this module.
  530. * @private
  531. */
  532. _removeManipulationDOM() {
  533. // removes all the bindings and overloads
  534. this._clean();
  535. // empty the manipulation divs
  536. util.recursiveDOMDelete(this.manipulationDiv);
  537. util.recursiveDOMDelete(this.editModeDiv);
  538. util.recursiveDOMDelete(this.closeDiv);
  539. // remove the manipulation divs
  540. if (this.manipulationDiv) {this.canvas.frame.removeChild(this.manipulationDiv);}
  541. if (this.editModeDiv) {this.canvas.frame.removeChild(this.editModeDiv);}
  542. if (this.closeDiv) {this.canvas.frame.removeChild(this.manipulationDiv);}
  543. // set the references to undefined
  544. this.manipulationDiv = undefined;
  545. this.editModeDiv = undefined;
  546. this.closeDiv = undefined;
  547. }
  548. /**
  549. * create a seperator line. the index is to differentiate in the manipulation dom
  550. * @param index
  551. * @private
  552. */
  553. _createSeperator(index = 1) {
  554. this.manipulationDOM['seperatorLineDiv' + index] = document.createElement('div');
  555. this.manipulationDOM['seperatorLineDiv' + index].className = 'vis-separator-line';
  556. this.manipulationDiv.appendChild(this.manipulationDOM['seperatorLineDiv' + index]);
  557. }
  558. // ---------------------- DOM functions for buttons --------------------------//
  559. _createAddNodeButton(locale) {
  560. let button = this._createButton('addNode', 'vis-button vis-add', locale['addNode'] || this.options.locales['en']['addNode']);
  561. this.manipulationDiv.appendChild(button);
  562. this._bindHammerToDiv(button, this.addNodeMode.bind(this));
  563. }
  564. _createAddEdgeButton(locale) {
  565. let button = this._createButton('addEdge', 'vis-button vis-connect', locale['addEdge'] || this.options.locales['en']['addEdge']);
  566. this.manipulationDiv.appendChild(button);
  567. this._bindHammerToDiv(button, this.addEdgeMode.bind(this));
  568. }
  569. _createEditNodeButton(locale) {
  570. let button = this._createButton('editNode', 'vis-button vis-edit', locale['editNode'] || this.options.locales['en']['editNode']);
  571. this.manipulationDiv.appendChild(button);
  572. this._bindHammerToDiv(button, this.editNode.bind(this));
  573. }
  574. _createEditEdgeButton(locale) {
  575. let button = this._createButton('editEdge', 'vis-button vis-edit', locale['editEdge'] || this.options.locales['en']['editEdge']);
  576. this.manipulationDiv.appendChild(button);
  577. this._bindHammerToDiv(button, this.editEdgeMode.bind(this));
  578. }
  579. _createDeleteButton(locale) {
  580. let button = this._createButton('delete', 'vis-button vis-delete', locale['del'] || this.options.locales['en']['del']);
  581. this.manipulationDiv.appendChild(button);
  582. this._bindHammerToDiv(button, this.deleteSelected.bind(this));
  583. }
  584. _createBackButton(locale) {
  585. let button = this._createButton('back', 'vis-button vis-back', locale['back'] || this.options.locales['en']['back']);
  586. this.manipulationDiv.appendChild(button);
  587. this._bindHammerToDiv(button, this.showManipulatorToolbar.bind(this));
  588. }
  589. _createButton(id, className, label, labelClassName = 'vis-label') {
  590. this.manipulationDOM[id+'Div'] = document.createElement('div');
  591. this.manipulationDOM[id+'Div'].className = className;
  592. this.manipulationDOM[id+'Label'] = document.createElement('div');
  593. this.manipulationDOM[id+'Label'].className = labelClassName;
  594. this.manipulationDOM[id+'Label'].innerHTML = label;
  595. this.manipulationDOM[id+'Div'].appendChild(this.manipulationDOM[id+'Label']);
  596. return this.manipulationDOM[id+'Div'];
  597. }
  598. _createDescription(label) {
  599. this.manipulationDiv.appendChild(
  600. this._createButton('description', 'vis-button vis-none', label)
  601. );
  602. }
  603. // -------------------------- End of DOM functions for buttons ------------------------------//
  604. /**
  605. * this binds an event until cleanup by the clean functions.
  606. * @param event
  607. * @param newFunction
  608. * @private
  609. */
  610. _temporaryBindEvent(event, newFunction) {
  611. this.temporaryEventFunctions.push({event:event, boundFunction:newFunction});
  612. this.body.emitter.on(event, newFunction);
  613. }
  614. /**
  615. * this overrides an UI function until cleanup by the clean function
  616. * @param UIfunctionName
  617. * @param newFunction
  618. * @private
  619. */
  620. _temporaryBindUI(UIfunctionName, newFunction) {
  621. if (this.body.eventListeners[UIfunctionName] !== undefined) {
  622. this.temporaryUIFunctions[UIfunctionName] = this.body.eventListeners[UIfunctionName];
  623. this.body.eventListeners[UIfunctionName] = newFunction;
  624. }
  625. else {
  626. throw new Error('This UI function does not exist. Typo? You tried: ' + UIfunctionName + ' possible are: ' + JSON.stringify(Object.keys(this.body.eventListeners)));
  627. }
  628. }
  629. /**
  630. * Restore the overridden UI functions to their original state.
  631. *
  632. * @private
  633. */
  634. _unbindTemporaryUIs() {
  635. for (let functionName in this.temporaryUIFunctions) {
  636. if (this.temporaryUIFunctions.hasOwnProperty(functionName)) {
  637. this.body.eventListeners[functionName] = this.temporaryUIFunctions[functionName];
  638. delete this.temporaryUIFunctions[functionName];
  639. }
  640. }
  641. this.temporaryUIFunctions = {};
  642. }
  643. /**
  644. * Unbind the events created by _temporaryBindEvent
  645. * @private
  646. */
  647. _unbindTemporaryEvents() {
  648. for (let i = 0; i < this.temporaryEventFunctions.length; i++) {
  649. let eventName = this.temporaryEventFunctions[i].event;
  650. let boundFunction = this.temporaryEventFunctions[i].boundFunction;
  651. this.body.emitter.off(eventName, boundFunction);
  652. }
  653. this.temporaryEventFunctions = [];
  654. }
  655. /**
  656. * Bind an hammer instance to a DOM element.
  657. * @param domElement
  658. * @param funct
  659. */
  660. _bindHammerToDiv(domElement, boundFunction) {
  661. let hammer = new Hammer(domElement, {});
  662. hammerUtil.onTouch(hammer, boundFunction);
  663. this.manipulationHammers.push(hammer);
  664. }
  665. /**
  666. * Neatly clean up temporary edges and nodes
  667. * @private
  668. */
  669. _cleanupTemporaryNodesAndEdges() {
  670. // _clean temporary edges
  671. for (let i = 0; i < this.temporaryIds.edges.length; i++) {
  672. this.body.edges[this.temporaryIds.edges[i]].disconnect();
  673. delete this.body.edges[this.temporaryIds.edges[i]];
  674. let indexTempEdge = this.body.edgeIndices.indexOf(this.temporaryIds.edges[i]);
  675. if (indexTempEdge !== -1) {this.body.edgeIndices.splice(indexTempEdge,1);}
  676. }
  677. // _clean temporary nodes
  678. for (let i = 0; i < this.temporaryIds.nodes.length; i++) {
  679. delete this.body.nodes[this.temporaryIds.nodes[i]];
  680. let indexTempNode = this.body.nodeIndices.indexOf(this.temporaryIds.nodes[i]);
  681. if (indexTempNode !== -1) {this.body.nodeIndices.splice(indexTempNode,1);}
  682. }
  683. this.temporaryIds = {nodes: [], edges: []};
  684. }
  685. // ------------------------------------------ EDIT EDGE FUNCTIONS -----------------------------------------//
  686. /**
  687. * the touch is used to get the position of the initial click
  688. * @param event
  689. * @private
  690. */
  691. _controlNodeTouch(event) {
  692. this.selectionHandler.unselectAll();
  693. this.lastTouch = this.body.functions.getPointer(event.center);
  694. this.lastTouch.translation = util.extend({},this.body.view.translation); // copy the object
  695. }
  696. /**
  697. * the drag start is used to mark one of the control nodes as selected.
  698. * @param event
  699. * @private
  700. */
  701. _controlNodeDragStart(event) {
  702. let pointer = this.lastTouch;
  703. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  704. let from = this.body.nodes[this.temporaryIds.nodes[0]];
  705. let to = this.body.nodes[this.temporaryIds.nodes[1]];
  706. let edge = this.body.edges[this.edgeBeingEditedId];
  707. this.selectedControlNode = undefined;
  708. let fromSelect = from.isOverlappingWith(pointerObj);
  709. let toSelect = to.isOverlappingWith(pointerObj);
  710. if (fromSelect === true) {
  711. this.selectedControlNode = from;
  712. edge.edgeType.from = from;
  713. }
  714. else if (toSelect === true) {
  715. this.selectedControlNode = to;
  716. edge.edgeType.to = to;
  717. }
  718. this.body.emitter.emit('_redraw');
  719. }
  720. /**
  721. * dragging the control nodes or the canvas
  722. * @param event
  723. * @private
  724. */
  725. _controlNodeDrag(event) {
  726. this.body.emitter.emit('disablePhysics');
  727. let pointer = this.body.functions.getPointer(event.center);
  728. let pos = this.canvas.DOMtoCanvas(pointer);
  729. if (this.selectedControlNode !== undefined) {
  730. this.selectedControlNode.x = pos.x;
  731. this.selectedControlNode.y = pos.y;
  732. }
  733. else {
  734. // if the drag was not started properly because the click started outside the network div, start it now.
  735. let diffX = pointer.x - this.lastTouch.x;
  736. let diffY = pointer.y - this.lastTouch.y;
  737. this.body.view.translation = {x:this.lastTouch.translation.x + diffX, y:this.lastTouch.translation.y + diffY};
  738. }
  739. this.body.emitter.emit('_redraw');
  740. }
  741. /**
  742. * connecting or restoring the control nodes.
  743. * @param event
  744. * @private
  745. */
  746. _controlNodeDragEnd(event) {
  747. let pointer = this.body.functions.getPointer(event.center);
  748. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  749. let edge = this.body.edges[this.edgeBeingEditedId];
  750. // if the node that was dragged is not a control node, return
  751. if (this.selectedControlNode === undefined) {
  752. return;
  753. }
  754. let overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj);
  755. let node = undefined;
  756. for (let i = overlappingNodeIds.length-1; i >= 0; i--) {
  757. if (overlappingNodeIds[i] !== this.selectedControlNode.id) {
  758. node = this.body.nodes[overlappingNodeIds[i]];
  759. break;
  760. }
  761. }
  762. // perform the connection
  763. if (node !== undefined && this.selectedControlNode !== undefined) {
  764. if (node.isCluster === true) {
  765. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError'])
  766. }
  767. else {
  768. let from = this.body.nodes[this.temporaryIds.nodes[0]];
  769. if (this.selectedControlNode.id === from.id) {
  770. this._performEditEdge(node.id, edge.to.id);
  771. }
  772. else {
  773. this._performEditEdge(edge.from.id, node.id);
  774. }
  775. }
  776. }
  777. else {
  778. edge.updateEdgeType();
  779. this.body.emitter.emit('restorePhysics');
  780. }
  781. this.body.emitter.emit('_redraw');
  782. }
  783. // ------------------------------------ END OF EDIT EDGE FUNCTIONS -----------------------------------------//
  784. // ------------------------------------------- ADD EDGE FUNCTIONS -----------------------------------------//
  785. /**
  786. * the function bound to the selection event. It checks if you want to connect a cluster and changes the description
  787. * to walk the user through the process.
  788. *
  789. * @private
  790. */
  791. _handleConnect(event) {
  792. // check to avoid double fireing of this function.
  793. if (new Date().valueOf() - this.touchTime > 100) {
  794. this.lastTouch = this.body.functions.getPointer(event.center);
  795. this.lastTouch.translation = util.extend({},this.body.view.translation); // copy the object
  796. let pointer = this.lastTouch;
  797. let node = this.selectionHandler.getNodeAt(pointer);
  798. if (node !== undefined) {
  799. if (node.isCluster === true) {
  800. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError'])
  801. }
  802. else {
  803. // create a node the temporary line can look at
  804. let targetNode = this._getNewTargetNode(node.x,node.y);
  805. this.body.nodes[targetNode.id] = targetNode;
  806. this.body.nodeIndices.push(targetNode.id);
  807. // create a temporary edge
  808. let connectionEdge = this.body.functions.createEdge({
  809. id: 'connectionEdge' + util.randomUUID(),
  810. from: node.id,
  811. to: targetNode.id,
  812. physics: false,
  813. smooth: {
  814. enabled: true,
  815. type: 'continuous',
  816. roundness: 0.5
  817. }
  818. });
  819. this.body.edges[connectionEdge.id] = connectionEdge;
  820. this.body.edgeIndices.push(connectionEdge.id);
  821. this.temporaryIds.nodes.push(targetNode.id);
  822. this.temporaryIds.edges.push(connectionEdge.id);
  823. }
  824. }
  825. this.touchTime = new Date().valueOf();
  826. }
  827. }
  828. _dragControlNode(event) {
  829. let pointer = this.body.functions.getPointer(event.center);
  830. if (this.temporaryIds.nodes[0] !== undefined) {
  831. let targetNode = this.body.nodes[this.temporaryIds.nodes[0]]; // there is only one temp node in the add edge mode.
  832. targetNode.x = this.canvas._XconvertDOMtoCanvas(pointer.x);
  833. targetNode.y = this.canvas._YconvertDOMtoCanvas(pointer.y);
  834. this.body.emitter.emit('_redraw');
  835. }
  836. else {
  837. let diffX = pointer.x - this.lastTouch.x;
  838. let diffY = pointer.y - this.lastTouch.y;
  839. this.body.view.translation = {x:this.lastTouch.translation.x + diffX, y:this.lastTouch.translation.y + diffY};
  840. }
  841. }
  842. /**
  843. * Connect the new edge to the target if one exists, otherwise remove temp line
  844. * @param event
  845. * @private
  846. */
  847. _finishConnect(event) {
  848. let pointer = this.body.functions.getPointer(event.center);
  849. let pointerObj = this.selectionHandler._pointerToPositionObject(pointer);
  850. // remember the edge id
  851. let connectFromId = undefined;
  852. if (this.temporaryIds.edges[0] !== undefined) {
  853. connectFromId = this.body.edges[this.temporaryIds.edges[0]].fromId;
  854. }
  855. // get the overlapping node but NOT the temporary node;
  856. let overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj);
  857. let node = undefined;
  858. for (let i = overlappingNodeIds.length-1; i >= 0; i--) {
  859. // if the node id is NOT a temporary node, accept the node.
  860. if (this.temporaryIds.nodes.indexOf(overlappingNodeIds[i]) === -1) {
  861. node = this.body.nodes[overlappingNodeIds[i]];
  862. break;
  863. }
  864. }
  865. // clean temporary nodes and edges.
  866. this._cleanupTemporaryNodesAndEdges();
  867. // perform the connection
  868. if (node !== undefined) {
  869. if (node.isCluster === true) {
  870. alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError']);
  871. }
  872. else {
  873. if (this.body.nodes[connectFromId] !== undefined && this.body.nodes[node.id] !== undefined) {
  874. this._performAddEdge(connectFromId, node.id);
  875. }
  876. }
  877. }
  878. this.body.emitter.emit('_redraw');
  879. }
  880. // --------------------------------------- END OF ADD EDGE FUNCTIONS -------------------------------------//
  881. // ------------------------------ Performing all the actual data manipulation ------------------------//
  882. /**
  883. * Adds a node on the specified location
  884. */
  885. _performAddNode(clickData) {
  886. let defaultData = {
  887. id: util.randomUUID(),
  888. x: clickData.pointer.canvas.x,
  889. y: clickData.pointer.canvas.y,
  890. label: 'new'
  891. };
  892. if (typeof this.options.addNode === 'function') {
  893. if (this.options.addNode.length === 2) {
  894. this.options.addNode(defaultData, (finalizedData) => {
  895. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'addNode') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback
  896. this.body.data.nodes.getDataSet().add(finalizedData);
  897. this.showManipulatorToolbar();
  898. }
  899. });
  900. }
  901. else {
  902. throw new Error('The function for add does not support two arguments (data,callback)');
  903. this.showManipulatorToolbar();
  904. }
  905. }
  906. else {
  907. this.body.data.nodes.getDataSet().add(defaultData);
  908. this.showManipulatorToolbar();
  909. }
  910. }
  911. /**
  912. * connect two nodes with a new edge.
  913. *
  914. * @private
  915. */
  916. _performAddEdge(sourceNodeId, targetNodeId) {
  917. let defaultData = {from: sourceNodeId, to: targetNodeId};
  918. if (typeof this.options.addEdge === 'function') {
  919. if (this.options.addEdge.length === 2) {
  920. this.options.addEdge(defaultData, (finalizedData) => {
  921. if (finalizedData !== null && finalizedData !== undefined && this.inMode === 'addEdge') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback
  922. this.body.data.edges.getDataSet().add(finalizedData);
  923. this.selectionHandler.unselectAll();
  924. this.showManipulatorToolbar();
  925. }
  926. });
  927. }
  928. else {
  929. throw new Error('The function for connect does not support two arguments (data,callback)');
  930. }
  931. }
  932. else {
  933. this.body.data.edges.getDataSet().add(defaultData);
  934. this.selectionHandler.unselectAll();
  935. this.showManipulatorToolbar();
  936. }
  937. }
  938. /**
  939. * connect two nodes with a new edge.
  940. *
  941. * @private
  942. */
  943. _performEditEdge(sourceNodeId, targetNodeId) {
  944. let defaultData = {id: this.edgeBeingEditedId, from: sourceNodeId, to: targetNodeId};
  945. if (typeof this.options.editEdge === 'function') {
  946. if (this.options.editEdge.length === 2) {
  947. this.options.editEdge(defaultData, (finalizedData) => {
  948. if (finalizedData === null || finalizedData === undefined || this.inMode !== 'editEdge') { // if for whatever reason the mode has changes (due to dataset change) disregard the callback) {
  949. this.body.edges[defaultData.id].updateEdgeType();
  950. this.body.emitter.emit('_redraw');
  951. }
  952. else {
  953. this.body.data.edges.getDataSet().update(finalizedData);
  954. this.selectionHandler.unselectAll();
  955. this.showManipulatorToolbar();
  956. }
  957. });
  958. }
  959. else {
  960. throw new Error('The function for edit does not support two arguments (data, callback)');
  961. }
  962. }
  963. else {
  964. this.body.data.edges.getDataSet().update(defaultData);
  965. this.selectionHandler.unselectAll();
  966. this.showManipulatorToolbar();
  967. }
  968. }
  969. }
  970. export default ManipulationSystem;