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.

263 lines
6.3 KiB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
  1. var Hammer = require('../../../module/hammer');
  2. var util = require('../../../util');
  3. /**
  4. * @constructor Item
  5. * @param {Object} data Object containing (optional) parameters type,
  6. * start, end, content, group, className.
  7. * @param {{toScreen: function, toTime: function}} conversion
  8. * Conversion functions from time to screen and vice versa
  9. * @param {Object} options Configuration options
  10. * // TODO: describe available options
  11. */
  12. function Item (data, conversion, options) {
  13. this.id = null;
  14. this.parent = null;
  15. this.data = data;
  16. this.dom = null;
  17. this.conversion = conversion || {};
  18. this.options = options || {};
  19. this.selected = false;
  20. this.displayed = false;
  21. this.dirty = true;
  22. this.top = null;
  23. this.left = null;
  24. this.width = null;
  25. this.height = null;
  26. }
  27. Item.prototype.stack = true;
  28. /**
  29. * Select current item
  30. */
  31. Item.prototype.select = function() {
  32. this.selected = true;
  33. this.dirty = true;
  34. if (this.displayed) this.redraw();
  35. };
  36. /**
  37. * Unselect current item
  38. */
  39. Item.prototype.unselect = function() {
  40. this.selected = false;
  41. this.dirty = true;
  42. if (this.displayed) this.redraw();
  43. };
  44. /**
  45. * Set data for the item. Existing data will be updated. The id should not
  46. * be changed. When the item is displayed, it will be redrawn immediately.
  47. * @param {Object} data
  48. */
  49. Item.prototype.setData = function(data) {
  50. this.data = data;
  51. this.dirty = true;
  52. if (this.displayed) this.redraw();
  53. };
  54. /**
  55. * Set a parent for the item
  56. * @param {ItemSet | Group} parent
  57. */
  58. Item.prototype.setParent = function(parent) {
  59. if (this.displayed) {
  60. this.hide();
  61. this.parent = parent;
  62. if (this.parent) {
  63. this.show();
  64. }
  65. }
  66. else {
  67. this.parent = parent;
  68. }
  69. };
  70. /**
  71. * Check whether this item is visible inside given range
  72. * @returns {{start: Number, end: Number}} range with a timestamp for start and end
  73. * @returns {boolean} True if visible
  74. */
  75. Item.prototype.isVisible = function(range) {
  76. // Should be implemented by Item implementations
  77. return false;
  78. };
  79. /**
  80. * Show the Item in the DOM (when not already visible)
  81. * @return {Boolean} changed
  82. */
  83. Item.prototype.show = function() {
  84. return false;
  85. };
  86. /**
  87. * Hide the Item from the DOM (when visible)
  88. * @return {Boolean} changed
  89. */
  90. Item.prototype.hide = function() {
  91. return false;
  92. };
  93. /**
  94. * Repaint the item
  95. */
  96. Item.prototype.redraw = function() {
  97. // should be implemented by the item
  98. };
  99. /**
  100. * Reposition the Item horizontally
  101. */
  102. Item.prototype.repositionX = function() {
  103. // should be implemented by the item
  104. };
  105. /**
  106. * Reposition the Item vertically
  107. */
  108. Item.prototype.repositionY = function() {
  109. // should be implemented by the item
  110. };
  111. /**
  112. * Repaint a delete button on the top right of the item when the item is selected
  113. * @param {HTMLElement} anchor
  114. * @protected
  115. */
  116. Item.prototype._repaintDeleteButton = function (anchor) {
  117. if (this.selected && this.options.editable.remove && !this.dom.deleteButton) {
  118. // create and show button
  119. var me = this;
  120. var deleteButton = document.createElement('div');
  121. deleteButton.className = 'delete';
  122. deleteButton.title = 'Delete this item';
  123. // TODO: neatly handle button click
  124. new Hammer(deleteButton).on('tap', function (event) {
  125. me.parent.removeFromDataSet(me);
  126. event.srcEvent.stopPropagation(); // TODO: stopPropagation seems not to work
  127. });
  128. //deleteButton.addEventListener('click', function (event) {
  129. // me.parent.removeFromDataSet(me);
  130. // event.stopPropagation();
  131. // event.preventDefault();
  132. //});
  133. anchor.appendChild(deleteButton);
  134. this.dom.deleteButton = deleteButton;
  135. }
  136. else if (!this.selected && this.dom.deleteButton) {
  137. // remove button
  138. if (this.dom.deleteButton.parentNode) {
  139. this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton);
  140. }
  141. this.dom.deleteButton = null;
  142. }
  143. };
  144. /**
  145. * Set HTML contents for the item
  146. * @param {Element} element HTML element to fill with the contents
  147. * @private
  148. */
  149. Item.prototype._updateContents = function (element) {
  150. var content;
  151. if (this.options.template) {
  152. var itemData = this.parent.itemSet.itemsData.get(this.id); // get a clone of the data from the dataset
  153. content = this.options.template(itemData);
  154. }
  155. else {
  156. content = this.data.content;
  157. }
  158. if(content !== this.content) {
  159. // only replace the content when changed
  160. if (content instanceof Element) {
  161. element.innerHTML = '';
  162. element.appendChild(content);
  163. }
  164. else if (content != undefined) {
  165. element.innerHTML = content;
  166. }
  167. else {
  168. if (!(this.data.type == 'background' && this.data.content === undefined)) {
  169. throw new Error('Property "content" missing in item ' + this.id);
  170. }
  171. }
  172. this.content = content;
  173. }
  174. };
  175. /**
  176. * Set HTML contents for the item
  177. * @param {Element} element HTML element to fill with the contents
  178. * @private
  179. */
  180. Item.prototype._updateTitle = function (element) {
  181. if (this.data.title != null) {
  182. element.title = this.data.title || '';
  183. }
  184. else {
  185. element.removeAttribute('title');
  186. }
  187. };
  188. /**
  189. * Process dataAttributes timeline option and set as data- attributes on dom.content
  190. * @param {Element} element HTML element to which the attributes will be attached
  191. * @private
  192. */
  193. Item.prototype._updateDataAttributes = function(element) {
  194. if (this.options.dataAttributes && this.options.dataAttributes.length > 0) {
  195. var attributes = [];
  196. if (Array.isArray(this.options.dataAttributes)) {
  197. attributes = this.options.dataAttributes;
  198. }
  199. else if (this.options.dataAttributes == 'all') {
  200. attributes = Object.keys(this.data);
  201. }
  202. else {
  203. return;
  204. }
  205. for (var i = 0; i < attributes.length; i++) {
  206. var name = attributes[i];
  207. var value = this.data[name];
  208. if (value != null) {
  209. element.setAttribute('data-' + name, value);
  210. }
  211. else {
  212. element.removeAttribute('data-' + name);
  213. }
  214. }
  215. }
  216. };
  217. /**
  218. * Update custom styles of the element
  219. * @param element
  220. * @private
  221. */
  222. Item.prototype._updateStyle = function(element) {
  223. // remove old styles
  224. if (this.style) {
  225. util.removeCssText(element, this.style);
  226. this.style = null;
  227. }
  228. // append new styles
  229. if (this.data.style) {
  230. util.addCssText(element, this.data.style);
  231. this.style = this.data.style;
  232. }
  233. };
  234. module.exports = Item;