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.

598 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 = '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. // 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) {
  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. //if (visibleSubgroups.indexOf(item.data.subgroup) == -1){
  221. // visibleSubgroups.push(item.data.subgroup);
  222. // me.visibleSubgroups += 1;
  223. //}
  224. }
  225. });
  226. if (min > margin.axis) {
  227. // there is an empty gap between the lowest item and the axis
  228. var offset = min - margin.axis;
  229. max -= offset;
  230. util.forEach(visibleItems, function (item) {
  231. item.top -= offset;
  232. });
  233. }
  234. height = max + margin.item.vertical / 2;
  235. }
  236. else {
  237. height = margin.axis + margin.item.vertical;
  238. }
  239. height = Math.max(height, this.props.label.height);
  240. return height;
  241. };
  242. /**
  243. * Show this group: attach to the DOM
  244. */
  245. Group.prototype.show = function() {
  246. if (!this.dom.label.parentNode) {
  247. this.itemSet.dom.labelSet.appendChild(this.dom.label);
  248. }
  249. if (!this.dom.foreground.parentNode) {
  250. this.itemSet.dom.foreground.appendChild(this.dom.foreground);
  251. }
  252. if (!this.dom.background.parentNode) {
  253. this.itemSet.dom.background.appendChild(this.dom.background);
  254. }
  255. if (!this.dom.axis.parentNode) {
  256. this.itemSet.dom.axis.appendChild(this.dom.axis);
  257. }
  258. };
  259. /**
  260. * Hide this group: remove from the DOM
  261. */
  262. Group.prototype.hide = function() {
  263. var label = this.dom.label;
  264. if (label.parentNode) {
  265. label.parentNode.removeChild(label);
  266. }
  267. var foreground = this.dom.foreground;
  268. if (foreground.parentNode) {
  269. foreground.parentNode.removeChild(foreground);
  270. }
  271. var background = this.dom.background;
  272. if (background.parentNode) {
  273. background.parentNode.removeChild(background);
  274. }
  275. var axis = this.dom.axis;
  276. if (axis.parentNode) {
  277. axis.parentNode.removeChild(axis);
  278. }
  279. };
  280. /**
  281. * Add an item to the group
  282. * @param {Item} item
  283. */
  284. Group.prototype.add = function(item) {
  285. this.items[item.id] = item;
  286. item.setParent(this);
  287. // add to
  288. if (item.data.subgroup !== undefined) {
  289. if (this.subgroups[item.data.subgroup] === undefined) {
  290. this.subgroups[item.data.subgroup] = {height:0, visible: false, index:this.subgroupIndex, items: []};
  291. this.subgroupIndex++;
  292. }
  293. this.subgroups[item.data.subgroup].items.push(item);
  294. }
  295. this.orderSubgroups();
  296. if (this.visibleItems.indexOf(item) == -1) {
  297. var range = this.itemSet.body.range; // TODO: not nice accessing the range like this
  298. this._checkIfVisible(item, this.visibleItems, range);
  299. }
  300. };
  301. Group.prototype.orderSubgroups = function() {
  302. if (this.subgroupOrderer !== undefined) {
  303. var sortArray = [];
  304. if (typeof this.subgroupOrderer == 'string') {
  305. for (var subgroup in this.subgroups) {
  306. sortArray.push({subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer]})
  307. }
  308. sortArray.sort(function (a, b) {
  309. return a.sortField - b.sortField;
  310. })
  311. }
  312. else if (typeof this.subgroupOrderer == 'function') {
  313. for (var subgroup in this.subgroups) {
  314. sortArray.push(this.subgroups[subgroup].items[0].data);
  315. }
  316. sortArray.sort(this.subgroupOrderer);
  317. }
  318. if (sortArray.length > 0) {
  319. for (var i = 0; i < sortArray.length; i++) {
  320. this.subgroups[sortArray[i].subgroup].index = i;
  321. }
  322. }
  323. }
  324. };
  325. Group.prototype.resetSubgroups = function() {
  326. for (var subgroup in this.subgroups) {
  327. if (this.subgroups.hasOwnProperty(subgroup)) {
  328. this.subgroups[subgroup].visible = false;
  329. }
  330. }
  331. };
  332. /**
  333. * Remove an item from the group
  334. * @param {Item} item
  335. */
  336. Group.prototype.remove = function(item) {
  337. delete this.items[item.id];
  338. item.setParent(null);
  339. // remove from visible items
  340. var index = this.visibleItems.indexOf(item);
  341. if (index != -1) this.visibleItems.splice(index, 1);
  342. // TODO: also remove from ordered items?
  343. };
  344. /**
  345. * Remove an item from the corresponding DataSet
  346. * @param {Item} item
  347. */
  348. Group.prototype.removeFromDataSet = function(item) {
  349. this.itemSet.removeItem(item.id);
  350. };
  351. /**
  352. * Reorder the items
  353. */
  354. Group.prototype.order = function() {
  355. var array = util.toArray(this.items);
  356. var startArray = [];
  357. var endArray = [];
  358. for (var i = 0; i < array.length; i++) {
  359. if (array[i].data.end !== undefined) {
  360. endArray.push(array[i]);
  361. }
  362. startArray.push(array[i]);
  363. }
  364. this.orderedItems = {
  365. byStart: startArray,
  366. byEnd: endArray
  367. };
  368. stack.orderByStart(this.orderedItems.byStart);
  369. stack.orderByEnd(this.orderedItems.byEnd);
  370. };
  371. /**
  372. * Update the visible items
  373. * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date
  374. * @param {Item[]} visibleItems The previously visible items.
  375. * @param {{start: number, end: number}} range Visible range
  376. * @return {Item[]} visibleItems The new visible items.
  377. * @private
  378. */
  379. Group.prototype._updateVisibleItems = function(orderedItems, oldVisibleItems, range) {
  380. var visibleItems = [];
  381. var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems
  382. var interval = (range.end - range.start) / 4;
  383. var lowerBound = range.start - interval;
  384. var upperBound = range.end + interval;
  385. var item, i;
  386. // this function is used to do the binary search.
  387. var searchFunction = function (value) {
  388. if (value < lowerBound) {return -1;}
  389. else if (value <= upperBound) {return 0;}
  390. else {return 1;}
  391. }
  392. // first check if the items that were in view previously are still in view.
  393. // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window!
  394. // also cleans up invisible items.
  395. if (oldVisibleItems.length > 0) {
  396. for (i = 0; i < oldVisibleItems.length; i++) {
  397. this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range);
  398. }
  399. }
  400. // we do a binary search for the items that have only start values.
  401. var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, 'data','start');
  402. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values.
  403. this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) {
  404. return (item.data.start < lowerBound || item.data.start > upperBound);
  405. });
  406. // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown.
  407. // We therefore have to brute force check all items in the byEnd list
  408. if (this.checkRangedItems == true) {
  409. this.checkRangedItems = false;
  410. for (i = 0; i < orderedItems.byEnd.length; i++) {
  411. this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range);
  412. }
  413. }
  414. else {
  415. // we do a binary search for the items that have defined end times.
  416. var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, 'data','end');
  417. // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values.
  418. this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) {
  419. return (item.data.end < lowerBound || item.data.end > upperBound);
  420. });
  421. }
  422. // finally, we reposition all the visible items.
  423. for (i = 0; i < visibleItems.length; i++) {
  424. item = visibleItems[i];
  425. if (!item.displayed) item.show();
  426. // reposition item horizontally
  427. item.repositionX();
  428. }
  429. // debug
  430. //console.log("new line")
  431. //if (this.groupId == null) {
  432. // for (i = 0; i < orderedItems.byStart.length; i++) {
  433. // item = orderedItems.byStart[i].data;
  434. // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "")
  435. // }
  436. // for (i = 0; i < orderedItems.byEnd.length; i++) {
  437. // item = orderedItems.byEnd[i].data;
  438. // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "")
  439. // }
  440. //}
  441. return visibleItems;
  442. };
  443. Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) {
  444. var item;
  445. var i;
  446. if (initialPos != -1) {
  447. for (i = initialPos; i >= 0; i--) {
  448. item = items[i];
  449. if (breakCondition(item)) {
  450. break;
  451. }
  452. else {
  453. if (visibleItemsLookup[item.id] === undefined) {
  454. visibleItemsLookup[item.id] = true;
  455. visibleItems.push(item);
  456. }
  457. }
  458. }
  459. for (i = initialPos + 1; i < items.length; i++) {
  460. item = items[i];
  461. if (breakCondition(item)) {
  462. break;
  463. }
  464. else {
  465. if (visibleItemsLookup[item.id] === undefined) {
  466. visibleItemsLookup[item.id] = true;
  467. visibleItems.push(item);
  468. }
  469. }
  470. }
  471. }
  472. }
  473. /**
  474. * this function is very similar to the _checkIfInvisible() but it does not
  475. * return booleans, hides the item if it should not be seen and always adds to
  476. * the visibleItems.
  477. * this one is for brute forcing and hiding.
  478. *
  479. * @param {Item} item
  480. * @param {Array} visibleItems
  481. * @param {{start:number, end:number}} range
  482. * @private
  483. */
  484. Group.prototype._checkIfVisible = function(item, visibleItems, range) {
  485. if (item.isVisible(range)) {
  486. if (!item.displayed) item.show();
  487. // reposition item horizontally
  488. item.repositionX();
  489. visibleItems.push(item);
  490. }
  491. else {
  492. if (item.displayed) item.hide();
  493. }
  494. };
  495. /**
  496. * this function is very similar to the _checkIfInvisible() but it does not
  497. * return booleans, hides the item if it should not be seen and always adds to
  498. * the visibleItems.
  499. * this one is for brute forcing and hiding.
  500. *
  501. * @param {Item} item
  502. * @param {Array} visibleItems
  503. * @param {{start:number, end:number}} range
  504. * @private
  505. */
  506. Group.prototype._checkIfVisibleWithReference = function(item, visibleItems, visibleItemsLookup, range) {
  507. if (item.isVisible(range)) {
  508. if (visibleItemsLookup[item.id] === undefined) {
  509. visibleItemsLookup[item.id] = true;
  510. visibleItems.push(item);
  511. }
  512. }
  513. else {
  514. if (item.displayed) item.hide();
  515. }
  516. };
  517. module.exports = Group;