var util = require('../../util');
|
|
var Component = require('./Component');
|
|
var TimeStep = require('../TimeStep');
|
|
var DateUtil = require('../DateUtil');
|
|
var moment = require('../../module/moment');
|
|
|
|
/**
|
|
* A horizontal time axis
|
|
* @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body
|
|
* @param {Object} [options] See TimeAxis.setOptions for the available
|
|
* options.
|
|
* @constructor TimeAxis
|
|
* @extends Component
|
|
*/
|
|
function TimeAxis (body, options) {
|
|
this.dom = {
|
|
foreground: null,
|
|
lines: [],
|
|
majorTexts: [],
|
|
minorTexts: [],
|
|
redundant: {
|
|
lines: [],
|
|
majorTexts: [],
|
|
minorTexts: []
|
|
}
|
|
};
|
|
this.props = {
|
|
range: {
|
|
start: 0,
|
|
end: 0,
|
|
minimumStep: 0
|
|
},
|
|
lineTop: 0
|
|
};
|
|
|
|
this.defaultOptions = {
|
|
orientation: 'bottom', // axis orientation: 'top' or 'bottom'
|
|
showMinorLabels: true,
|
|
showMajorLabels: true,
|
|
format: null,
|
|
timeAxis: null
|
|
};
|
|
this.options = util.extend({}, this.defaultOptions);
|
|
|
|
this.body = body;
|
|
|
|
// create the HTML DOM
|
|
this._create();
|
|
|
|
this.setOptions(options);
|
|
}
|
|
|
|
TimeAxis.prototype = new Component();
|
|
|
|
/**
|
|
* Set options for the TimeAxis.
|
|
* Parameters will be merged in current options.
|
|
* @param {Object} options Available options:
|
|
* {string} [orientation]
|
|
* {boolean} [showMinorLabels]
|
|
* {boolean} [showMajorLabels]
|
|
*/
|
|
TimeAxis.prototype.setOptions = function(options) {
|
|
if (options) {
|
|
// copy all options that we know
|
|
util.selectiveExtend([
|
|
'showMinorLabels',
|
|
'showMajorLabels',
|
|
'hiddenDates',
|
|
'format',
|
|
'timeAxis'
|
|
], this.options, options);
|
|
|
|
if ('orientation' in options) {
|
|
if (typeof options.orientation === 'string') {
|
|
this.options.orientation = options.orientation;
|
|
}
|
|
else if (typeof options.orientation === 'object' && 'axis' in options.orientation) {
|
|
this.options.orientation = options.orientation.axis;
|
|
}
|
|
}
|
|
|
|
// apply locale to moment.js
|
|
// TODO: not so nice, this is applied globally to moment.js
|
|
if ('locale' in options) {
|
|
if (typeof moment.locale === 'function') {
|
|
// moment.js 2.8.1+
|
|
moment.locale(options.locale);
|
|
}
|
|
else {
|
|
moment.lang(options.locale);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Create the HTML DOM for the TimeAxis
|
|
*/
|
|
TimeAxis.prototype._create = function() {
|
|
this.dom.foreground = document.createElement('div');
|
|
this.dom.background = document.createElement('div');
|
|
|
|
this.dom.foreground.className = 'timeaxis foreground';
|
|
this.dom.background.className = 'timeaxis background';
|
|
};
|
|
|
|
/**
|
|
* Destroy the TimeAxis
|
|
*/
|
|
TimeAxis.prototype.destroy = function() {
|
|
// remove from DOM
|
|
if (this.dom.foreground.parentNode) {
|
|
this.dom.foreground.parentNode.removeChild(this.dom.foreground);
|
|
}
|
|
if (this.dom.background.parentNode) {
|
|
this.dom.background.parentNode.removeChild(this.dom.background);
|
|
}
|
|
|
|
this.body = null;
|
|
};
|
|
|
|
/**
|
|
* Repaint the component
|
|
* @return {boolean} Returns true if the component is resized
|
|
*/
|
|
TimeAxis.prototype.redraw = function () {
|
|
var options = this.options;
|
|
var props = this.props;
|
|
var foreground = this.dom.foreground;
|
|
var background = this.dom.background;
|
|
|
|
// determine the correct parent DOM element (depending on option orientation)
|
|
var parent = (options.orientation == 'top') ? this.body.dom.top : this.body.dom.bottom;
|
|
var parentChanged = (foreground.parentNode !== parent);
|
|
|
|
// calculate character width and height
|
|
this._calculateCharSize();
|
|
|
|
// TODO: recalculate sizes only needed when parent is resized or options is changed
|
|
var showMinorLabels = this.options.showMinorLabels;
|
|
var showMajorLabels = this.options.showMajorLabels;
|
|
|
|
// determine the width and height of the elemens for the axis
|
|
props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0;
|
|
props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0;
|
|
props.height = props.minorLabelHeight + props.majorLabelHeight;
|
|
props.width = foreground.offsetWidth;
|
|
|
|
props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight -
|
|
(options.orientation == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height);
|
|
props.minorLineWidth = 1; // TODO: really calculate width
|
|
props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight;
|
|
props.majorLineWidth = 1; // TODO: really calculate width
|
|
|
|
// take foreground and background offline while updating (is almost twice as fast)
|
|
var foregroundNextSibling = foreground.nextSibling;
|
|
var backgroundNextSibling = background.nextSibling;
|
|
foreground.parentNode && foreground.parentNode.removeChild(foreground);
|
|
background.parentNode && background.parentNode.removeChild(background);
|
|
|
|
foreground.style.height = this.props.height + 'px';
|
|
|
|
this._repaintLabels();
|
|
|
|
// put DOM online again (at the same place)
|
|
if (foregroundNextSibling) {
|
|
parent.insertBefore(foreground, foregroundNextSibling);
|
|
}
|
|
else {
|
|
parent.appendChild(foreground)
|
|
}
|
|
if (backgroundNextSibling) {
|
|
this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling);
|
|
}
|
|
else {
|
|
this.body.dom.backgroundVertical.appendChild(background)
|
|
}
|
|
|
|
return this._isResized() || parentChanged;
|
|
};
|
|
|
|
/**
|
|
* Repaint major and minor text labels and vertical grid lines
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._repaintLabels = function () {
|
|
var orientation = this.options.orientation;
|
|
|
|
// calculate range and step (step such that we have space for 7 characters per label)
|
|
var start = util.convert(this.body.range.start, 'Number');
|
|
var end = util.convert(this.body.range.end, 'Number');
|
|
var timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf();
|
|
var minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.body.hiddenDates, this.body.range, timeLabelsize);
|
|
minimumStep -= this.body.util.toTime(0).valueOf();
|
|
|
|
var step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates);
|
|
if (this.options.format) {
|
|
step.setFormat(this.options.format);
|
|
}
|
|
if (this.options.timeAxis) {
|
|
step.setScale(this.options.timeAxis);
|
|
}
|
|
this.step = step;
|
|
|
|
// Move all DOM elements to a "redundant" list, where they
|
|
// can be picked for re-use, and clear the lists with lines and texts.
|
|
// At the end of the function _repaintLabels, left over elements will be cleaned up
|
|
var dom = this.dom;
|
|
dom.redundant.lines = dom.lines;
|
|
dom.redundant.majorTexts = dom.majorTexts;
|
|
dom.redundant.minorTexts = dom.minorTexts;
|
|
dom.lines = [];
|
|
dom.majorTexts = [];
|
|
dom.minorTexts = [];
|
|
|
|
var cur;
|
|
var x = 0;
|
|
var isMajor;
|
|
var xPrev = 0;
|
|
var width = 0;
|
|
var prevLine;
|
|
var xFirstMajorLabel = undefined;
|
|
var max = 0;
|
|
var className;
|
|
|
|
step.first();
|
|
while (step.hasNext() && max < 1000) {
|
|
max++;
|
|
|
|
cur = step.getCurrent();
|
|
isMajor = step.isMajor();
|
|
className = step.getClassName();
|
|
|
|
xPrev = x;
|
|
x = this.body.util.toScreen(cur);
|
|
width = x - xPrev;
|
|
if (prevLine) {
|
|
prevLine.style.width = width + 'px';
|
|
}
|
|
|
|
if (this.options.showMinorLabels) {
|
|
this._repaintMinorText(x, step.getLabelMinor(), orientation, className);
|
|
}
|
|
|
|
if (isMajor && this.options.showMajorLabels) {
|
|
if (x > 0) {
|
|
if (xFirstMajorLabel == undefined) {
|
|
xFirstMajorLabel = x;
|
|
}
|
|
this._repaintMajorText(x, step.getLabelMajor(), orientation, className);
|
|
}
|
|
prevLine = this._repaintMajorLine(x, orientation, className);
|
|
}
|
|
else {
|
|
prevLine = this._repaintMinorLine(x, orientation, className);
|
|
}
|
|
|
|
step.next();
|
|
}
|
|
|
|
// create a major label on the left when needed
|
|
if (this.options.showMajorLabels) {
|
|
var leftTime = this.body.util.toTime(0),
|
|
leftText = step.getLabelMajor(leftTime),
|
|
widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation
|
|
|
|
if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) {
|
|
this._repaintMajorText(0, leftText, orientation, className);
|
|
}
|
|
}
|
|
|
|
// Cleanup leftover DOM elements from the redundant list
|
|
util.forEach(this.dom.redundant, function (arr) {
|
|
while (arr.length) {
|
|
var elem = arr.pop();
|
|
if (elem && elem.parentNode) {
|
|
elem.parentNode.removeChild(elem);
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Create a minor label for the axis at position x
|
|
* @param {Number} x
|
|
* @param {String} text
|
|
* @param {String} orientation "top" or "bottom" (default)
|
|
* @param {String} className
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._repaintMinorText = function (x, text, orientation, className) {
|
|
// reuse redundant label
|
|
var label = this.dom.redundant.minorTexts.shift();
|
|
|
|
if (!label) {
|
|
// create new label
|
|
var content = document.createTextNode('');
|
|
label = document.createElement('div');
|
|
label.appendChild(content);
|
|
this.dom.foreground.appendChild(label);
|
|
}
|
|
this.dom.minorTexts.push(label);
|
|
|
|
label.childNodes[0].nodeValue = text;
|
|
|
|
label.style.top = (orientation == 'top') ? (this.props.majorLabelHeight + 'px') : '0';
|
|
label.style.left = x + 'px';
|
|
label.className = 'text minor ' + className;
|
|
//label.title = title; // TODO: this is a heavy operation
|
|
};
|
|
|
|
/**
|
|
* Create a Major label for the axis at position x
|
|
* @param {Number} x
|
|
* @param {String} text
|
|
* @param {String} orientation "top" or "bottom" (default)
|
|
* @param {String} className
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._repaintMajorText = function (x, text, orientation, className) {
|
|
// reuse redundant label
|
|
var label = this.dom.redundant.majorTexts.shift();
|
|
|
|
if (!label) {
|
|
// create label
|
|
var content = document.createTextNode(text);
|
|
label = document.createElement('div');
|
|
label.appendChild(content);
|
|
this.dom.foreground.appendChild(label);
|
|
}
|
|
this.dom.majorTexts.push(label);
|
|
|
|
label.childNodes[0].nodeValue = text;
|
|
label.className = 'text major ' + className;
|
|
//label.title = title; // TODO: this is a heavy operation
|
|
|
|
label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px');
|
|
label.style.left = x + 'px';
|
|
};
|
|
|
|
/**
|
|
* Create a minor line for the axis at position x
|
|
* @param {Number} x
|
|
* @param {String} orientation "top" or "bottom" (default)
|
|
* @param {String} className
|
|
* @return {Element} Returns the created line
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._repaintMinorLine = function (x, orientation, className) {
|
|
// reuse redundant line
|
|
var line = this.dom.redundant.lines.shift();
|
|
if (!line) {
|
|
// create vertical line
|
|
line = document.createElement('div');
|
|
this.dom.background.appendChild(line);
|
|
}
|
|
this.dom.lines.push(line);
|
|
|
|
var props = this.props;
|
|
if (orientation == 'top') {
|
|
line.style.top = props.majorLabelHeight + 'px';
|
|
}
|
|
else {
|
|
line.style.top = this.body.domProps.top.height + 'px';
|
|
}
|
|
line.style.height = props.minorLineHeight + 'px';
|
|
line.style.left = (x - props.minorLineWidth / 2) + 'px';
|
|
|
|
line.className = 'grid vertical minor ' + className;
|
|
|
|
return line;
|
|
};
|
|
|
|
/**
|
|
* Create a Major line for the axis at position x
|
|
* @param {Number} x
|
|
* @param {String} orientation "top" or "bottom" (default)
|
|
* @param {String} className
|
|
* @return {Element} Returns the created line
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._repaintMajorLine = function (x, orientation, className) {
|
|
// reuse redundant line
|
|
var line = this.dom.redundant.lines.shift();
|
|
if (!line) {
|
|
// create vertical line
|
|
line = document.createElement('div');
|
|
this.dom.background.appendChild(line);
|
|
}
|
|
this.dom.lines.push(line);
|
|
|
|
var props = this.props;
|
|
if (orientation == 'top') {
|
|
line.style.top = '0';
|
|
}
|
|
else {
|
|
line.style.top = this.body.domProps.top.height + 'px';
|
|
}
|
|
line.style.left = (x - props.majorLineWidth / 2) + 'px';
|
|
line.style.height = props.majorLineHeight + 'px';
|
|
|
|
line.className = 'grid vertical major ' + className;
|
|
|
|
return line;
|
|
};
|
|
|
|
/**
|
|
* Determine the size of text on the axis (both major and minor axis).
|
|
* The size is calculated only once and then cached in this.props.
|
|
* @private
|
|
*/
|
|
TimeAxis.prototype._calculateCharSize = function () {
|
|
// Note: We calculate char size with every redraw. Size may change, for
|
|
// example when any of the timelines parents had display:none for example.
|
|
|
|
// determine the char width and height on the minor axis
|
|
if (!this.dom.measureCharMinor) {
|
|
this.dom.measureCharMinor = document.createElement('DIV');
|
|
this.dom.measureCharMinor.className = 'text minor measure';
|
|
this.dom.measureCharMinor.style.position = 'absolute';
|
|
|
|
this.dom.measureCharMinor.appendChild(document.createTextNode('0'));
|
|
this.dom.foreground.appendChild(this.dom.measureCharMinor);
|
|
}
|
|
this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight;
|
|
this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth;
|
|
|
|
// determine the char width and height on the major axis
|
|
if (!this.dom.measureCharMajor) {
|
|
this.dom.measureCharMajor = document.createElement('DIV');
|
|
this.dom.measureCharMajor.className = 'text major measure';
|
|
this.dom.measureCharMajor.style.position = 'absolute';
|
|
|
|
this.dom.measureCharMajor.appendChild(document.createTextNode('0'));
|
|
this.dom.foreground.appendChild(this.dom.measureCharMajor);
|
|
}
|
|
this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight;
|
|
this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth;
|
|
};
|
|
|
|
module.exports = TimeAxis;
|