From 6c085b1cce98522c88b0a6f3aa3d0009cb115ce6 Mon Sep 17 00:00:00 2001 From: josdejong Date: Wed, 4 Dec 2013 10:39:39 +0100 Subject: [PATCH] Added a test example for groups. Added ContentPanel (not yet in use) --- src/timeline/component/ContentPanel.js | 113 +++++++++++++++++++++++++ src/timeline/component/TimeAxis.js | 4 +- src/timeline/component/item/ItemBox.js | 32 +++---- test/timeline_groups.html | 86 +++++++++++++++++++ 4 files changed, 218 insertions(+), 17 deletions(-) create mode 100644 src/timeline/component/ContentPanel.js create mode 100644 test/timeline_groups.html diff --git a/src/timeline/component/ContentPanel.js b/src/timeline/component/ContentPanel.js new file mode 100644 index 00000000..ff61a6e2 --- /dev/null +++ b/src/timeline/component/ContentPanel.js @@ -0,0 +1,113 @@ +/** + * A content panel can contain a groupset or an itemset, and can handle + * vertical scrolling + * @param {Component} [parent] + * @param {Component[]} [depends] Components on which this components depends + * (except for the parent) + * @param {Object} [options] Available parameters: + * {String | Number | function} [left] + * {String | Number | function} [top] + * {String | Number | function} [width] + * {String | Number | function} [height] + * {String | function} [className] + * @constructor ContentPanel + * @extends Panel + */ +function ContentPanel(parent, depends, options) { + this.id = util.randomUUID(); + this.parent = parent; + this.depends = depends; + + this.options = options || {}; +} + +ContentPanel.prototype = new Component(); + +/** + * Set options. Will extend the current options. + * @param {Object} [options] Available parameters: + * {String | function} [className] + * {String | Number | function} [left] + * {String | Number | function} [top] + * {String | Number | function} [width] + * {String | Number | function} [height] + */ +ContentPanel.prototype.setOptions = Component.prototype.setOptions; + +/** + * Get the container element of the panel, which can be used by a child to + * add its own widgets. + * @returns {HTMLElement} container + */ +ContentPanel.prototype.getContainer = function () { + return this.frame; +}; + +/** + * Repaint the component + * @return {Boolean} changed + */ +ContentPanel.prototype.repaint = function () { + var changed = 0, + update = util.updateProperty, + asSize = util.option.asSize, + options = this.options, + frame = this.frame; + if (!frame) { + frame = document.createElement('div'); + frame.className = 'content-panel'; + + var className = options.className; + if (className) { + if (typeof className == 'function') { + util.addClassName(frame, String(className())); + } + else { + util.addClassName(frame, String(className)); + } + } + + this.frame = frame; + changed += 1; + } + if (!frame.parentNode) { + if (!this.parent) { + throw new Error('Cannot repaint panel: no parent attached'); + } + var parentContainer = this.parent.getContainer(); + if (!parentContainer) { + throw new Error('Cannot repaint panel: parent has no container element'); + } + parentContainer.appendChild(frame); + changed += 1; + } + + changed += update(frame.style, 'top', asSize(options.top, '0px')); + changed += update(frame.style, 'left', asSize(options.left, '0px')); + changed += update(frame.style, 'width', asSize(options.width, '100%')); + changed += update(frame.style, 'height', asSize(options.height, '100%')); + + return (changed > 0); +}; + +/** + * Reflow the component + * @return {Boolean} resized + */ +ContentPanel.prototype.reflow = function () { + var changed = 0, + update = util.updateProperty, + frame = this.frame; + + if (frame) { + changed += update(this, 'top', frame.offsetTop); + changed += update(this, 'left', frame.offsetLeft); + changed += update(this, 'width', frame.offsetWidth); + changed += update(this, 'height', frame.offsetHeight); + } + else { + changed += 1; + } + + return (changed > 0); +}; diff --git a/src/timeline/component/TimeAxis.js b/src/timeline/component/TimeAxis.js index d4d1f3ee..6a4841d3 100644 --- a/src/timeline/component/TimeAxis.js +++ b/src/timeline/component/TimeAxis.js @@ -360,8 +360,8 @@ TimeAxis.prototype._repaintLine = function() { line.style.top = this.props.lineTop + 'px'; } else { - if (line && axis.parentElement) { - frame.removeChild(axis.line); + if (line && line.parentElement) { + frame.removeChild(line.line); delete this.dom.line; } } diff --git a/src/timeline/component/item/ItemBox.js b/src/timeline/component/item/ItemBox.js index fb25a3d2..48253cc4 100644 --- a/src/timeline/component/item/ItemBox.js +++ b/src/timeline/component/item/ItemBox.js @@ -66,31 +66,33 @@ ItemBox.prototype.repaint = function repaint() { if (!this.parent) { throw new Error('Cannot repaint item: no parent attached'); } - var foreground = this.parent.getForeground(); - if (!foreground) { - throw new Error('Cannot repaint time axis: ' + - 'parent has no foreground container element'); - } - var background = this.parent.getBackground(); - if (!background) { - throw new Error('Cannot repaint time axis: ' + - 'parent has no background container element'); - } - var axis = this.parent.getAxis(); - if (!background) { - throw new Error('Cannot repaint time axis: ' + - 'parent has no axis container element'); - } if (!dom.box.parentNode) { + var foreground = this.parent.getForeground(); + if (!foreground) { + throw new Error('Cannot repaint time axis: ' + + 'parent has no foreground container element'); + } foreground.appendChild(dom.box); changed = true; } + if (!dom.line.parentNode) { + var background = this.parent.getBackground(); + if (!background) { + throw new Error('Cannot repaint time axis: ' + + 'parent has no background container element'); + } background.appendChild(dom.line); changed = true; } + if (!dom.dot.parentNode) { + var axis = this.parent.getAxis(); + if (!background) { + throw new Error('Cannot repaint time axis: ' + + 'parent has no axis container element'); + } axis.appendChild(dom.dot); changed = true; } diff --git a/test/timeline_groups.html b/test/timeline_groups.html new file mode 100644 index 00000000..b9ed6abb --- /dev/null +++ b/test/timeline_groups.html @@ -0,0 +1,86 @@ + + + + Timeline | Group example + + + + + + + + + + +
+ + +
+ +
+ +
+ + + + \ No newline at end of file