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.

569 lines
17 KiB

10 years ago
10 years ago
10 years ago
10 years ago
  1. var util = require('../../util');
  2. var stack = require('../Stack');
  3. var RangeItem = require('./item/RangeItem');
  4. /**
  5. * @constructor Group
  6. * @param {Number | String} groupId
  7. * @param {Object} data
  8. * @param {ItemSet} itemSet
  9. */
  10. function Group (groupId, data, itemSet) {
  11. this.groupId = groupId;
  12. this.subgroups = {};
  13. this.subgroupIndex = 0;
  14. this.subgroupOrderer = data && data.subgroupOrder;
  15. this.itemSet = itemSet;
  16. this.dom = {};
  17. this.props = {
  18. label: {
  19. width: 0,
  20. height: 0
  21. }
  22. };
  23. this.className = null;
  24. this.items = {}; // items filtered by groupId of this group
  25. this.visibleItems = []; // items currently visible in window
  26. this.orderedItems = {
  27. byStart: [],
  28. byEnd: []
  29. };
  30. this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap.
  31. var me = this;
  32. this.itemSet.body.emitter.on("checkRangedItems", function () {
  33. me.checkRangedItems = true;
  34. })
  35. this._create();
  36. this.setData(data);
  37. }
  38. /**
  39. * Create DOM elements for the group
  40. * @private
  41. */
  42. Group.prototype._create = function() {
  43. var label = document.createElement('div');
  44. label.className = 'vlabel';
  45. this.dom.label = label;
  46. var inner = document.createElement('div');
  47. inner.className = 'inner';
  48. label.appendChild(inner);
  49. this.dom.inner = inner;
  50. var foreground = document.createElement('div');
  51. foreground.className = 'group';
  52. foreground['timeline-group'] = this;
  53. this.dom.foreground = foreground;
  54. this.dom.background = document.createElement('div');
  55. this.dom.background.className = 'group';
  56. this.dom.axis = document.createElement('div');
  57. this.dom.axis.className = 'group';
  58. // create a hidden marker to detect when the Timelines container is attached
  59. // to the DOM, or the style of a parent of the Timeline is changed from
  60. // display:none is changed to visible.
  61. this.dom.marker = document.createElement('div');
  62. this.dom.marker.style.visibility = 'hidden'; // TODO: ask jos why this is not none?
  63. this.dom.marker.innerHTML = '?';
  64. this.dom.background.appendChild(this.dom.marker);
  65. };
  66. /**
  67. * Set the group data for this group
  68. * @param {Object} data Group data, can contain properties content and className
  69. */
  70. Group.prototype.setData = function(data) {
  71. // update contents
  72. var content = data && data.content;
  73. if (content instanceof Element) {
  74. this.dom.inner.appendChild(content);
  75. }
  76. else if (content !== undefined && content !== null) {
  77. this.dom.inner.innerHTML = content;
  78. }
  79. else {
  80. this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null
  81. }
  82. // update title
  83. this.dom.label.title = data && data.title || '';
  84. if (!this.dom.inner.firstChild) {
  85. util.addClassName(this.dom.inner, 'hidden');
  86. }
  87. else {
  88. util.removeClassName(this.dom.inner, 'hidden');
  89. }
  90. // update className
  91. var className = data && data.className || null;
  92. if (className != this.className) {
  93. if (this.className) {
  94. util.removeClassName(this.dom.label, this.className);
  95. util.removeClassName(this.dom.foreground, this.className);
  96. util.removeClassName(this.dom.background, this.className);
  97. util.removeClassName(this.dom.axis, this.className);
  98. }
  99. util.addClassName(this.dom.label, className);
  100. util.addClassName(this.dom.foreground, className);
  101. util.addClassName(this.dom.background, className);
  102. util.addClassName(this.dom.axis, className);
  103. this.className = className;
  104. }
  105. // update style
  106. if (this.style) {
  107. util.removeCssText(this.dom.label, this.style);
  108. this.style = null;
  109. }
  110. if (data && data.style) {
  111. util.addCssText(this.dom.label, data.style);
  112. this.style = data.style;
  113. }
  114. };
  115. /**
  116. * Get the width of the group label
  117. * @return {number} width
  118. */
  119. Group.prototype.getLabelWidth = function() {
  120. return this.props.label.width;
  121. };
  122. /**
  123. * Repaint this group
  124. * @param {{start: number, end: number}} range
  125. * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin
  126. * @param {boolean} [restack=false] Force restacking of all items
  127. * @return {boolean} Returns true if the group is resized
  128. */
  129. Group.prototype.redraw = function(range, margin, restack) {
  130. var resized = false;
  131. this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range);
  132. // force recalculation of the height of the items when the marker height changed
  133. // (due to the Timeline being attached to the DOM or changed from display:none to visible)
  134. var markerHeight = this.dom.marker.clientHeight;
  135. if (markerHeight != this.lastMarkerHeight) {
  136. this.lastMarkerHeight = markerHeight;
  137. util.forEach(this.items, function (item) {
  138. item.dirty = true;
  139. if (item.displayed) item.redraw();
  140. });
  141. restack = true;
  142. }
  143. // reposition visible items vertically
  144. if (this.itemSet.options.stack) { // TODO: ugly way to access options...
  145. stack.stack(this.visibleItems, margin, restack);
  146. }
  147. else { // no stacking
  148. stack.nostack(this.visibleItems, margin, this.subgroups);
  149. }
  150. // recalculate the height of the group
  151. var height = this._calculateHeight(margin);
  152. // calculate actual size and position
  153. var foreground = this.dom.foreground;
  154. this.top = foreground.offsetTop;
  155. this.left = foreground.offsetLeft;
  156. this.width = foreground.offsetWidth;
  157. resized = util.updateProperty(this, 'height', height) || resized;
  158. // recalculate size of label
  159. resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized;
  160. resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized;
  161. // apply new height
  162. this.dom.background.style.height = height + 'px';
  163. this.dom.foreground.style.height = height + 'px';
  164. this.dom.label.style.height = height + 'px';
  165. // update vertical position of items after they are re-stacked and the height of the group is calculated
  166. for (var i = 0, ii = this.visibleItems.length; i < ii; i++) {
  167. var item = this.visibleItems[i];
  168. item.repositionY(margin);
  169. }
  170. return resized;
  171. };
  172. /**
  173. * recalculate the height of the group
  174. * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin
  175. * @returns {number} Returns the height
  176. * @private
  177. */
  178. Group.prototype._calculateHeight = function (margin) {
  179. // recalculate the height of the group
  180. var height;
  181. var visibleItems = this.visibleItems;
  182. //var visibleSubgroups = [];
  183. //this.visibleSubgroups = 0;
  184. this.resetSubgroups();
  185. var me = this;
  186. if (visibleItems.length) {
  187. var min = visibleItems[0].top;
  188. var max = visibleItems[0].top + visibleItems[0].height;
  189. util.forEach(visibleItems, function (item) {
  190. min = Math.min(min, item.top);
  191. max = Math.max(max, (item.top + item.height));
  192. if (item.data.subgroup !== undefined) {
  193. me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height,item.height);
  194. me.subgroups[item.data.subgroup].visible = true;
  195. //if (visibleSubgroups.indexOf(item.data.subgroup) == -1){
  196. // visibleSubgroups.push(item.data.subgroup);
  197. // me.visibleSubgroups += 1;
  198. //}
  199. }
  200. });
  201. if (min > margin.axis) {
  202. // there is an empty gap between the lowest item and the axis
  203. var offset = min - margin.axis;
  204. max -= offset;
  205. util.forEach(visibleItems, function (item) {
  206. item.top -= offset;
  207. });
  208. }
  209. height = max + margin.item.vertical / 2;
  210. }
  211. else {
  212. height = margin.axis + margin.item.vertical;
  213. }
  214. height = Math.max(height, this.props.label.height);
  215. return height;
  216. };
  217. /**
  218. * Show this group: attach to the DOM
  219. */
  220. Group.prototype.show = function() {
  221. if (!this.dom.label.parentNode) {
  222. this.itemSet.dom.labelSet.appendChild(this.dom.label);
  223. }
  224. if (!this.dom.foreground.parentNode) {
  225. this.itemSet.dom.foreground.appendChild(this.dom.foreground);
  226. }
  227. if (!this.dom.background.parentNode) {
  228. this.itemSet.dom.background.appendChild(this.dom.background);
  229. }
  230. if (!this.dom.axis.parentNode) {
  231. this.itemSet.dom.axis.appendChild(this.dom.axis);
  232. }
  233. };
  234. /**
  235. * Hide this group: remove from the DOM
  236. */
  237. Group.prototype.hide = function() {
  238. var label = this.dom.label;
  239. if (label.parentNode) {
  240. label.parentNode.removeChild(label);
  241. }
  242. var foreground = this.dom.foreground;
  243. if (foreground.parentNode) {
  244. foreground.parentNode.removeChild(foreground);
  245. }
  246. var background = this.dom.background;
  247. if (background.parentNode) {
  248. background.parentNode.removeChild(background);
  249. }
  250. var axis = this.dom.axis;
  251. if (axis.parentNode) {
  252. axis.parentNode.removeChild(axis);
  253. }
  254. };
  255. /**
  256. * Add an item to the group
  257. * @param {Item} item
  258. */
  259. Group.prototype.add = function(item) {
  260. this.items[item.id] = item;
  261. item.setParent(this);
  262. // add to
  263. if (item.data.subgroup !== undefined) {
  264. if (this.subgroups[item.data.subgroup] === undefined) {
  265. this.subgroups[item.data.subgroup] = {height:0, visible: false, index:this.subgroupIndex, items: []};
  266. this.subgroupIndex++;
  267. }
  268. this.subgroups[item.data.subgroup].items.push(item);
  269. }
  270. this.orderSubgroups();
  271. if (this.visibleItems.indexOf(item) == -1) {
  272. var range = this.itemSet.body.range; // TODO: not nice accessing the range like this
  273. this._checkIfVisible(item, this.visibleItems, range);
  274. }
  275. };
  276. Group.prototype.orderSubgroups = function() {
  277. if (this.subgroupOrderer !== undefined) {
  278. var sortArray = [];
  279. if (typeof this.subgroupOrderer == 'string') {
  280. for (var subgroup in this.subgroups) {
  281. sortArray.push({subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer]})
  282. }
  283. sortArray.sort(function (a, b) {
  284. return a.sortField - b.sortField;
  285. })
  286. }
  287. else if (typeof this.subgroupOrderer == 'function') {
  288. for (var subgroup in this.subgroups) {
  289. sortArray.push(this.subgroups[subgroup].items[0].data);
  290. }
  291. sortArray.sort(this.subgroupOrderer);
  292. }
  293. if (sortArray.length > 0) {
  294. for (var i = 0; i < sortArray.length; i++) {
  295. this.subgroups[sortArray[i].subgroup].index = i;
  296. }
  297. }
  298. }
  299. };
  300. Group.prototype.resetSubgroups = function() {
  301. for (var subgroup in this.subgroups) {
  302. if (this.subgroups.hasOwnProperty(subgroup)) {
  303. this.subgroups[subgroup].visible = false;
  304. }
  305. }
  306. };
  307. /**
  308. * Remove an item from the group
  309. * @param {Item} item
  310. */
  311. Group.prototype.remove = function(item) {
  312. delete this.items[item.id];
  313. item.setParent(null);
  314. // remove from visible items
  315. var index = this.visibleItems.indexOf(item);
  316. if (index != -1) this.visibleItems.splice(index, 1);
  317. // TODO: also remove from ordered items?
  318. };
  319. /**
  320. * Remove an item from the corresponding DataSet
  321. * @param {Item} item
  322. */
  323. Group.prototype.removeFromDataSet = function(item) {
  324. this.itemSet.removeItem(item.id);
  325. };
  326. /**
  327. * Reorder the items
  328. */
  329. Group.prototype.order = function() {
  330. var array = util.toArray(this.items);
  331. var startArray = [];
  332. var endArray = [];
  333. for (var i = 0; i < array.length; i++) {
  334. if (array[i].data.end !== undefined) {
  335. endArray.push(array[i]);
  336. }
  337. startArray.push(array[i]);
  338. }
  339. this.orderedItems = {
  340. byStart: startArray,
  341. byEnd: endArray
  342. };
  343. stack.orderByStart(this.orderedItems.byStart);
  344. stack.orderByEnd(this.orderedItems.byEnd);
  345. };
  346. /**
  347. * Update the visible items
  348. * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date
  349. * @param {Item[]} visibleItems The previously visible items.
  350. * @param {{start: number, end: number}} range Visible range
  351. * @return {Item[]} visibleItems The new visible items.
  352. * @private
  353. */
  354. Group.prototype._updateVisibleItems = function(orderedItems, oldVisibleItems, range) {
  355. var visibleItems = [];
  356. var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems
  357. var interval = (range.end - range.start) / 4;
  358. var lowerBound = range.start - interval;
  359. var upperBound = range.end + interval;
  360. var item, i;
  361. // this function is used to do the binary search.
  362. var searchFunction = function (value) {
  363. if (value < lowerBound) {return -1;}
  364. else if (value <= upperBound) {return 0;}
  365. else {return 1;}
  366. }
  367. // first check if the items that were in view previously are still in view.
  368. // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window!
  369. // also cleans up invisible items.
  370. if (oldVisibleItems.length > 0) {
  371. for (i = 0; i < oldVisibleItems.length; i++) {
  372. this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range);
  373. }
  374. }
  375. // we do a binary search for the items that have only start values.
  376. var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, 'data','start');
  377. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values.
  378. this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) {
  379. return (item.data.start < lowerBound || item.data.start > upperBound);
  380. });
  381. // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown.
  382. // We therefore have to brute force check all items in the byEnd list
  383. if (this.checkRangedItems == true) {
  384. this.checkRangedItems = false;
  385. for (i = 0; i < orderedItems.byEnd.length; i++) {
  386. this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range);
  387. }
  388. }
  389. else {
  390. // we do a binary search for the items that have defined end times.
  391. var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, 'data','end');
  392. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values.
  393. this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) {
  394. return (item.data.end < lowerBound || item.data.end > upperBound);
  395. });
  396. }
  397. // finally, we reposition all the visible items.
  398. for (i = 0; i < visibleItems.length; i++) {
  399. item = visibleItems[i];
  400. if (!item.displayed) item.show();
  401. // reposition item horizontally
  402. item.repositionX();
  403. }
  404. // debug
  405. //console.log("new line")
  406. //if (this.groupId == null) {
  407. // for (i = 0; i < orderedItems.byStart.length; i++) {
  408. // item = orderedItems.byStart[i].data;
  409. // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "")
  410. // }
  411. // for (i = 0; i < orderedItems.byEnd.length; i++) {
  412. // item = orderedItems.byEnd[i].data;
  413. // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "")
  414. // }
  415. //}
  416. return visibleItems;
  417. };
  418. Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) {
  419. var item;
  420. var i;
  421. if (initialPos != -1) {
  422. for (i = initialPos; i >= 0; i--) {
  423. item = items[i];
  424. if (breakCondition(item)) {
  425. break;
  426. }
  427. else {
  428. if (visibleItemsLookup[item.id] === undefined) {
  429. visibleItemsLookup[item.id] = true;
  430. visibleItems.push(item);
  431. }
  432. }
  433. }
  434. for (i = initialPos + 1; i < items.length; i++) {
  435. item = items[i];
  436. if (breakCondition(item)) {
  437. break;
  438. }
  439. else {
  440. if (visibleItemsLookup[item.id] === undefined) {
  441. visibleItemsLookup[item.id] = true;
  442. visibleItems.push(item);
  443. }
  444. }
  445. }
  446. }
  447. }
  448. /**
  449. * this function is very similar to the _checkIfInvisible() but it does not
  450. * return booleans, hides the item if it should not be seen and always adds to
  451. * the visibleItems.
  452. * this one is for brute forcing and hiding.
  453. *
  454. * @param {Item} item
  455. * @param {Array} visibleItems
  456. * @param {{start:number, end:number}} range
  457. * @private
  458. */
  459. Group.prototype._checkIfVisible = function(item, visibleItems, range) {
  460. if (item.isVisible(range)) {
  461. if (!item.displayed) item.show();
  462. // reposition item horizontally
  463. item.repositionX();
  464. visibleItems.push(item);
  465. }
  466. else {
  467. if (item.displayed) item.hide();
  468. }
  469. };
  470. /**
  471. * this function is very similar to the _checkIfInvisible() but it does not
  472. * return booleans, hides the item if it should not be seen and always adds to
  473. * the visibleItems.
  474. * this one is for brute forcing and hiding.
  475. *
  476. * @param {Item} item
  477. * @param {Array} visibleItems
  478. * @param {{start:number, end:number}} range
  479. * @private
  480. */
  481. Group.prototype._checkIfVisibleWithReference = function(item, visibleItems, visibleItemsLookup, range) {
  482. if (item.isVisible(range)) {
  483. if (visibleItemsLookup[item.id] === undefined) {
  484. visibleItemsLookup[item.id] = true;
  485. visibleItems.push(item);
  486. }
  487. }
  488. else {
  489. if (item.displayed) item.hide();
  490. }
  491. };
  492. module.exports = Group;