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.

594 lines
18 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 = 'vis-label';
  45. this.dom.label = label;
  46. var inner = document.createElement('div');
  47. inner.className = 'vis-inner';
  48. label.appendChild(inner);
  49. this.dom.inner = inner;
  50. var foreground = document.createElement('div');
  51. foreground.className = 'vis-group';
  52. foreground['timeline-group'] = this;
  53. this.dom.foreground = foreground;
  54. this.dom.background = document.createElement('div');
  55. this.dom.background.className = 'vis-group';
  56. this.dom.axis = document.createElement('div');
  57. this.dom.axis.className = 'vis-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';
  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, 'vis-hidden');
  86. }
  87. else {
  88. util.removeClassName(this.dom.inner, 'vis-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, 'vis-' + this.style);
  108. this.style = null;
  109. }
  110. if (data && data.style) {
  111. util.addCssText(this.dom.label, 'vis-' + 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. // force recalculation of the height of the items when the marker height changed
  132. // (due to the Timeline being attached to the DOM or changed from display:none to visible)
  133. var markerHeight = this.dom.marker.clientHeight;
  134. if (markerHeight != this.lastMarkerHeight) {
  135. this.lastMarkerHeight = markerHeight;
  136. util.forEach(this.items, function (item) {
  137. item.dirty = true;
  138. if (item.displayed) item.redraw();
  139. });
  140. restack = true;
  141. }
  142. // reposition visible items vertically
  143. if (typeof this.itemSet.options.order === 'function') {
  144. // a custom order function
  145. if (restack) {
  146. // brute force restack of all items
  147. // show all items
  148. var me = this;
  149. var limitSize = false;
  150. util.forEach(this.items, function (item) {
  151. if (!item.displayed) {
  152. item.redraw();
  153. me.visibleItems.push(item);
  154. }
  155. item.repositionX(limitSize);
  156. });
  157. // order all items and force a restacking
  158. var customOrderedItems = this.orderedItems.byStart.slice().sort(function (a, b) {
  159. return me.itemSet.options.order(a.data, b.data);
  160. });
  161. stack.stack(customOrderedItems, margin, true /* restack=true */);
  162. }
  163. this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range);
  164. }
  165. else {
  166. // no custom order function, lazy stacking
  167. this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range);
  168. if (this.itemSet.options.stack) { // TODO: ugly way to access options...
  169. stack.stack(this.visibleItems, margin, restack);
  170. }
  171. else { // no stacking
  172. stack.nostack(this.visibleItems, margin, this.subgroups);
  173. }
  174. }
  175. // recalculate the height of the group
  176. var height = this._calculateHeight(margin);
  177. // calculate actual size and position
  178. var foreground = this.dom.foreground;
  179. this.top = foreground.offsetTop;
  180. this.left = foreground.offsetLeft;
  181. this.width = foreground.offsetWidth;
  182. resized = util.updateProperty(this, 'height', height) || resized;
  183. // recalculate size of label
  184. resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized;
  185. resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized;
  186. // apply new height
  187. this.dom.background.style.height = height + 'px';
  188. this.dom.foreground.style.height = height + 'px';
  189. this.dom.label.style.height = height + 'px';
  190. // update vertical position of items after they are re-stacked and the height of the group is calculated
  191. for (var i = 0, ii = this.visibleItems.length; i < ii; i++) {
  192. var item = this.visibleItems[i];
  193. item.repositionY(margin);
  194. }
  195. return resized;
  196. };
  197. /**
  198. * recalculate the height of the group
  199. * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin
  200. * @returns {number} Returns the height
  201. * @private
  202. */
  203. Group.prototype._calculateHeight = function (margin) {
  204. // recalculate the height of the group
  205. var height;
  206. var visibleItems = this.visibleItems;
  207. //var visibleSubgroups = [];
  208. //this.visibleSubgroups = 0;
  209. this.resetSubgroups();
  210. var me = this;
  211. if (visibleItems.length > 0) {
  212. var min = visibleItems[0].top;
  213. var max = visibleItems[0].top + visibleItems[0].height;
  214. util.forEach(visibleItems, function (item) {
  215. min = Math.min(min, item.top);
  216. max = Math.max(max, (item.top + item.height));
  217. if (item.data.subgroup !== undefined) {
  218. me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height,item.height);
  219. me.subgroups[item.data.subgroup].visible = true;
  220. }
  221. });
  222. if (min > margin.axis) {
  223. // there is an empty gap between the lowest item and the axis
  224. var offset = min - margin.axis;
  225. max -= offset;
  226. util.forEach(visibleItems, function (item) {
  227. item.top -= offset;
  228. });
  229. }
  230. height = max + margin.item.vertical / 2;
  231. }
  232. else {
  233. height = 0;
  234. }
  235. height = Math.max(height, this.props.label.height);
  236. return height;
  237. };
  238. /**
  239. * Show this group: attach to the DOM
  240. */
  241. Group.prototype.show = function() {
  242. if (!this.dom.label.parentNode) {
  243. this.itemSet.dom.labelSet.appendChild(this.dom.label);
  244. }
  245. if (!this.dom.foreground.parentNode) {
  246. this.itemSet.dom.foreground.appendChild(this.dom.foreground);
  247. }
  248. if (!this.dom.background.parentNode) {
  249. this.itemSet.dom.background.appendChild(this.dom.background);
  250. }
  251. if (!this.dom.axis.parentNode) {
  252. this.itemSet.dom.axis.appendChild(this.dom.axis);
  253. }
  254. };
  255. /**
  256. * Hide this group: remove from the DOM
  257. */
  258. Group.prototype.hide = function() {
  259. var label = this.dom.label;
  260. if (label.parentNode) {
  261. label.parentNode.removeChild(label);
  262. }
  263. var foreground = this.dom.foreground;
  264. if (foreground.parentNode) {
  265. foreground.parentNode.removeChild(foreground);
  266. }
  267. var background = this.dom.background;
  268. if (background.parentNode) {
  269. background.parentNode.removeChild(background);
  270. }
  271. var axis = this.dom.axis;
  272. if (axis.parentNode) {
  273. axis.parentNode.removeChild(axis);
  274. }
  275. };
  276. /**
  277. * Add an item to the group
  278. * @param {Item} item
  279. */
  280. Group.prototype.add = function(item) {
  281. this.items[item.id] = item;
  282. item.setParent(this);
  283. // add to
  284. if (item.data.subgroup !== undefined) {
  285. if (this.subgroups[item.data.subgroup] === undefined) {
  286. this.subgroups[item.data.subgroup] = {height:0, visible: false, index:this.subgroupIndex, items: []};
  287. this.subgroupIndex++;
  288. }
  289. this.subgroups[item.data.subgroup].items.push(item);
  290. }
  291. this.orderSubgroups();
  292. if (this.visibleItems.indexOf(item) == -1) {
  293. var range = this.itemSet.body.range; // TODO: not nice accessing the range like this
  294. this._checkIfVisible(item, this.visibleItems, range);
  295. }
  296. };
  297. Group.prototype.orderSubgroups = function() {
  298. if (this.subgroupOrderer !== undefined) {
  299. var sortArray = [];
  300. if (typeof this.subgroupOrderer == 'string') {
  301. for (var subgroup in this.subgroups) {
  302. sortArray.push({subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer]})
  303. }
  304. sortArray.sort(function (a, b) {
  305. return a.sortField - b.sortField;
  306. })
  307. }
  308. else if (typeof this.subgroupOrderer == 'function') {
  309. for (var subgroup in this.subgroups) {
  310. sortArray.push(this.subgroups[subgroup].items[0].data);
  311. }
  312. sortArray.sort(this.subgroupOrderer);
  313. }
  314. if (sortArray.length > 0) {
  315. for (var i = 0; i < sortArray.length; i++) {
  316. this.subgroups[sortArray[i].subgroup].index = i;
  317. }
  318. }
  319. }
  320. };
  321. Group.prototype.resetSubgroups = function() {
  322. for (var subgroup in this.subgroups) {
  323. if (this.subgroups.hasOwnProperty(subgroup)) {
  324. this.subgroups[subgroup].visible = false;
  325. }
  326. }
  327. };
  328. /**
  329. * Remove an item from the group
  330. * @param {Item} item
  331. */
  332. Group.prototype.remove = function(item) {
  333. delete this.items[item.id];
  334. item.setParent(null);
  335. // remove from visible items
  336. var index = this.visibleItems.indexOf(item);
  337. if (index != -1) this.visibleItems.splice(index, 1);
  338. // TODO: also remove from ordered items?
  339. };
  340. /**
  341. * Remove an item from the corresponding DataSet
  342. * @param {Item} item
  343. */
  344. Group.prototype.removeFromDataSet = function(item) {
  345. this.itemSet.removeItem(item.id);
  346. };
  347. /**
  348. * Reorder the items
  349. */
  350. Group.prototype.order = function() {
  351. var array = util.toArray(this.items);
  352. var startArray = [];
  353. var endArray = [];
  354. for (var i = 0; i < array.length; i++) {
  355. if (array[i].data.end !== undefined) {
  356. endArray.push(array[i]);
  357. }
  358. startArray.push(array[i]);
  359. }
  360. this.orderedItems = {
  361. byStart: startArray,
  362. byEnd: endArray
  363. };
  364. stack.orderByStart(this.orderedItems.byStart);
  365. stack.orderByEnd(this.orderedItems.byEnd);
  366. };
  367. /**
  368. * Update the visible items
  369. * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date
  370. * @param {Item[]} visibleItems The previously visible items.
  371. * @param {{start: number, end: number}} range Visible range
  372. * @return {Item[]} visibleItems The new visible items.
  373. * @private
  374. */
  375. Group.prototype._updateVisibleItems = function(orderedItems, oldVisibleItems, range) {
  376. var visibleItems = [];
  377. var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems
  378. var interval = (range.end - range.start) / 4;
  379. var lowerBound = range.start - interval;
  380. var upperBound = range.end + interval;
  381. var item, i;
  382. // this function is used to do the binary search.
  383. var searchFunction = function (value) {
  384. if (value < lowerBound) {return -1;}
  385. else if (value <= upperBound) {return 0;}
  386. else {return 1;}
  387. }
  388. // first check if the items that were in view previously are still in view.
  389. // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window!
  390. // also cleans up invisible items.
  391. if (oldVisibleItems.length > 0) {
  392. for (i = 0; i < oldVisibleItems.length; i++) {
  393. this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range);
  394. }
  395. }
  396. // we do a binary search for the items that have only start values.
  397. var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, 'data','start');
  398. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values.
  399. this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) {
  400. return (item.data.start < lowerBound || item.data.start > upperBound);
  401. });
  402. // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown.
  403. // We therefore have to brute force check all items in the byEnd list
  404. if (this.checkRangedItems == true) {
  405. this.checkRangedItems = false;
  406. for (i = 0; i < orderedItems.byEnd.length; i++) {
  407. this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range);
  408. }
  409. }
  410. else {
  411. // we do a binary search for the items that have defined end times.
  412. var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, 'data','end');
  413. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values.
  414. this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) {
  415. return (item.data.end < lowerBound || item.data.end > upperBound);
  416. });
  417. }
  418. // finally, we reposition all the visible items.
  419. for (i = 0; i < visibleItems.length; i++) {
  420. item = visibleItems[i];
  421. if (!item.displayed) item.show();
  422. // reposition item horizontally
  423. item.repositionX();
  424. }
  425. // debug
  426. //console.log("new line")
  427. //if (this.groupId == null) {
  428. // for (i = 0; i < orderedItems.byStart.length; i++) {
  429. // item = orderedItems.byStart[i].data;
  430. // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "")
  431. // }
  432. // for (i = 0; i < orderedItems.byEnd.length; i++) {
  433. // item = orderedItems.byEnd[i].data;
  434. // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "")
  435. // }
  436. //}
  437. return visibleItems;
  438. };
  439. Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) {
  440. var item;
  441. var i;
  442. if (initialPos != -1) {
  443. for (i = initialPos; i >= 0; i--) {
  444. item = items[i];
  445. if (breakCondition(item)) {
  446. break;
  447. }
  448. else {
  449. if (visibleItemsLookup[item.id] === undefined) {
  450. visibleItemsLookup[item.id] = true;
  451. visibleItems.push(item);
  452. }
  453. }
  454. }
  455. for (i = initialPos + 1; i < items.length; i++) {
  456. item = items[i];
  457. if (breakCondition(item)) {
  458. break;
  459. }
  460. else {
  461. if (visibleItemsLookup[item.id] === undefined) {
  462. visibleItemsLookup[item.id] = true;
  463. visibleItems.push(item);
  464. }
  465. }
  466. }
  467. }
  468. }
  469. /**
  470. * this function is very similar to the _checkIfInvisible() but it does not
  471. * return booleans, hides the item if it should not be seen and always adds to
  472. * the visibleItems.
  473. * this one is for brute forcing and hiding.
  474. *
  475. * @param {Item} item
  476. * @param {Array} visibleItems
  477. * @param {{start:number, end:number}} range
  478. * @private
  479. */
  480. Group.prototype._checkIfVisible = function(item, visibleItems, range) {
  481. if (item.isVisible(range)) {
  482. if (!item.displayed) item.show();
  483. // reposition item horizontally
  484. item.repositionX();
  485. visibleItems.push(item);
  486. }
  487. else {
  488. if (item.displayed) item.hide();
  489. }
  490. };
  491. /**
  492. * this function is very similar to the _checkIfInvisible() but it does not
  493. * return booleans, hides the item if it should not be seen and always adds to
  494. * the visibleItems.
  495. * this one is for brute forcing and hiding.
  496. *
  497. * @param {Item} item
  498. * @param {Array} visibleItems
  499. * @param {{start:number, end:number}} range
  500. * @private
  501. */
  502. Group.prototype._checkIfVisibleWithReference = function(item, visibleItems, visibleItemsLookup, range) {
  503. if (item.isVisible(range)) {
  504. if (visibleItemsLookup[item.id] === undefined) {
  505. visibleItemsLookup[item.id] = true;
  506. visibleItems.push(item);
  507. }
  508. }
  509. else {
  510. if (item.displayed) item.hide();
  511. }
  512. };
  513. module.exports = Group;