diff --git a/HISTORY.md b/HISTORY.md index 9ab1917a..bb8cc623 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -20,6 +20,7 @@ http://visjs.org - Added 'slots' for groups when using barCharts. - Added 'allowOverlap' option for barCharts. - Added two examples showing the two additions above. +- Added 'customRange' for the Y axis and an example showing how it works. ## 2014-08-14, version 3.2.0 diff --git a/dist/vis.js b/dist/vis.js index 35b01a96..01527a24 100644 --- a/dist/vis.js +++ b/dist/vis.js @@ -81,63 +81,63 @@ return /******/ (function(modules) { // webpackBootstrap // utils exports.util = __webpack_require__(1); - exports.DOMutil = __webpack_require__(2); + exports.DOMutil = __webpack_require__(6); // data - exports.DataSet = __webpack_require__(3); - exports.DataView = __webpack_require__(4); + exports.DataSet = __webpack_require__(7); + exports.DataView = __webpack_require__(8); // Graph3d - exports.Graph3d = __webpack_require__(5); + exports.Graph3d = __webpack_require__(9); exports.graph3d = { - Camera: __webpack_require__(6), - Filter: __webpack_require__(7), - Point2d: __webpack_require__(8), - Point3d: __webpack_require__(9), - Slider: __webpack_require__(10), - StepNumber: __webpack_require__(11) + Camera: __webpack_require__(13), + Filter: __webpack_require__(14), + Point2d: __webpack_require__(12), + Point3d: __webpack_require__(11), + Slider: __webpack_require__(15), + StepNumber: __webpack_require__(16) }; // Timeline - exports.Timeline = __webpack_require__(12); - exports.Graph2d = __webpack_require__(13); + exports.Timeline = __webpack_require__(17); + exports.Graph2d = __webpack_require__(35); exports.timeline = { - DataStep: __webpack_require__(14), - Range: __webpack_require__(15), - stack: __webpack_require__(16), - TimeStep: __webpack_require__(17), + DataStep: __webpack_require__(40), + Range: __webpack_require__(20), + stack: __webpack_require__(30), + TimeStep: __webpack_require__(25), components: { items: { - Item: __webpack_require__(28), - ItemBox: __webpack_require__(29), - ItemPoint: __webpack_require__(30), + Item: __webpack_require__(32), + ItemBox: __webpack_require__(33), + ItemPoint: __webpack_require__(34), ItemRange: __webpack_require__(31) }, - Component: __webpack_require__(18), - CurrentTime: __webpack_require__(19), - CustomTime: __webpack_require__(20), - DataAxis: __webpack_require__(21), - GraphGroup: __webpack_require__(22), - Group: __webpack_require__(23), - ItemSet: __webpack_require__(24), - Legend: __webpack_require__(25), - LineGraph: __webpack_require__(26), - TimeAxis: __webpack_require__(27) + Component: __webpack_require__(22), + CurrentTime: __webpack_require__(26), + CustomTime: __webpack_require__(27), + DataAxis: __webpack_require__(37), + GraphGroup: __webpack_require__(38), + Group: __webpack_require__(29), + ItemSet: __webpack_require__(28), + Legend: __webpack_require__(39), + LineGraph: __webpack_require__(36), + TimeAxis: __webpack_require__(24) } }; // Network - exports.Network = __webpack_require__(32); + exports.Network = __webpack_require__(41); exports.network = { - Edge: __webpack_require__(33), - Groups: __webpack_require__(34), - Images: __webpack_require__(35), - Node: __webpack_require__(36), - Popup: __webpack_require__(37), - dotparser: __webpack_require__(38), - gephiParser: __webpack_require__(39) + Edge: __webpack_require__(48), + Groups: __webpack_require__(45), + Images: __webpack_require__(46), + Node: __webpack_require__(47), + Popup: __webpack_require__(49), + dotparser: __webpack_require__(43), + gephiParser: __webpack_require__(44) }; // Deprecated since v3.0.0 @@ -146,8 +146,8 @@ return /******/ (function(modules) { // webpackBootstrap }; // bundled external libraries - exports.moment = __webpack_require__(40); - exports.hammer = __webpack_require__(41); + exports.moment = __webpack_require__(2); + exports.hammer = __webpack_require__(18); /***/ }, @@ -158,7 +158,7 @@ return /******/ (function(modules) { // webpackBootstrap // first check if moment.js is already loaded in the browser window, if so, // use this instance. Else, load via commonjs. - var moment = __webpack_require__(40); + var moment = __webpack_require__(2); /** * Test whether given object is a number @@ -1405,26373 +1405,26267 @@ return /******/ (function(modules) { // webpackBootstrap /* 2 */ /***/ function(module, exports, __webpack_require__) { - // DOM utility methods + // first check if moment.js is already loaded in the browser window, if so, + // use this instance. Else, load via commonjs. + module.exports = (typeof window !== 'undefined') && window['moment'] || __webpack_require__(3); - /** - * this prepares the JSON container for allocating SVG elements - * @param JSONcontainer - * @private - */ - exports.prepareElements = function(JSONcontainer) { - // cleanup the redundant svgElements; - for (var elementType in JSONcontainer) { - if (JSONcontainer.hasOwnProperty(elementType)) { - JSONcontainer[elementType].redundant = JSONcontainer[elementType].used; - JSONcontainer[elementType].used = []; - } - } - }; - /** - * this cleans up all the unused SVG elements. By asking for the parentNode, we only need to supply the JSON container from - * which to remove the redundant elements. - * - * @param JSONcontainer - * @private - */ - exports.cleanupElements = function(JSONcontainer) { - // cleanup the redundant svgElements; - for (var elementType in JSONcontainer) { - if (JSONcontainer.hasOwnProperty(elementType)) { - if (JSONcontainer[elementType].redundant) { - for (var i = 0; i < JSONcontainer[elementType].redundant.length; i++) { - JSONcontainer[elementType].redundant[i].parentNode.removeChild(JSONcontainer[elementType].redundant[i]); - } - JSONcontainer[elementType].redundant = []; - } - } - } - }; +/***/ }, +/* 3 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer - * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. - * - * @param elementType - * @param JSONcontainer - * @param svgContainer - * @returns {*} - * @private - */ - exports.getSVGElement = function (elementType, JSONcontainer, svgContainer) { - var element; - // allocate SVG element, if it doesnt yet exist, create one. - if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before - // check if there is an redundant element - if (JSONcontainer[elementType].redundant.length > 0) { - element = JSONcontainer[elementType].redundant[0]; - JSONcontainer[elementType].redundant.shift(); - } - else { - // create a new element and add it to the SVG - element = document.createElementNS('http://www.w3.org/2000/svg', elementType); - svgContainer.appendChild(element); - } - } - else { - // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. - element = document.createElementNS('http://www.w3.org/2000/svg', elementType); - JSONcontainer[elementType] = {used: [], redundant: []}; - svgContainer.appendChild(element); - } - JSONcontainer[elementType].used.push(element); - return element; - }; + var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js + //! version : 2.7.0 + //! authors : Tim Wood, Iskren Chernev, Moment.js contributors + //! license : MIT + //! momentjs.com + (function (undefined) { - /** - * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer - * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. - * - * @param elementType - * @param JSONcontainer - * @param DOMContainer - * @returns {*} - * @private - */ - exports.getDOMElement = function (elementType, JSONcontainer, DOMContainer) { - var element; - // allocate DOM element, if it doesnt yet exist, create one. - if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before - // check if there is an redundant element - if (JSONcontainer[elementType].redundant.length > 0) { - element = JSONcontainer[elementType].redundant[0]; - JSONcontainer[elementType].redundant.shift(); - } - else { - // create a new element and add it to the SVG - element = document.createElement(elementType); - DOMContainer.appendChild(element); - } - } - else { - // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. - element = document.createElement(elementType); - JSONcontainer[elementType] = {used: [], redundant: []}; - DOMContainer.appendChild(element); - } - JSONcontainer[elementType].used.push(element); - return element; - }; + /************************************ + Constants + ************************************/ + var moment, + VERSION = "2.7.0", + // the global-scope this is NOT the global object in Node.js + globalScope = typeof global !== 'undefined' ? global : this, + oldGlobalMoment, + round = Math.round, + i, + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, + // internal storage for language config files + languages = {}, - /** - * draw a point object. this is a seperate function because it can also be called by the legend. - * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions - * as well. - * - * @param x - * @param y - * @param group - * @param JSONcontainer - * @param svgContainer - * @returns {*} - */ - exports.drawPoint = function(x, y, group, JSONcontainer, svgContainer) { - var point; - if (group.options.drawPoints.style == 'circle') { - point = exports.getSVGElement('circle',JSONcontainer,svgContainer); - point.setAttributeNS(null, "cx", x); - point.setAttributeNS(null, "cy", y); - point.setAttributeNS(null, "r", 0.5 * group.options.drawPoints.size); - point.setAttributeNS(null, "class", group.className + " point"); - } - else { - point = exports.getSVGElement('rect',JSONcontainer,svgContainer); - point.setAttributeNS(null, "x", x - 0.5*group.options.drawPoints.size); - point.setAttributeNS(null, "y", y - 0.5*group.options.drawPoints.size); - point.setAttributeNS(null, "width", group.options.drawPoints.size); - point.setAttributeNS(null, "height", group.options.drawPoints.size); - point.setAttributeNS(null, "class", group.className + " point"); - } - return point; - }; + // moment internal properties + momentProperties = { + _isAMomentObject: null, + _i : null, + _f : null, + _l : null, + _strict : null, + _tzm : null, + _isUTC : null, + _offset : null, // optional. Combine with _isUTC + _pf : null, + _lang : null // optional + }, - /** - * draw a bar SVG element centered on the X coordinate - * - * @param x - * @param y - * @param className - */ - exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer) { - // if (height != 0) { - var rect = exports.getSVGElement('rect',JSONcontainer, svgContainer); - rect.setAttributeNS(null, "x", x - 0.5 * width); - rect.setAttributeNS(null, "y", y); - rect.setAttributeNS(null, "width", width); - rect.setAttributeNS(null, "height", height); - rect.setAttributeNS(null, "class", className); - // } - }; + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), -/***/ }, -/* 3 */ -/***/ function(module, exports, __webpack_require__) { + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, - var util = __webpack_require__(1); + // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/, - /** - * DataSet - * - * Usage: - * var dataSet = new DataSet({ - * fieldId: '_id', - * type: { - * // ... - * } - * }); - * - * dataSet.add(item); - * dataSet.add(data); - * dataSet.update(item); - * dataSet.update(data); - * dataSet.remove(id); - * dataSet.remove(ids); - * var data = dataSet.get(); - * var data = dataSet.get(id); - * var data = dataSet.get(ids); - * var data = dataSet.get(ids, options, data); - * dataSet.clear(); - * - * A data set can: - * - add/remove/update data - * - gives triggers upon changes in the data - * - can import/export data in various data formats - * - * @param {Array | DataTable} [data] Optional array with initial data - * @param {Object} [options] Available options: - * {String} fieldId Field name of the id in the - * items, 'id' by default. - * {Object. ["10", "00"] or "-1530" > ["-15", "30"] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, - if (Array.isArray(data)) { - // Array - for (var i = 0, len = data.length; i < len; i++) { - id = me._addItem(data[i]); - addedIds.push(id); - } - } - else if (util.isDataTable(data)) { - // Google DataTable - var columns = this._getColumnNames(data); - for (var row = 0, rows = data.getNumberOfRows(); row < rows; row++) { - var item = {}; - for (var col = 0, cols = columns.length; col < cols; col++) { - var field = columns[col]; - item[field] = data.getValue(row, col); - } + // getter and setter names + proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'), + unitMillisecondFactors = { + 'Milliseconds' : 1, + 'Seconds' : 1e3, + 'Minutes' : 6e4, + 'Hours' : 36e5, + 'Days' : 864e5, + 'Months' : 2592e6, + 'Years' : 31536e6 + }, - id = me._addItem(item); - addedIds.push(id); - } - } - else if (data instanceof Object) { - // Single item - id = me._addItem(data); - addedIds.push(id); - } - else { - throw new Error('Unknown dataType'); - } + unitAliases = { + ms : 'millisecond', + s : 'second', + m : 'minute', + h : 'hour', + d : 'day', + D : 'date', + w : 'week', + W : 'isoWeek', + M : 'month', + Q : 'quarter', + y : 'year', + DDD : 'dayOfYear', + e : 'weekday', + E : 'isoWeekday', + gg: 'weekYear', + GG: 'isoWeekYear' + }, - if (addedIds.length) { - this._trigger('add', {items: addedIds}, senderId); - } + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, - return addedIds; - }; + // format function strings + formatFunctions = {}, - /** - * Update existing items. When an item does not exist, it will be created - * @param {Object | Array | DataTable} data - * @param {String} [senderId] Optional sender id - * @return {Array} updatedIds The ids of the added or updated items - */ - DataSet.prototype.update = function (data, senderId) { - var addedIds = [], - updatedIds = [], - me = this, - fieldId = me._fieldId; + // default relative time thresholds + relativeTimeThresholds = { + s: 45, //seconds to minutes + m: 45, //minutes to hours + h: 22, //hours to days + dd: 25, //days to month (month == 1) + dm: 45, //days to months (months > 1) + dy: 345 //days to year + }, - var addOrUpdate = function (item) { - var id = item[fieldId]; - if (me._data[id]) { - // update item - id = me._updateItem(item); - updatedIds.push(id); - } - else { - // add new item - id = me._addItem(item); - addedIds.push(id); - } - }; + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), - if (Array.isArray(data)) { - // Array - for (var i = 0, len = data.length; i < len; i++) { - addOrUpdate(data[i]); - } - } - else if (util.isDataTable(data)) { - // Google DataTable - var columns = this._getColumnNames(data); - for (var row = 0, rows = data.getNumberOfRows(); row < rows; row++) { - var item = {}; - for (var col = 0, cols = columns.length; col < cols; col++) { - var field = columns[col]; - item[field] = data.getValue(row, col); - } + formatTokenFunctions = { + M : function () { + return this.month() + 1; + }, + MMM : function (format) { + return this.lang().monthsShort(this, format); + }, + MMMM : function (format) { + return this.lang().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.lang().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.lang().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.lang().weekdays(this, format); + }, + w : function () { + return this.week(); + }, + W : function () { + return this.isoWeek(); + }, + YY : function () { + return leftZeroFill(this.year() % 100, 2); + }, + YYYY : function () { + return leftZeroFill(this.year(), 4); + }, + YYYYY : function () { + return leftZeroFill(this.year(), 5); + }, + YYYYYY : function () { + var y = this.year(), sign = y >= 0 ? '+' : '-'; + return sign + leftZeroFill(Math.abs(y), 6); + }, + gg : function () { + return leftZeroFill(this.weekYear() % 100, 2); + }, + gggg : function () { + return leftZeroFill(this.weekYear(), 4); + }, + ggggg : function () { + return leftZeroFill(this.weekYear(), 5); + }, + GG : function () { + return leftZeroFill(this.isoWeekYear() % 100, 2); + }, + GGGG : function () { + return leftZeroFill(this.isoWeekYear(), 4); + }, + GGGGG : function () { + return leftZeroFill(this.isoWeekYear(), 5); + }, + e : function () { + return this.weekday(); + }, + E : function () { + return this.isoWeekday(); + }, + a : function () { + return this.lang().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.lang().meridiem(this.hours(), this.minutes(), false); + }, + H : function () { + return this.hours(); + }, + h : function () { + return this.hours() % 12 || 12; + }, + m : function () { + return this.minutes(); + }, + s : function () { + return this.seconds(); + }, + S : function () { + return toInt(this.milliseconds() / 100); + }, + SS : function () { + return leftZeroFill(toInt(this.milliseconds() / 10), 2); + }, + SSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + SSSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + Z : function () { + var a = -this.zone(), + b = "+"; + if (a < 0) { + a = -a; + b = "-"; + } + return b + leftZeroFill(toInt(a / 60), 2) + ":" + leftZeroFill(toInt(a) % 60, 2); + }, + ZZ : function () { + var a = -this.zone(), + b = "+"; + if (a < 0) { + a = -a; + b = "-"; + } + return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); + }, + z : function () { + return this.zoneAbbr(); + }, + zz : function () { + return this.zoneName(); + }, + X : function () { + return this.unix(); + }, + Q : function () { + return this.quarter(); + } + }, - addOrUpdate(item); + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; + + // Pick the first defined of two or three arguments. dfl comes from + // default. + function dfl(a, b, c) { + switch (arguments.length) { + case 2: return a != null ? a : b; + case 3: return a != null ? a : b != null ? b : c; + default: throw new Error("Implement me"); + } } - } - else if (data instanceof Object) { - // Single item - addOrUpdate(data); - } - else { - throw new Error('Unknown dataType'); - } - if (addedIds.length) { - this._trigger('add', {items: addedIds}, senderId); - } - if (updatedIds.length) { - this._trigger('update', {items: updatedIds}, senderId); - } + function defaultParsingFlags() { + // We need to deep clone this object, and es5 standard is not very + // helpful. + return { + empty : false, + unusedTokens : [], + unusedInput : [], + overflow : -2, + charsLeftOver : 0, + nullInput : false, + invalidMonth : null, + invalidFormat : false, + userInvalidated : false, + iso: false + }; + } - return addedIds.concat(updatedIds); - }; + function deprecate(msg, fn) { + var firstTime = true; + function printMsg() { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn("Deprecation warning: " + msg); + } + } + return extend(function () { + if (firstTime) { + printMsg(); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } - /** - * Get a data item or multiple items. - * - * Usage: - * - * get() - * get(options: Object) - * get(options: Object, data: Array | DataTable) - * - * get(id: Number | String) - * get(id: Number | String, options: Object) - * get(id: Number | String, options: Object, data: Array | DataTable) - * - * get(ids: Number[] | String[]) - * get(ids: Number[] | String[], options: Object) - * get(ids: Number[] | String[], options: Object, data: Array | DataTable) - * - * Where: - * - * {Number | String} id The id of an item - * {Number[] | String{}} ids An array with ids of items - * {Object} options An Object with options. Available options: - * {String} [returnType] Type of data to be - * returned. Can be 'DataTable' or 'Array' (default) - * {Object.} [type] - * {String[]} [fields] field names to be returned - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - * {Array | DataTable} [data] If provided, items will be appended to this - * array or table. Required in case of Google - * DataTable. - * - * @throws Error - */ - DataSet.prototype.get = function (args) { - var me = this; + function padToken(func, count) { + return function (a) { + return leftZeroFill(func.call(this, a), count); + }; + } + function ordinalizeToken(func, period) { + return function (a) { + return this.lang().ordinal(func.call(this, a), period); + }; + } - // parse the arguments - var id, ids, options, data; - var firstType = util.getType(arguments[0]); - if (firstType == 'String' || firstType == 'Number') { - // get(id [, options] [, data]) - id = arguments[0]; - options = arguments[1]; - data = arguments[2]; - } - else if (firstType == 'Array') { - // get(ids [, options] [, data]) - ids = arguments[0]; - options = arguments[1]; - data = arguments[2]; - } - else { - // get([, options] [, data]) - options = arguments[0]; - data = arguments[1]; - } + while (ordinalizeTokens.length) { + i = ordinalizeTokens.pop(); + formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); + } + while (paddedTokens.length) { + i = paddedTokens.pop(); + formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); + } + formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); - // determine the return type - var returnType; - if (options && options.returnType) { - var allowedValues = ["DataTable", "Array", "Object"]; - returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; - if (data && (returnType != util.getType(data))) { - throw new Error('Type of parameter "data" (' + util.getType(data) + ') ' + - 'does not correspond with specified options.type (' + options.type + ')'); + /************************************ + Constructors + ************************************/ + + function Language() { + } - if (returnType == 'DataTable' && !util.isDataTable(data)) { - throw new Error('Parameter "data" must be a DataTable ' + - 'when options.type is "DataTable"'); + + // Moment prototype object + function Moment(config) { + checkOverflow(config); + extend(this, config); } - } - else if (data) { - returnType = (util.getType(data) == 'DataTable') ? 'DataTable' : 'Array'; - } - else { - returnType = 'Array'; - } - // build options - var type = options && options.type || this._options.type; - var filter = options && options.filter; - var items = [], item, itemId, i, len; + // Duration Constructor + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; - // convert items - if (id != undefined) { - // return a single item - item = me._getItem(id, type); - if (filter && !filter(item)) { - item = null; - } - } - else if (ids != undefined) { - // return a subset of items - for (i = 0, len = ids.length; i < len; i++) { - item = me._getItem(ids[i], type); - if (!filter || filter(item)) { - items.push(item); - } + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 36e5; // 1000 * 60 * 60 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._bubble(); } - } - else { - // return all items - for (itemId in this._data) { - if (this._data.hasOwnProperty(itemId)) { - item = me._getItem(itemId, type); - if (!filter || filter(item)) { - items.push(item); + + /************************************ + Helpers + ************************************/ + + + function extend(a, b) { + for (var i in b) { + if (b.hasOwnProperty(i)) { + a[i] = b[i]; + } } - } + + if (b.hasOwnProperty("toString")) { + a.toString = b.toString; + } + + if (b.hasOwnProperty("valueOf")) { + a.valueOf = b.valueOf; + } + + return a; } - } - // order the results - if (options && options.order && id == undefined) { - this._sort(items, options.order); - } + function cloneMoment(m) { + var result = {}, i; + for (i in m) { + if (m.hasOwnProperty(i) && momentProperties.hasOwnProperty(i)) { + result[i] = m[i]; + } + } - // filter fields of the items - if (options && options.fields) { - var fields = options.fields; - if (id != undefined) { - item = this._filterFields(item, fields); + return result; } - else { - for (i = 0, len = items.length; i < len; i++) { - items[i] = this._filterFields(items[i], fields); - } + + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } } - } - // return the results - if (returnType == 'DataTable') { - var columns = this._getColumnNames(data); - if (id != undefined) { - // append a single item to the data table - me._appendRow(data, columns, item); + // left zero fill a number + // see http://jsperf.com/left-zero-filling for performance comparison + function leftZeroFill(number, targetLength, forceSign) { + var output = '' + Math.abs(number), + sign = number >= 0; + + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; } - else { - // copy the items to the provided data table - for (i = 0; i < items.length; i++) { - me._appendRow(data, columns, items[i]); - } + + // helper function for _.addTime and _.subtractTime + function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; + + if (milliseconds) { + mom._d.setTime(+mom._d + milliseconds * isAdding); + } + if (days) { + rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); + } + if (months) { + rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); + } + if (updateOffset) { + moment.updateOffset(mom, days || months); + } } - return data; - } - else if (returnType == "Object") { - var result = {}; - for (i = 0; i < items.length; i++) { - result[items[i].id] = items[i]; + + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; } - return result; - } - else { - // return an array - if (id != undefined) { - // a single item - return item; + + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; } - else { - // multiple items - if (data) { - // copy the items to the provided array - for (i = 0, len = items.length; i < len; i++) { - data.push(items[i]); + + // compare two arrays, return the number of differences + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } } - return data; - } - else { - // just return our array - return items; - } + return diffs + lengthDiff; } - } - }; - /** - * Get ids of all items or from a filtered set of items. - * @param {Object} [options] An Object with options. Available options: - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - * @return {Array} ids - */ - DataSet.prototype.getIds = function (options) { - var data = this._data, - filter = options && options.filter, - order = options && options.order, - type = options && options.type || this._options.type, - i, - len, - id, - item, - items, - ids = []; - - if (filter) { - // get filtered items - if (order) { - // create ordered list - items = []; - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (filter(item)) { - items.push(item); - } + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; } - } + return units; + } - this._sort(items, order); + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; - for (i = 0, len = items.length; i < len; i++) { - ids[i] = items[i][this._fieldId]; - } - } - else { - // create unordered list - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (filter(item)) { - ids.push(item[this._fieldId]); - } + for (prop in inputObject) { + if (inputObject.hasOwnProperty(prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } } - } + + return normalizedInput; } - } - else { - // get all items - if (order) { - // create an ordered list - items = []; - for (id in data) { - if (data.hasOwnProperty(id)) { - items.push(data[id]); - } - } - this._sort(items, order); + function makeList(field) { + var count, setter; - for (i = 0, len = items.length; i < len; i++) { - ids[i] = items[i][this._fieldId]; - } - } - else { - // create unordered list - for (id in data) { - if (data.hasOwnProperty(id)) { - item = data[id]; - ids.push(item[this._fieldId]); + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; } - } - } - } - - return ids; - }; - /** - * Returns the DataSet itself. Is overwritten for example by the DataView, - * which returns the DataSet it is connected to instead. - */ - DataSet.prototype.getDataSet = function () { - return this; - }; + moment[field] = function (format, index) { + var i, getter, + method = moment.fn._lang[field], + results = []; - /** - * Execute a callback function for every item in the dataset. - * @param {function} callback - * @param {Object} [options] Available options: - * {Object.} [type] - * {String[]} [fields] filter fields - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - */ - DataSet.prototype.forEach = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - data = this._data, - item, - id; + if (typeof format === 'number') { + index = format; + format = undefined; + } - if (options && options.order) { - // execute forEach on ordered list - var items = this.get(options); + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment.fn._lang, m, format || ''); + }; - for (var i = 0, len = items.length; i < len; i++) { - item = items[i]; - id = item[this._fieldId]; - callback(item, id); + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; } - } - else { - // unordered - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (!filter || filter(item)) { - callback(item, id); + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + if (coercedNumber >= 0) { + value = Math.floor(coercedNumber); + } else { + value = Math.ceil(coercedNumber); + } } - } + + return value; } - } - }; - /** - * Map every item in the dataset. - * @param {function} callback - * @param {Object} [options] Available options: - * {Object.} [type] - * {String[]} [fields] filter fields - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - * @return {Object[]} mappedItems - */ - DataSet.prototype.map = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - mappedItems = [], - data = this._data, - item; + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } - // convert and filter items - for (var id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (!filter || filter(item)) { - mappedItems.push(callback(item, id)); - } + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; } - } - // order items - if (options && options.order) { - this._sort(mappedItems, options.order); - } + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } - return mappedItems; - }; + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } - /** - * Filter the fields of an item - * @param {Object} item - * @param {String[]} fields Field names - * @return {Object} filteredItem - * @private - */ - DataSet.prototype._filterFields = function (item, fields) { - var filteredItem = {}; + function checkOverflow(m) { + var overflow; + if (m._a && m._pf.overflow === -2) { + overflow = + m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : + m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : + m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : + m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : + m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : + m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : + -1; - for (var field in item) { - if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { - filteredItem[field] = item[field]; + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + m._pf.overflow = overflow; + } } - } - return filteredItem; - }; + function isValid(m) { + if (m._isValid == null) { + m._isValid = !isNaN(m._d.getTime()) && + m._pf.overflow < 0 && + !m._pf.empty && + !m._pf.invalidMonth && + !m._pf.nullInput && + !m._pf.invalidFormat && + !m._pf.userInvalidated; - /** - * Sort the provided array with items - * @param {Object[]} items - * @param {String | function} order A field name or custom sort function. - * @private - */ - DataSet.prototype._sort = function (items, order) { - if (util.isString(order)) { - // order by provided field name - var name = order; // field name - items.sort(function (a, b) { - var av = a[name]; - var bv = b[name]; - return (av > bv) ? 1 : ((av < bv) ? -1 : 0); - }); - } - else if (typeof order === 'function') { - // order by sort function - items.sort(order); - } - // TODO: extend order by an Object {field:String, direction:String} - // where direction can be 'asc' or 'desc' - else { - throw new TypeError('Order must be a function or a string'); - } - }; - - /** - * Remove an object by pointer or by id - * @param {String | Number | Object | Array} id Object or id, or an array with - * objects or ids to be removed - * @param {String} [senderId] Optional sender id - * @return {Array} removedIds - */ - DataSet.prototype.remove = function (id, senderId) { - var removedIds = [], - i, len, removedId; - - if (Array.isArray(id)) { - for (i = 0, len = id.length; i < len; i++) { - removedId = this._remove(id[i]); - if (removedId != null) { - removedIds.push(removedId); - } - } - } - else { - removedId = this._remove(id); - if (removedId != null) { - removedIds.push(removedId); + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; } - } - - if (removedIds.length) { - this._trigger('remove', {items: removedIds}, senderId); - } - - return removedIds; - }; - /** - * Remove an item by its id - * @param {Number | String | Object} id id or item - * @returns {Number | String | null} id - * @private - */ - DataSet.prototype._remove = function (id) { - if (util.isNumber(id) || util.isString(id)) { - if (this._data[id]) { - delete this._data[id]; - return id; - } - } - else if (id instanceof Object) { - var itemId = id[this._fieldId]; - if (itemId && this._data[itemId]) { - delete this._data[itemId]; - return itemId; + function normalizeLanguage(key) { + return key ? key.toLowerCase().replace('_', '-') : key; } - } - return null; - }; - /** - * Clear the data - * @param {String} [senderId] Optional sender id - * @return {Array} removedIds The ids of all removed items - */ - DataSet.prototype.clear = function (senderId) { - var ids = Object.keys(this._data); + // Return a moment from input, that is local/utc/zone equivalent to model. + function makeAs(input, model) { + return model._isUTC ? moment(input).zone(model._offset || 0) : + moment(input).local(); + } - this._data = {}; + /************************************ + Languages + ************************************/ - this._trigger('remove', {items: ids}, senderId); - return ids; - }; + extend(Language.prototype, { - /** - * Find the item with maximum value of a specified field - * @param {String} field - * @return {Object | null} item Item containing max value, or null if no items - */ - DataSet.prototype.max = function (field) { - var data = this._data, - max = null, - maxField = null; + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, - for (var id in data) { - if (data.hasOwnProperty(id)) { - var item = data[id]; - var itemField = item[field]; - if (itemField != null && (!max || itemField > maxField)) { - max = item; - maxField = itemField; - } - } - } + _months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), + months : function (m) { + return this._months[m.month()]; + }, - return max; - }; + _monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, - /** - * Find the item with minimum value of a specified field - * @param {String} field - * @return {Object | null} item Item containing max value, or null if no items - */ - DataSet.prototype.min = function (field) { - var data = this._data, - min = null, - minField = null; + monthsParse : function (monthName) { + var i, mom, regex; - for (var id in data) { - if (data.hasOwnProperty(id)) { - var item = data[id]; - var itemField = item[field]; - if (itemField != null && (!min || itemField < minField)) { - min = item; - minField = itemField; - } - } - } + if (!this._monthsParse) { + this._monthsParse = []; + } - return min; - }; + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + if (!this._monthsParse[i]) { + mom = moment.utc([2000, i]); + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._monthsParse[i].test(monthName)) { + return i; + } + } + }, - /** - * Find all distinct values of a specified field - * @param {String} field - * @return {Array} values Array containing all distinct values. If data items - * do not contain the specified field are ignored. - * The returned array is unordered. - */ - DataSet.prototype.distinct = function (field) { - var data = this._data; - var values = []; - var fieldType = this._options.type && this._options.type[field] || null; - var count = 0; - var i; + _weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, - for (var prop in data) { - if (data.hasOwnProperty(prop)) { - var item = data[prop]; - var value = item[field]; - var exists = false; - for (i = 0; i < count; i++) { - if (values[i] == value) { - exists = true; - break; - } - } - if (!exists && (value !== undefined)) { - values[count] = value; - count++; - } - } - } + _weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, - if (fieldType) { - for (i = 0; i < values.length; i++) { - values[i] = util.convert(values[i], fieldType); - } - } + _weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, - return values; - }; + weekdaysParse : function (weekdayName) { + var i, mom, regex; - /** - * Add a single item. Will fail when an item with the same id already exists. - * @param {Object} item - * @return {String} id - * @private - */ - DataSet.prototype._addItem = function (item) { - var id = item[this._fieldId]; + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } - if (id != undefined) { - // check whether this id is already taken - if (this._data[id]) { - // item already exists - throw new Error('Cannot add item: item with id ' + id + ' already exists'); - } - } - else { - // generate an id - id = util.randomUUID(); - item[this._fieldId] = id; - } + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + if (!this._weekdaysParse[i]) { + mom = moment([2000, 1]).day(i); + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + }, - var d = {}; - for (var field in item) { - if (item.hasOwnProperty(field)) { - var fieldType = this._type[field]; // type may be undefined - d[field] = util.convert(item[field], fieldType); - } - } - this._data[id] = d; + _longDateFormat : { + LT : "h:mm A", + L : "MM/DD/YYYY", + LL : "MMMM D YYYY", + LLL : "MMMM D YYYY LT", + LLLL : "dddd, MMMM D YYYY LT" + }, + longDateFormat : function (key) { + var output = this._longDateFormat[key]; + if (!output && this._longDateFormat[key.toUpperCase()]) { + output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + this._longDateFormat[key] = output; + } + return output; + }, - return id; - }; + isPM : function (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); + }, - /** - * Get an item. Fields can be converted to a specific type - * @param {String} id - * @param {Object.} [types] field types to convert - * @return {Object | null} item - * @private - */ - DataSet.prototype._getItem = function (id, types) { - var field, value; + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, - // get the item from the dataset - var raw = this._data[id]; - if (!raw) { - return null; - } + _calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom) : output; + }, - // convert the items field types - var converted = {}; - if (types) { - for (field in raw) { - if (raw.hasOwnProperty(field)) { - value = raw[field]; - converted[field] = util.convert(value, types[field]); - } - } - } - else { - // no field types specified, no converting needed - for (field in raw) { - if (raw.hasOwnProperty(field)) { - value = raw[field]; - converted[field] = value; - } - } - } - return converted; - }; + _relativeTime : { + future : "in %s", + past : "%s ago", + s : "a few seconds", + m : "a minute", + mm : "%d minutes", + h : "an hour", + hh : "%d hours", + d : "a day", + dd : "%d days", + M : "a month", + MM : "%d months", + y : "a year", + yy : "%d years" + }, + relativeTime : function (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (typeof output === 'function') ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); + }, + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, - /** - * Update a single item: merge with existing item. - * Will fail when the item has no id, or when there does not exist an item - * with the same id. - * @param {Object} item - * @return {String} id - * @private - */ - DataSet.prototype._updateItem = function (item) { - var id = item[this._fieldId]; - if (id == undefined) { - throw new Error('Cannot update item: item has no id (item: ' + JSON.stringify(item) + ')'); - } - var d = this._data[id]; - if (!d) { - // item doesn't exist - throw new Error('Cannot update item: no item with id ' + id + ' found'); - } + ordinal : function (number) { + return this._ordinal.replace("%d", number); + }, + _ordinal : "%d", - // merge with current item - for (var field in item) { - if (item.hasOwnProperty(field)) { - var fieldType = this._type[field]; // type may be undefined - d[field] = util.convert(item[field], fieldType); - } - } + preparse : function (string) { + return string; + }, - return id; - }; + postformat : function (string) { + return string; + }, - /** - * Get an array with the column names of a Google DataTable - * @param {DataTable} dataTable - * @return {String[]} columnNames - * @private - */ - DataSet.prototype._getColumnNames = function (dataTable) { - var columns = []; - for (var col = 0, cols = dataTable.getNumberOfColumns(); col < cols; col++) { - columns[col] = dataTable.getColumnId(col) || dataTable.getColumnLabel(col); - } - return columns; - }; + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, - /** - * Append an item as a row to the dataTable - * @param dataTable - * @param columns - * @param item - * @private - */ - DataSet.prototype._appendRow = function (dataTable, columns, item) { - var row = dataTable.addRow(); + _week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + }, - for (var col = 0, cols = columns.length; col < cols; col++) { - var field = columns[col]; - dataTable.setValue(row, col, item[field]); - } - }; + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); - module.exports = DataSet; + // Loads a language definition into the `languages` cache. The function + // takes a key and optionally values. If not in the browser and no values + // are provided, it will load the language file module. As a convenience, + // this function also returns the language values. + function loadLang(key, values) { + values.abbr = key; + if (!languages[key]) { + languages[key] = new Language(); + } + languages[key].set(values); + return languages[key]; + } + // Remove a language from the `languages` cache. Mostly useful in tests. + function unloadLang(key) { + delete languages[key]; + } -/***/ }, -/* 4 */ -/***/ function(module, exports, __webpack_require__) { + // Determines which language definition to use and returns it. + // + // With no parameters, it will return the global language. If you + // pass in a language key, such as 'en', it will return the + // definition for 'en', so long as 'en' has already been loaded using + // moment.lang. + function getLangDefinition(key) { + var i = 0, j, lang, next, split, + get = function (k) { + if (!languages[k] && hasModule) { + try { + __webpack_require__(4)("./" + k); + } catch (e) { } + } + return languages[k]; + }; - var util = __webpack_require__(1); - var DataSet = __webpack_require__(3); + if (!key) { + return moment.fn._lang; + } - /** - * DataView - * - * a dataview offers a filtered view on a dataset or an other dataview. - * - * @param {DataSet | DataView} data - * @param {Object} [options] Available options: see method get - * - * @constructor DataView - */ - function DataView (data, options) { - this._data = null; - this._ids = {}; // ids of the items currently in memory (just contains a boolean true) - this._options = options || {}; - this._fieldId = 'id'; // name of the field containing id - this._subscribers = {}; // event subscribers - - var me = this; - this.listener = function () { - me._onEvent.apply(me, arguments); - }; - - this.setData(data); - } + if (!isArray(key)) { + //short-circuit everything else + lang = get(key); + if (lang) { + return lang; + } + key = [key]; + } - // TODO: implement a function .config() to dynamically update things like configured filter - // and trigger changes accordingly + //pick the language from the array + //try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + //substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + while (i < key.length) { + split = normalizeLanguage(key[i]).split('-'); + j = split.length; + next = normalizeLanguage(key[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + lang = get(split.slice(0, j).join('-')); + if (lang) { + return lang; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return moment.fn._lang; + } - /** - * Set a data source for the view - * @param {DataSet | DataView} data - */ - DataView.prototype.setData = function (data) { - var ids, i, len; + /************************************ + Formatting + ************************************/ - if (this._data) { - // unsubscribe from current dataset - if (this._data.unsubscribe) { - this._data.unsubscribe('*', this.listener); - } - // trigger a remove of all items in memory - ids = []; - for (var id in this._ids) { - if (this._ids.hasOwnProperty(id)) { - ids.push(id); - } + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ""); + } + return input.replace(/\\/g, ""); } - this._ids = {}; - this._trigger('remove', {items: ids}); - } - this._data = data; + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; - if (this._data) { - // update fieldId - this._fieldId = this._options.fieldId || - (this._data && this._data.options && this._data.options.fieldId) || - 'id'; + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } - // trigger an add of all added items - ids = this._data.getIds({filter: this._options && this._options.filter}); - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - this._ids[id] = true; + return function (mom) { + var output = ""; + for (i = 0; i < length; i++) { + output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; + } + return output; + }; } - this._trigger('add', {items: ids}); - // subscribe to new dataset - if (this._data.on) { - this._data.on('*', this.listener); - } - } - }; + // format date using native date object + function formatMoment(m, format) { - /** - * Get data from the data view - * - * Usage: - * - * get() - * get(options: Object) - * get(options: Object, data: Array | DataTable) - * - * get(id: Number) - * get(id: Number, options: Object) - * get(id: Number, options: Object, data: Array | DataTable) - * - * get(ids: Number[]) - * get(ids: Number[], options: Object) - * get(ids: Number[], options: Object, data: Array | DataTable) - * - * Where: - * - * {Number | String} id The id of an item - * {Number[] | String{}} ids An array with ids of items - * {Object} options An Object with options. Available options: - * {String} [type] Type of data to be returned. Can - * be 'DataTable' or 'Array' (default) - * {Object.} [convert] - * {String[]} [fields] field names to be returned - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - * {Array | DataTable} [data] If provided, items will be appended to this - * array or table. Required in case of Google - * DataTable. - * @param args - */ - DataView.prototype.get = function (args) { - var me = this; + if (!m.isValid()) { + return m.lang().invalidDate(); + } - // parse the arguments - var ids, options, data; - var firstType = util.getType(arguments[0]); - if (firstType == 'String' || firstType == 'Number' || firstType == 'Array') { - // get(id(s) [, options] [, data]) - ids = arguments[0]; // can be a single id or an array with ids - options = arguments[1]; - data = arguments[2]; - } - else { - // get([, options] [, data]) - options = arguments[0]; - data = arguments[1]; - } + format = expandFormat(format, m.lang()); - // extend the options with the default options and provided options - var viewOptions = util.extend({}, this._options, options); + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } - // create a combined filter method when needed - if (this._options.filter && options && options.filter) { - viewOptions.filter = function (item) { - return me._options.filter(item) && options.filter(item); + return formatFunctions[format](m); } - } - - // build up the call to the linked data set - var getArguments = []; - if (ids != undefined) { - getArguments.push(ids); - } - getArguments.push(viewOptions); - getArguments.push(data); - - return this._data && this._data.get.apply(this._data, getArguments); - }; - /** - * Get ids of all items or from a filtered set of items. - * @param {Object} [options] An Object with options. Available options: - * {function} [filter] filter items - * {String | function} [order] Order the items by - * a field name or custom sort function. - * @return {Array} ids - */ - DataView.prototype.getIds = function (options) { - var ids; + function expandFormat(format, lang) { + var i = 5; - if (this._data) { - var defaultFilter = this._options.filter; - var filter; + function replaceLongDateFormatTokens(input) { + return lang.longDateFormat(input) || input; + } - if (options && options.filter) { - if (defaultFilter) { - filter = function (item) { - return defaultFilter(item) && options.filter(item); + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; } - } - else { - filter = options.filter; - } - } - else { - filter = defaultFilter; + + return format; } - ids = this._data.getIds({ - filter: filter, - order: options && options.order - }); - } - else { - ids = []; - } - return ids; - }; + /************************************ + Parsing + ************************************/ - /** - * Get the DataSet to which this DataView is connected. In case there is a chain - * of multiple DataViews, the root DataSet of this chain is returned. - * @return {DataSet} dataSet - */ - DataView.prototype.getDataSet = function () { - var dataSet = this; - while (dataSet instanceof DataView) { - dataSet = dataSet._data; - } - return dataSet || null; - }; - /** - * Event listener. Will propagate all events from the connected data set to - * the subscribers of the DataView, but will filter the items and only trigger - * when there are changes in the filtered data set. - * @param {String} event - * @param {Object | null} params - * @param {String} senderId - * @private - */ - DataView.prototype._onEvent = function (event, params, senderId) { - var i, len, id, item, - ids = params && params.items, - data = this._data, - added = [], - updated = [], - removed = []; - - if (ids && data) { - switch (event) { - case 'add': - // filter the ids of the added items - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - item = this.get(id); - if (item) { - this._ids[id] = true; - added.push(id); - } + // get the regex to find the next token + function getParseRegexForToken(token, config) { + var a, strict = config._strict; + switch (token) { + case 'Q': + return parseTokenOneDigit; + case 'DDDD': + return parseTokenThreeDigits; + case 'YYYY': + case 'GGGG': + case 'gggg': + return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; + case 'Y': + case 'G': + case 'g': + return parseTokenSignedNumber; + case 'YYYYYY': + case 'YYYYY': + case 'GGGGG': + case 'ggggg': + return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; + case 'S': + if (strict) { return parseTokenOneDigit; } + /* falls through */ + case 'SS': + if (strict) { return parseTokenTwoDigits; } + /* falls through */ + case 'SSS': + if (strict) { return parseTokenThreeDigits; } + /* falls through */ + case 'DDD': + return parseTokenOneToThreeDigits; + case 'MMM': + case 'MMMM': + case 'dd': + case 'ddd': + case 'dddd': + return parseTokenWord; + case 'a': + case 'A': + return getLangDefinition(config._l)._meridiemParse; + case 'X': + return parseTokenTimestampMs; + case 'Z': + case 'ZZ': + return parseTokenTimezone; + case 'T': + return parseTokenT; + case 'SSSS': + return parseTokenDigits; + case 'MM': + case 'DD': + case 'YY': + case 'GG': + case 'gg': + case 'HH': + case 'hh': + case 'mm': + case 'ss': + case 'ww': + case 'WW': + return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; + case 'M': + case 'D': + case 'd': + case 'H': + case 'h': + case 'm': + case 's': + case 'w': + case 'W': + case 'e': + case 'E': + return parseTokenOneOrTwoDigits; + case 'Do': + return parseTokenOrdinal; + default : + a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), "i")); + return a; } + } - break; + function timezoneMinutesFromString(string) { + string = string || ""; + var possibleTzMatches = (string.match(parseTokenTimezone) || []), + tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], + parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], + minutes = +(parts[1] * 60) + toInt(parts[2]); - case 'update': - // determine the event from the views viewpoint: an updated - // item can be added, updated, or removed from this view. - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - item = this.get(id); + return parts[0] === '+' ? -minutes : minutes; + } - if (item) { - if (this._ids[id]) { - updated.push(id); + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; + + switch (token) { + // QUARTER + case 'Q': + if (input != null) { + datePartArray[MONTH] = (toInt(input) - 1) * 3; } - else { - this._ids[id] = true; - added.push(id); + break; + // MONTH + case 'M' : // fall through to MM + case 'MM' : + if (input != null) { + datePartArray[MONTH] = toInt(input) - 1; } - } - else { - if (this._ids[id]) { - delete this._ids[id]; - removed.push(id); + break; + case 'MMM' : // fall through to MMMM + case 'MMMM' : + a = getLangDefinition(config._l).monthsParse(input); + // if we didn't find a month name, mark the date as invalid. + if (a != null) { + datePartArray[MONTH] = a; + } else { + config._pf.invalidMonth = input; } - else { - // nothing interesting for me :-( + break; + // DAY OF MONTH + case 'D' : // fall through to DD + case 'DD' : + if (input != null) { + datePartArray[DATE] = toInt(input); + } + break; + case 'Do' : + if (input != null) { + datePartArray[DATE] = toInt(parseInt(input, 10)); + } + break; + // DAY OF YEAR + case 'DDD' : // fall through to DDDD + case 'DDDD' : + if (input != null) { + config._dayOfYear = toInt(input); } - } - } - - break; - - case 'remove': - // filter the ids of the removed items - for (i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - if (this._ids[id]) { - delete this._ids[id]; - removed.push(id); - } - } - - break; - } - - if (added.length) { - this._trigger('add', {items: added}, senderId); - } - if (updated.length) { - this._trigger('update', {items: updated}, senderId); - } - if (removed.length) { - this._trigger('remove', {items: removed}, senderId); - } - } - }; - - // copy subscription functionality from DataSet - DataView.prototype.on = DataSet.prototype.on; - DataView.prototype.off = DataSet.prototype.off; - DataView.prototype._trigger = DataSet.prototype._trigger; - - // TODO: make these functions deprecated (replaced with `on` and `off` since version 0.5) - DataView.prototype.subscribe = DataView.prototype.on; - DataView.prototype.unsubscribe = DataView.prototype.off; - - module.exports = DataView; - -/***/ }, -/* 5 */ -/***/ function(module, exports, __webpack_require__) { - - var Emitter = __webpack_require__(46); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var util = __webpack_require__(1); - var Point3d = __webpack_require__(9); - var Point2d = __webpack_require__(8); - var Camera = __webpack_require__(6); - var Filter = __webpack_require__(7); - var Slider = __webpack_require__(10); - var StepNumber = __webpack_require__(11); - - /** - * @constructor Graph3d - * Graph3d displays data in 3d. - * - * Graph3d is developed in javascript as a Google Visualization Chart. - * - * @param {Element} container The DOM element in which the Graph3d will - * be created. Normally a div element. - * @param {DataSet | DataView | Array} [data] - * @param {Object} [options] - */ - function Graph3d(container, data, options) { - if (!(this instanceof Graph3d)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } - - // create variables and set default values - this.containerElement = container; - this.width = '400px'; - this.height = '400px'; - this.margin = 10; // px - this.defaultXCenter = '55%'; - this.defaultYCenter = '50%'; - - this.xLabel = 'x'; - this.yLabel = 'y'; - this.zLabel = 'z'; - this.filterLabel = 'time'; - this.legendLabel = 'value'; - - this.style = Graph3d.STYLE.DOT; - this.showPerspective = true; - this.showGrid = true; - this.keepAspectRatio = true; - this.showShadow = false; - this.showGrayBottom = false; // TODO: this does not work correctly - this.showTooltip = false; - this.verticalRatio = 0.5; // 0.1 to 1.0, where 1.0 results in a 'cube' - this.animationInterval = 1000; // milliseconds - this.animationPreload = false; + break; + // YEAR + case 'YY' : + datePartArray[YEAR] = moment.parseTwoDigitYear(input); + break; + case 'YYYY' : + case 'YYYYY' : + case 'YYYYYY' : + datePartArray[YEAR] = toInt(input); + break; + // AM / PM + case 'a' : // fall through to A + case 'A' : + config._isPm = getLangDefinition(config._l).isPM(input); + break; + // 24 HOUR + case 'H' : // fall through to hh + case 'HH' : // fall through to hh + case 'h' : // fall through to hh + case 'hh' : + datePartArray[HOUR] = toInt(input); + break; + // MINUTE + case 'm' : // fall through to mm + case 'mm' : + datePartArray[MINUTE] = toInt(input); + break; + // SECOND + case 's' : // fall through to ss + case 'ss' : + datePartArray[SECOND] = toInt(input); + break; + // MILLISECOND + case 'S' : + case 'SS' : + case 'SSS' : + case 'SSSS' : + datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); + break; + // UNIX TIMESTAMP WITH MS + case 'X': + config._d = new Date(parseFloat(input) * 1000); + break; + // TIMEZONE + case 'Z' : // fall through to ZZ + case 'ZZ' : + config._useUTC = true; + config._tzm = timezoneMinutesFromString(input); + break; + // WEEKDAY - human + case 'dd': + case 'ddd': + case 'dddd': + a = getLangDefinition(config._l).weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (a != null) { + config._w = config._w || {}; + config._w['d'] = a; + } else { + config._pf.invalidWeekday = input; + } + break; + // WEEK, WEEK DAY - numeric + case 'w': + case 'ww': + case 'W': + case 'WW': + case 'd': + case 'e': + case 'E': + token = token.substr(0, 1); + /* falls through */ + case 'gggg': + case 'GGGG': + case 'GGGGG': + token = token.substr(0, 2); + if (input) { + config._w = config._w || {}; + config._w[token] = toInt(input); + } + break; + case 'gg': + case 'GG': + config._w = config._w || {}; + config._w[token] = moment.parseTwoDigitYear(input); + } + } - this.camera = new Camera(); - this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, lang; - this.dataTable = null; // The original data table - this.dataPoints = null; // The table with point objects + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; - // the column indexes - this.colX = undefined; - this.colY = undefined; - this.colZ = undefined; - this.colValue = undefined; - this.colFilter = undefined; + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); + week = dfl(w.W, 1); + weekday = dfl(w.E, 1); + } else { + lang = getLangDefinition(config._l); + dow = lang._week.dow; + doy = lang._week.doy; - this.xMin = 0; - this.xStep = undefined; // auto by default - this.xMax = 1; - this.yMin = 0; - this.yStep = undefined; // auto by default - this.yMax = 1; - this.zMin = 0; - this.zStep = undefined; // auto by default - this.zMax = 1; - this.valueMin = 0; - this.valueMax = 1; - this.xBarWidth = 1; - this.yBarWidth = 1; - // TODO: customize axis range + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); - // constants - this.colorAxis = '#4D4D4D'; - this.colorGrid = '#D3D3D3'; - this.colorDot = '#7DC1FF'; - this.colorDotBorder = '#3267D2'; + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < dow) { + ++week; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + } else { + // default to begining of week + weekday = dow; + } + } + temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); - // create a frame and canvas - this.create(); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } - // apply options (also when undefined) - this.setOptions(options); + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function dateFromConfig(config) { + var i, date, input = [], currentDate, yearToUse; - // apply data - if (data) { - this.setData(data); - } - } + if (config._d) { + return; + } - // Extend Graph3d with an Emitter mixin - Emitter(Graph3d.prototype); + currentDate = currentDateArray(config); - /** - * Calculate the scaling values, dependent on the range in x, y, and z direction - */ - Graph3d.prototype._setScale = function() { - this.scale = new Point3d(1 / (this.xMax - this.xMin), - 1 / (this.yMax - this.yMin), - 1 / (this.zMax - this.zMin)); + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } - // keep aspect ration between x and y scale if desired - if (this.keepAspectRatio) { - if (this.scale.x < this.scale.y) { - //noinspection JSSuspiciousNameCombination - this.scale.y = this.scale.x; - } - else { - //noinspection JSSuspiciousNameCombination - this.scale.x = this.scale.y; - } - } + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); - // scale the vertical axis - this.scale.z *= this.verticalRatio; - // TODO: can this be automated? verticalRatio? + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } - // determine scale for (optional) value - this.scale.value = 1 / (this.valueMax - this.valueMin); + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } - // position the camera arm - var xCenter = (this.xMax + this.xMin) / 2 * this.scale.x; - var yCenter = (this.yMax + this.yMin) / 2 * this.scale.y; - var zCenter = (this.zMax + this.zMin) / 2 * this.scale.z; - this.camera.setArmLocation(xCenter, yCenter, zCenter); - }; + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } - /** - * Convert a 3D location to a 2D location on screen - * http://en.wikipedia.org/wiki/3D_projection - * @param {Point3d} point3d A 3D point with parameters x, y, z - * @return {Point2d} point2d A 2D point with parameters x, y - */ - Graph3d.prototype._convert3Dto2D = function(point3d) { - var translation = this._convertPointToTranslation(point3d); - return this._convertTranslationToScreen(translation); - }; + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual zone can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); + } + } - /** - * Convert a 3D location its translation seen from the camera - * http://en.wikipedia.org/wiki/3D_projection - * @param {Point3d} point3d A 3D point with parameters x, y, z - * @return {Point3d} translation A 3D point with parameters x, y, z This is - * the translation of the point, seen from the - * camera - */ - Graph3d.prototype._convertPointToTranslation = function(point3d) { - var ax = point3d.x * this.scale.x, - ay = point3d.y * this.scale.y, - az = point3d.z * this.scale.z, - - cx = this.camera.getCameraLocation().x, - cy = this.camera.getCameraLocation().y, - cz = this.camera.getCameraLocation().z, - - // calculate angles - sinTx = Math.sin(this.camera.getCameraRotation().x), - cosTx = Math.cos(this.camera.getCameraRotation().x), - sinTy = Math.sin(this.camera.getCameraRotation().y), - cosTy = Math.cos(this.camera.getCameraRotation().y), - sinTz = Math.sin(this.camera.getCameraRotation().z), - cosTz = Math.cos(this.camera.getCameraRotation().z), + function dateFromObject(config) { + var normalizedInput; - // calculate translation - dx = cosTy * (sinTz * (ay - cy) + cosTz * (ax - cx)) - sinTy * (az - cz), - dy = sinTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) + cosTx * (cosTz * (ay - cy) - sinTz * (ax-cx)), - dz = cosTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) - sinTx * (cosTz * (ay - cy) - sinTz * (ax-cx)); + if (config._d) { + return; + } - return new Point3d(dx, dy, dz); - }; + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; - /** - * Convert a translation point to a point on the screen - * @param {Point3d} translation A 3D point with parameters x, y, z This is - * the translation of the point, seen from the - * camera - * @return {Point2d} point2d A 2D point with parameters x, y - */ - Graph3d.prototype._convertTranslationToScreen = function(translation) { - var ex = this.eye.x, - ey = this.eye.y, - ez = this.eye.z, - dx = translation.x, - dy = translation.y, - dz = translation.z; + dateFromConfig(config); + } - // calculate position on screen from translation - var bx; - var by; - if (this.showPerspective) { - bx = (dx - ex) * (ez / dz); - by = (dy - ey) * (ez / dz); - } - else { - bx = dx * -(ez / this.camera.getArmLength()); - by = dy * -(ez / this.camera.getArmLength()); - } + function currentDateArray(config) { + var now = new Date(); + if (config._useUTC) { + return [ + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() + ]; + } else { + return [now.getFullYear(), now.getMonth(), now.getDate()]; + } + } - // shift and scale the point to the center of the screen - // use the width of the graph to scale both horizontally and vertically. - return new Point2d( - this.xcenter + bx * this.frame.canvas.clientWidth, - this.ycenter - by * this.frame.canvas.clientWidth); - }; + // date from string and format string + function makeDateFromStringAndFormat(config) { - /** - * Set the background styling for the graph - * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor - */ - Graph3d.prototype._setBackgroundColor = function(backgroundColor) { - var fill = 'white'; - var stroke = 'gray'; - var strokeWidth = 1; + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } - if (typeof(backgroundColor) === 'string') { - fill = backgroundColor; - stroke = 'none'; - strokeWidth = 0; - } - else if (typeof(backgroundColor) === 'object') { - if (backgroundColor.fill !== undefined) fill = backgroundColor.fill; - if (backgroundColor.stroke !== undefined) stroke = backgroundColor.stroke; - if (backgroundColor.strokeWidth !== undefined) strokeWidth = backgroundColor.strokeWidth; - } - else if (backgroundColor === undefined) { - // use use defaults - } - else { - throw 'Unsupported type of backgroundColor'; - } + config._a = []; + config._pf.empty = true; - this.frame.style.backgroundColor = fill; - this.frame.style.borderColor = stroke; - this.frame.style.borderWidth = strokeWidth + 'px'; - this.frame.style.borderStyle = 'solid'; - }; + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var lang = getLangDefinition(config._l), + string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + tokens = expandFormat(config._f, lang).match(formattingTokens) || []; - /// enumerate the available styles - Graph3d.STYLE = { - BAR: 0, - BARCOLOR: 1, - BARSIZE: 2, - DOT : 3, - DOTLINE : 4, - DOTCOLOR: 5, - DOTSIZE: 6, - GRID : 7, - LINE: 8, - SURFACE : 9 - }; + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + config._pf.unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + config._pf.empty = false; + } + else { + config._pf.unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + config._pf.unusedTokens.push(token); + } + } - /** - * Retrieve the style index from given styleName - * @param {string} styleName Style name such as 'dot', 'grid', 'dot-line' - * @return {Number} styleNumber Enumeration value representing the style, or -1 - * when not found - */ - Graph3d.prototype._getStyleNumber = function(styleName) { - switch (styleName) { - case 'dot': return Graph3d.STYLE.DOT; - case 'dot-line': return Graph3d.STYLE.DOTLINE; - case 'dot-color': return Graph3d.STYLE.DOTCOLOR; - case 'dot-size': return Graph3d.STYLE.DOTSIZE; - case 'line': return Graph3d.STYLE.LINE; - case 'grid': return Graph3d.STYLE.GRID; - case 'surface': return Graph3d.STYLE.SURFACE; - case 'bar': return Graph3d.STYLE.BAR; - case 'bar-color': return Graph3d.STYLE.BARCOLOR; - case 'bar-size': return Graph3d.STYLE.BARSIZE; - } + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } - return -1; - }; + // handle am pm + if (config._isPm && config._a[HOUR] < 12) { + config._a[HOUR] += 12; + } + // if is 12 am, change hours to 0 + if (config._isPm === false && config._a[HOUR] === 12) { + config._a[HOUR] = 0; + } - /** - * Determine the indexes of the data columns, based on the given style and data - * @param {DataSet} data - * @param {Number} style - */ - Graph3d.prototype._determineColumnIndexes = function(data, style) { - if (this.style === Graph3d.STYLE.DOT || - this.style === Graph3d.STYLE.DOTLINE || - this.style === Graph3d.STYLE.LINE || - this.style === Graph3d.STYLE.GRID || - this.style === Graph3d.STYLE.SURFACE || - this.style === Graph3d.STYLE.BAR) { - // 3 columns expected, and optionally a 4th with filter values - this.colX = 0; - this.colY = 1; - this.colZ = 2; - this.colValue = undefined; + dateFromConfig(config); + checkOverflow(config); + } - if (data.getNumberOfColumns() > 3) { - this.colFilter = 3; + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); } - } - else if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE || - this.style === Graph3d.STYLE.BARCOLOR || - this.style === Graph3d.STYLE.BARSIZE) { - // 4 columns expected, and optionally a 5th with filter values - this.colX = 0; - this.colY = 1; - this.colZ = 2; - this.colValue = 3; - if (data.getNumberOfColumns() > 4) { - this.colFilter = 4; + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); } - } - else { - throw 'Unknown style "' + this.style + '"'; - } - }; - Graph3d.prototype.getNumberOfRows = function(data) { - return data.length; - } + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, + scoreToBeat, + i, + currentScore; - Graph3d.prototype.getNumberOfColumns = function(data) { - var counter = 0; - for (var column in data[0]) { - if (data[0].hasOwnProperty(column)) { - counter++; - } - } - return counter; - } - + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; + } - Graph3d.prototype.getDistinctValues = function(data, column) { - var distinctValues = []; - for (var i = 0; i < data.length; i++) { - if (distinctValues.indexOf(data[i][column]) == -1) { - distinctValues.push(data[i][column]); - } - } - return distinctValues; - } + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = extend({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); + if (!isValid(tempConfig)) { + continue; + } - Graph3d.prototype.getColumnRange = function(data,column) { - var minMax = {min:data[0][column],max:data[0][column]}; - for (var i = 0; i < data.length; i++) { - if (minMax.min > data[i][column]) { minMax.min = data[i][column]; } - if (minMax.max < data[i][column]) { minMax.max = data[i][column]; } - } - return minMax; - }; + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; - /** - * Initialize the data from the data table. Calculate minimum and maximum values - * and column index values - * @param {Array | DataSet | DataView} rawData The data containing the items for the Graph. - * @param {Number} style Style Number - */ - Graph3d.prototype._dataInitialize = function (rawData, style) { - var me = this; + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; - // unsubscribe from the dataTable - if (this.dataSet) { - this.dataSet.off('*', this._onChange); - } + tempConfig._pf.score = currentScore; - if (rawData === undefined) - return; + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } - if (Array.isArray(rawData)) { - rawData = new DataSet(rawData); - } + extend(config, bestMoment || tempConfig); + } - var data; - if (rawData instanceof DataSet || rawData instanceof DataView) { - data = rawData.get(); - } - else { - throw new Error('Array, DataSet, or DataView expected'); - } + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); - if (data.length == 0) - return; + if (match) { + config._pf.iso = true; + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(string)) { + // match[5] should be "T" or undefined + config._f = isoDates[i][0] + (match[6] || " "); + break; + } + } + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(string)) { + config._f += isoTimes[i][0]; + break; + } + } + if (string.match(parseTokenTimezone)) { + config._f += "Z"; + } + makeDateFromStringAndFormat(config); + } else { + config._isValid = false; + } + } - this.dataSet = rawData; - this.dataTable = data; + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } + } - // subscribe to changes in the dataset - this._onChange = function () { - me.setData(me.dataSet); - }; - this.dataSet.on('*', this._onChange); + function makeDateFromInput(config) { + var input = config._i, + matched = aspNetJsonRegex.exec(input); - // _determineColumnIndexes - // getNumberOfRows (points) - // getNumberOfColumns (x,y,z,v,t,t1,t2...) - // getDistinctValues (unique values?) - // getColumnRange + if (input === undefined) { + config._d = new Date(); + } else if (matched) { + config._d = new Date(+matched[1]); + } else if (typeof input === 'string') { + makeDateFromString(config); + } else if (isArray(input)) { + config._a = input.slice(0); + dateFromConfig(config); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if (typeof(input) === 'object') { + dateFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + moment.createFromInputFallback(config); + } + } - // determine the location of x,y,z,value,filter columns - this.colX = 'x'; - this.colY = 'y'; - this.colZ = 'z'; - this.colValue = 'style'; - this.colFilter = 'filter'; + function makeDate(y, m, d, h, M, s, ms) { + //can't just apply() to create a date: + //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply + var date = new Date(y, m, d, h, M, s, ms); + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } - // check if a filter column is provided - if (data[0].hasOwnProperty('filter')) { - if (this.dataFilter === undefined) { - this.dataFilter = new Filter(rawData, this.colFilter, this); - this.dataFilter.setOnLoadCallback(function() {me.redraw();}); + function parseWeekday(input, language) { + if (typeof input === 'string') { + if (!isNaN(input)) { + input = parseInt(input, 10); + } + else { + input = language.weekdaysParse(input); + if (typeof input !== 'number') { + return null; + } + } + } + return input; } - } + /************************************ + Relative Time + ************************************/ - var withBars = this.style == Graph3d.STYLE.BAR || - this.style == Graph3d.STYLE.BARCOLOR || - this.style == Graph3d.STYLE.BARSIZE; - // determine barWidth from data - if (withBars) { - if (this.defaultXBarWidth !== undefined) { - this.xBarWidth = this.defaultXBarWidth; - } - else { - var dataX = this.getDistinctValues(data,this.colX); - this.xBarWidth = (dataX[1] - dataX[0]) || 1; + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, lang) { + return lang.relativeTime(number || 1, !!withoutSuffix, string, isFuture); } - if (this.defaultYBarWidth !== undefined) { - this.yBarWidth = this.defaultYBarWidth; - } - else { - var dataY = this.getDistinctValues(data,this.colY); - this.yBarWidth = (dataY[1] - dataY[0]) || 1; + function relativeTime(milliseconds, withoutSuffix, lang) { + var seconds = round(Math.abs(milliseconds) / 1000), + minutes = round(seconds / 60), + hours = round(minutes / 60), + days = round(hours / 24), + years = round(days / 365), + args = seconds < relativeTimeThresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < relativeTimeThresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < relativeTimeThresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days <= relativeTimeThresholds.dd && ['dd', days] || + days <= relativeTimeThresholds.dm && ['M'] || + days < relativeTimeThresholds.dy && ['MM', round(days / 30)] || + years === 1 && ['y'] || ['yy', years]; + args[2] = withoutSuffix; + args[3] = milliseconds > 0; + args[4] = lang; + return substituteTimeAgo.apply({}, args); } - } - // calculate minimums and maximums - var xRange = this.getColumnRange(data,this.colX); - if (withBars) { - xRange.min -= this.xBarWidth / 2; - xRange.max += this.xBarWidth / 2; - } - this.xMin = (this.defaultXMin !== undefined) ? this.defaultXMin : xRange.min; - this.xMax = (this.defaultXMax !== undefined) ? this.defaultXMax : xRange.max; - if (this.xMax <= this.xMin) this.xMax = this.xMin + 1; - this.xStep = (this.defaultXStep !== undefined) ? this.defaultXStep : (this.xMax-this.xMin)/5; - var yRange = this.getColumnRange(data,this.colY); - if (withBars) { - yRange.min -= this.yBarWidth / 2; - yRange.max += this.yBarWidth / 2; - } - this.yMin = (this.defaultYMin !== undefined) ? this.defaultYMin : yRange.min; - this.yMax = (this.defaultYMax !== undefined) ? this.defaultYMax : yRange.max; - if (this.yMax <= this.yMin) this.yMax = this.yMin + 1; - this.yStep = (this.defaultYStep !== undefined) ? this.defaultYStep : (this.yMax-this.yMin)/5; + /************************************ + Week of Year + ************************************/ - var zRange = this.getColumnRange(data,this.colZ); - this.zMin = (this.defaultZMin !== undefined) ? this.defaultZMin : zRange.min; - this.zMax = (this.defaultZMax !== undefined) ? this.defaultZMax : zRange.max; - if (this.zMax <= this.zMin) this.zMax = this.zMin + 1; - this.zStep = (this.defaultZStep !== undefined) ? this.defaultZStep : (this.zMax-this.zMin)/5; - - if (this.colValue !== undefined) { - var valueRange = this.getColumnRange(data,this.colValue); - this.valueMin = (this.defaultValueMin !== undefined) ? this.defaultValueMin : valueRange.min; - this.valueMax = (this.defaultValueMax !== undefined) ? this.defaultValueMax : valueRange.max; - if (this.valueMax <= this.valueMin) this.valueMax = this.valueMin + 1; - } - - // set the scale dependent on the ranges. - this._setScale(); - }; + // firstDayOfWeek 0 = sun, 6 = sat + // the day of the week that starts the week + // (usually sunday or monday) + // firstDayOfWeekOfYear 0 = sun, 6 = sat + // the first week is the week that contains the first + // of this day of the week + // (eg. ISO weeks use thursday (4)) + function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { + var end = firstDayOfWeekOfYear - firstDayOfWeek, + daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), + adjustedMoment; - /** - * Filter the data based on the current filter - * @param {Array} data - * @return {Array} dataPoints Array with point objects which can be drawn on screen - */ - Graph3d.prototype._getDataPoints = function (data) { - // TODO: store the created matrix dataPoints in the filters instead of reloading each time - var x, y, i, z, obj, point; + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } - var dataPoints = []; + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } - if (this.style === Graph3d.STYLE.GRID || - this.style === Graph3d.STYLE.SURFACE) { - // copy all values from the google data table to a matrix - // the provided values are supposed to form a grid of (x,y) positions + adjustedMoment = moment(mom).add('d', daysToDayOfWeek); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; + } - // create two lists with all present x and y values - var dataX = []; - var dataY = []; - for (i = 0; i < this.getNumberOfRows(data); i++) { - x = data[i][this.colX] || 0; - y = data[i][this.colY] || 0; + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; - if (dataX.indexOf(x) === -1) { - dataX.push(x); - } - if (dataY.indexOf(y) === -1) { - dataY.push(y); - } - } + d = d === 0 ? 7 : d; + weekday = weekday != null ? weekday : firstDayOfWeek; + daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); + dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; - function sortNumber(a, b) { - return a - b; + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; } - dataX.sort(sortNumber); - dataY.sort(sortNumber); - // create a grid, a 2d matrix, with all values. - var dataMatrix = []; // temporary data matrix - for (i = 0; i < data.length; i++) { - x = data[i][this.colX] || 0; - y = data[i][this.colY] || 0; - z = data[i][this.colZ] || 0; + /************************************ + Top Level Functions + ************************************/ - var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer - var yIndex = dataY.indexOf(y); + function makeMoment(config) { + var input = config._i, + format = config._f; - if (dataMatrix[xIndex] === undefined) { - dataMatrix[xIndex] = []; - } + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } - var point3d = new Point3d(); - point3d.x = x; - point3d.y = y; - point3d.z = z; + if (typeof input === 'string') { + config._i = input = getLangDefinition().preparse(input); + } - obj = {}; - obj.point = point3d; - obj.trans = undefined; - obj.screen = undefined; - obj.bottom = new Point3d(x, y, this.zMin); + if (moment.isMoment(input)) { + config = cloneMoment(input); - dataMatrix[xIndex][yIndex] = obj; + config._d = new Date(+input._d); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } - dataPoints.push(obj); + return new Moment(config); } - // fill in the pointers to the neighbors. - for (x = 0; x < dataMatrix.length; x++) { - for (y = 0; y < dataMatrix[x].length; y++) { - if (dataMatrix[x][y]) { - dataMatrix[x][y].pointRight = (x < dataMatrix.length-1) ? dataMatrix[x+1][y] : undefined; - dataMatrix[x][y].pointTop = (y < dataMatrix[x].length-1) ? dataMatrix[x][y+1] : undefined; - dataMatrix[x][y].pointCross = - (x < dataMatrix.length-1 && y < dataMatrix[x].length-1) ? - dataMatrix[x+1][y+1] : - undefined; + moment = function (input, format, lang, strict) { + var c; + + if (typeof(lang) === "boolean") { + strict = lang; + lang = undefined; } - } - } - } - else { // 'dot', 'dot-line', etc. - // copy all values from the google data table to a list with Point3d objects - for (i = 0; i < data.length; i++) { - point = new Point3d(); - point.x = data[i][this.colX] || 0; - point.y = data[i][this.colY] || 0; - point.z = data[i][this.colZ] || 0; + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._i = input; + c._f = format; + c._l = lang; + c._strict = strict; + c._isUTC = false; + c._pf = defaultParsingFlags(); - if (this.colValue !== undefined) { - point.value = data[i][this.colValue] || 0; - } + return makeMoment(c); + }; - obj = {}; - obj.point = point; - obj.bottom = new Point3d(point.x, point.y, this.zMin); - obj.trans = undefined; - obj.screen = undefined; + moment.suppressDeprecationWarnings = false; - dataPoints.push(obj); + moment.createFromInputFallback = deprecate( + "moment construction falls back to js Date. This is " + + "discouraged and will be removed in upcoming major " + + "release. Please refer to " + + "https://github.com/moment/moment/issues/1407 for more info.", + function (config) { + config._d = new Date(config._i); + }); + + // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return moment(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (moments[i][fn](res)) { + res = moments[i]; + } + } + return res; } - } - return dataPoints; - }; + moment.min = function () { + var args = [].slice.call(arguments, 0); - /** - * Create the main frame for the Graph3d. - * This function is executed once when a Graph3d object is created. The frame - * contains a canvas, and this canvas contains all objects like the axis and - * nodes. - */ - Graph3d.prototype.create = function () { - // remove all elements from the container element. - while (this.containerElement.hasChildNodes()) { - this.containerElement.removeChild(this.containerElement.firstChild); - } + return pickBy('isBefore', args); + }; - this.frame = document.createElement('div'); - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; + moment.max = function () { + var args = [].slice.call(arguments, 0); - // create the graph canvas (HTML canvas element) - this.frame.canvas = document.createElement( 'canvas' ); - this.frame.canvas.style.position = 'relative'; - this.frame.appendChild(this.frame.canvas); - //if (!this.frame.canvas.getContext) { - { - var noCanvas = document.createElement( 'DIV' ); - noCanvas.style.color = 'red'; - noCanvas.style.fontWeight = 'bold' ; - noCanvas.style.padding = '10px'; - noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; - this.frame.canvas.appendChild(noCanvas); - } + return pickBy('isAfter', args); + }; - this.frame.filter = document.createElement( 'div' ); - this.frame.filter.style.position = 'absolute'; - this.frame.filter.style.bottom = '0px'; - this.frame.filter.style.left = '0px'; - this.frame.filter.style.width = '100%'; - this.frame.appendChild(this.frame.filter); + // creating with utc + moment.utc = function (input, format, lang, strict) { + var c; - // add event listeners to handle moving and zooming the contents - var me = this; - var onmousedown = function (event) {me._onMouseDown(event);}; - var ontouchstart = function (event) {me._onTouchStart(event);}; - var onmousewheel = function (event) {me._onWheel(event);}; - var ontooltip = function (event) {me._onTooltip(event);}; - // TODO: these events are never cleaned up... can give a 'memory leakage' + if (typeof(lang) === "boolean") { + strict = lang; + lang = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._useUTC = true; + c._isUTC = true; + c._l = lang; + c._i = input; + c._f = format; + c._strict = strict; + c._pf = defaultParsingFlags(); - util.addEventListener(this.frame.canvas, 'keydown', onkeydown); - util.addEventListener(this.frame.canvas, 'mousedown', onmousedown); - util.addEventListener(this.frame.canvas, 'touchstart', ontouchstart); - util.addEventListener(this.frame.canvas, 'mousewheel', onmousewheel); - util.addEventListener(this.frame.canvas, 'mousemove', ontooltip); + return makeMoment(c).utc(); + }; - // add the new graph to the container element - this.containerElement.appendChild(this.frame); - }; + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso; - /** - * Set a new size for the graph - * @param {string} width Width in pixels or percentage (for example '800px' - * or '50%') - * @param {string} height Height in pixels or percentage (for example '400px' - * or '30%') - */ - Graph3d.prototype.setSize = function(width, height) { - this.frame.style.width = width; - this.frame.style.height = height; + if (moment.isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (typeof input === 'number') { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) { + sign = (match[1] === "-") ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(match[MILLISECOND]) * sign + }; + } else if (!!(match = isoDurationRegex.exec(input))) { + sign = (match[1] === "-") ? -1 : 1; + parseIso = function (inp) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; + }; + duration = { + y: parseIso(match[2]), + M: parseIso(match[3]), + d: parseIso(match[4]), + h: parseIso(match[5]), + m: parseIso(match[6]), + s: parseIso(match[7]), + w: parseIso(match[8]) + }; + } - this._resizeCanvas(); - }; + ret = new Duration(duration); - /** - * Resize the canvas to the current size of the frame - */ - Graph3d.prototype._resizeCanvas = function() { - this.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; + if (moment.isDuration(input) && input.hasOwnProperty('_lang')) { + ret._lang = input._lang; + } - this.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; + return ret; + }; - // adjust with for margin - this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; - }; + // version number + moment.version = VERSION; - /** - * Start animation - */ - Graph3d.prototype.animationStart = function() { - if (!this.frame.filter || !this.frame.filter.slider) - throw 'No animation available'; + // default format + moment.defaultFormat = isoFormat; - this.frame.filter.slider.play(); - }; + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; - /** - * Stop animation - */ - Graph3d.prototype.animationStop = function() { - if (!this.frame.filter || !this.frame.filter.slider) return; + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + moment.updateOffset = function () {}; - this.frame.filter.slider.stop(); - }; + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function(threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; + } + relativeTimeThresholds[threshold] = limit; + return true; + }; + // This function will load languages and then set the global language. If + // no arguments are passed in, it will simply return the current global + // language key. + moment.lang = function (key, values) { + var r; + if (!key) { + return moment.fn._lang._abbr; + } + if (values) { + loadLang(normalizeLanguage(key), values); + } else if (values === null) { + unloadLang(key); + key = 'en'; + } else if (!languages[key]) { + getLangDefinition(key); + } + r = moment.duration.fn._lang = moment.fn._lang = getLangDefinition(key); + return r._abbr; + }; - /** - * Resize the center position based on the current values in this.defaultXCenter - * and this.defaultYCenter (which are strings with a percentage or a value - * in pixels). The center positions are the variables this.xCenter - * and this.yCenter - */ - Graph3d.prototype._resizeCenter = function() { - // calculate the horizontal center position - if (this.defaultXCenter.charAt(this.defaultXCenter.length-1) === '%') { - this.xcenter = - parseFloat(this.defaultXCenter) / 100 * - this.frame.canvas.clientWidth; - } - else { - this.xcenter = parseFloat(this.defaultXCenter); // supposed to be in px - } + // returns language data + moment.langData = function (key) { + if (key && key._lang && key._lang._abbr) { + key = key._lang._abbr; + } + return getLangDefinition(key); + }; - // calculate the vertical center position - if (this.defaultYCenter.charAt(this.defaultYCenter.length-1) === '%') { - this.ycenter = - parseFloat(this.defaultYCenter) / 100 * - (this.frame.canvas.clientHeight - this.frame.filter.clientHeight); - } - else { - this.ycenter = parseFloat(this.defaultYCenter); // supposed to be in px - } - }; + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && obj.hasOwnProperty('_isAMomentObject')); + }; - /** - * Set the rotation and distance of the camera - * @param {Object} pos An object with the camera position. The object - * contains three parameters: - * - horizontal {Number} - * The horizontal rotation, between 0 and 2*PI. - * Optional, can be left undefined. - * - vertical {Number} - * The vertical rotation, between 0 and 0.5*PI - * if vertical=0.5*PI, the graph is shown from the - * top. Optional, can be left undefined. - * - distance {Number} - * The (normalized) distance of the camera to the - * center of the graph, a value between 0.71 and 5.0. - * Optional, can be left undefined. - */ - Graph3d.prototype.setCameraPosition = function(pos) { - if (pos === undefined) { - return; - } + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; - if (pos.horizontal !== undefined && pos.vertical !== undefined) { - this.camera.setArmRotation(pos.horizontal, pos.vertical); - } + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); + } - if (pos.distance !== undefined) { - this.camera.setArmLength(pos.distance); - } + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; - this.redraw(); - }; + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } + return m; + }; - /** - * Retrieve the current camera rotation - * @return {object} An object with parameters horizontal, vertical, and - * distance - */ - Graph3d.prototype.getCameraPosition = function() { - var pos = this.camera.getArmRotation(); - pos.distance = this.camera.getArmLength(); - return pos; - }; - - /** - * Load data into the 3D Graph - */ - Graph3d.prototype._readData = function(data) { - // read the data - this._dataInitialize(data, this.style); - - - if (this.dataFilter) { - // apply filtering - this.dataPoints = this.dataFilter._getDataPoints(); - } - else { - // no filtering. load all data - this.dataPoints = this._getDataPoints(this.dataTable); - } - - // draw the filter - this._redrawFilter(); - }; - - /** - * Replace the dataset of the Graph3d - * @param {Array | DataSet | DataView} data - */ - Graph3d.prototype.setData = function (data) { - this._readData(data); - this.redraw(); - - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); - } - }; + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; - /** - * Update the options. Options will be merged with current options - * @param {Object} options - */ - Graph3d.prototype.setOptions = function (options) { - var cameraPosition = undefined; + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; - this.animationStop(); + /************************************ + Moment Prototype + ************************************/ - if (options !== undefined) { - // retrieve parameter values - if (options.width !== undefined) this.width = options.width; - if (options.height !== undefined) this.height = options.height; - if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; - if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; + extend(moment.fn = Moment.prototype, { - if (options.filterLabel !== undefined) this.filterLabel = options.filterLabel; - if (options.legendLabel !== undefined) this.legendLabel = options.legendLabel; - if (options.xLabel !== undefined) this.xLabel = options.xLabel; - if (options.yLabel !== undefined) this.yLabel = options.yLabel; - if (options.zLabel !== undefined) this.zLabel = options.zLabel; + clone : function () { + return moment(this); + }, - if (options.style !== undefined) { - var styleNumber = this._getStyleNumber(options.style); - if (styleNumber !== -1) { - this.style = styleNumber; - } - } - if (options.showGrid !== undefined) this.showGrid = options.showGrid; - if (options.showPerspective !== undefined) this.showPerspective = options.showPerspective; - if (options.showShadow !== undefined) this.showShadow = options.showShadow; - if (options.tooltip !== undefined) this.showTooltip = options.tooltip; - if (options.showAnimationControls !== undefined) this.showAnimationControls = options.showAnimationControls; - if (options.keepAspectRatio !== undefined) this.keepAspectRatio = options.keepAspectRatio; - if (options.verticalRatio !== undefined) this.verticalRatio = options.verticalRatio; + valueOf : function () { + return +this._d + ((this._offset || 0) * 60000); + }, - if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; - if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; - if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; + unix : function () { + return Math.floor(+this / 1000); + }, - if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; - if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; + toString : function () { + return this.clone().lang('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); + }, - if (options.xMin !== undefined) this.defaultXMin = options.xMin; - if (options.xStep !== undefined) this.defaultXStep = options.xStep; - if (options.xMax !== undefined) this.defaultXMax = options.xMax; - if (options.yMin !== undefined) this.defaultYMin = options.yMin; - if (options.yStep !== undefined) this.defaultYStep = options.yStep; - if (options.yMax !== undefined) this.defaultYMax = options.yMax; - if (options.zMin !== undefined) this.defaultZMin = options.zMin; - if (options.zStep !== undefined) this.defaultZStep = options.zStep; - if (options.zMax !== undefined) this.defaultZMax = options.zMax; - if (options.valueMin !== undefined) this.defaultValueMin = options.valueMin; - if (options.valueMax !== undefined) this.defaultValueMax = options.valueMax; + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, - if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; + toISOString : function () { + var m = moment(this).utc(); + if (0 < m.year() && m.year() <= 9999) { + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } else { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + }, - if (cameraPosition !== undefined) { - this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); - this.camera.setArmLength(cameraPosition.distance); - } - else { - this.camera.setArmRotation(1.0, 0.5); - this.camera.setArmLength(1.7); - } - } + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, - this._setBackgroundColor(options && options.backgroundColor); + isValid : function () { + return isValid(this); + }, - this.setSize(this.width, this.height); + isDSTShifted : function () { - // re-load the data - if (this.dataTable) { - this.setData(this.dataTable); - } + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); - } - }; + return false; + }, - /** - * Redraw the Graph. - */ - Graph3d.prototype.redraw = function() { - if (this.dataPoints === undefined) { - throw 'Error: graph data not initialized'; - } + parsingFlags : function () { + return extend({}, this._pf); + }, - this._resizeCanvas(); - this._resizeCenter(); - this._redrawSlider(); - this._redrawClear(); - this._redrawAxis(); + invalidAt: function () { + return this._pf.overflow; + }, - if (this.style === Graph3d.STYLE.GRID || - this.style === Graph3d.STYLE.SURFACE) { - this._redrawDataGrid(); - } - else if (this.style === Graph3d.STYLE.LINE) { - this._redrawDataLine(); - } - else if (this.style === Graph3d.STYLE.BAR || - this.style === Graph3d.STYLE.BARCOLOR || - this.style === Graph3d.STYLE.BARSIZE) { - this._redrawDataBar(); - } - else { - // style is DOT, DOTLINE, DOTCOLOR, DOTSIZE - this._redrawDataDot(); - } + utc : function () { + return this.zone(0); + }, - this._redrawInfo(); - this._redrawLegend(); - }; + local : function () { + this.zone(0); + this._isUTC = false; + return this; + }, - /** - * Clear the canvas before redrawing - */ - Graph3d.prototype._redrawClear = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.lang().postformat(output); + }, - ctx.clearRect(0, 0, canvas.width, canvas.height); - }; + add : function (input, val) { + var dur; + // switch args to support add('s', 1) and add(1, 's') + if (typeof input === 'string' && typeof val === 'string') { + dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); + } else if (typeof input === 'string') { + dur = moment.duration(+val, input); + } else { + dur = moment.duration(input, val); + } + addOrSubtractDurationFromMoment(this, dur, 1); + return this; + }, + subtract : function (input, val) { + var dur; + // switch args to support subtract('s', 1) and subtract(1, 's') + if (typeof input === 'string' && typeof val === 'string') { + dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); + } else if (typeof input === 'string') { + dur = moment.duration(+val, input); + } else { + dur = moment.duration(input, val); + } + addOrSubtractDurationFromMoment(this, dur, -1); + return this; + }, - /** - * Redraw the legend showing the colors - */ - Graph3d.prototype._redrawLegend = function() { - var y; + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; - if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE) { + units = normalizeUnits(units); - var dotSize = this.frame.clientWidth * 0.02; - - var widthMin, widthMax; - if (this.style === Graph3d.STYLE.DOTSIZE) { - widthMin = dotSize / 2; // px - widthMax = dotSize / 2 + dotSize * 2; // Todo: put this in one function - } - else { - widthMin = 20; // px - widthMax = 20; // px - } - - var height = Math.max(this.frame.clientHeight * 0.25, 100); - var top = this.margin; - var right = this.frame.clientWidth - this.margin; - var left = right - widthMax; - var bottom = top + height; - } - - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - ctx.lineWidth = 1; - ctx.font = '14px arial'; // TODO: put in options - - if (this.style === Graph3d.STYLE.DOTCOLOR) { - // draw the color bar - var ymin = 0; - var ymax = height; // Todo: make height customizable - for (y = ymin; y < ymax; y++) { - var f = (y - ymin) / (ymax - ymin); - - //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function - var hue = f * 240; - var color = this._hsv2rgb(hue, 1, 1); + if (units === 'year' || units === 'month') { + // average number of days in the months in the given dates + diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 + // difference in months + output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); + // adjust by taking difference in days, average number of days + // and dst in the given months. + output += ((this - moment(this).startOf('month')) - + (that - moment(that).startOf('month'))) / diff; + // same as above but with zones, to negate all dst + output -= ((this.zone() - moment(this).startOf('month').zone()) - + (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; + if (units === 'year') { + output = output / 12; + } + } else { + diff = (this - that); + output = units === 'second' ? diff / 1e3 : // 1000 + units === 'minute' ? diff / 6e4 : // 1000 * 60 + units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + diff; + } + return asFloat ? output : absRound(output); + }, - ctx.strokeStyle = color; - ctx.beginPath(); - ctx.moveTo(left, top + y); - ctx.lineTo(right, top + y); - ctx.stroke(); - } + from : function (time, withoutSuffix) { + return moment.duration(this.diff(time)).lang(this.lang()._abbr).humanize(!withoutSuffix); + }, - ctx.strokeStyle = this.colorAxis; - ctx.strokeRect(left, top, widthMax, height); - } + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, - if (this.style === Graph3d.STYLE.DOTSIZE) { - // draw border around color bar - ctx.strokeStyle = this.colorAxis; - ctx.fillStyle = this.colorDot; - ctx.beginPath(); - ctx.moveTo(left, top); - ctx.lineTo(right, top); - ctx.lineTo(right - widthMax + widthMin, bottom); - ctx.lineTo(left, bottom); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - } + calendar : function (time) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're zone'd or not. + var now = time || moment(), + sod = makeAs(now, this).startOf('day'), + diff = this.diff(sod, 'days', true), + format = diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; + return this.format(this.lang().calendar(format, this)); + }, - if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE) { - // print values along the color bar - var gridLineLen = 5; // px - var step = new StepNumber(this.valueMin, this.valueMax, (this.valueMax-this.valueMin)/5, true); - step.start(); - if (step.getCurrent() < this.valueMin) { - step.next(); - } - while (!step.end()) { - y = bottom - (step.getCurrent() - this.valueMin) / (this.valueMax - this.valueMin) * height; + isLeapYear : function () { + return isLeapYear(this.year()); + }, - ctx.beginPath(); - ctx.moveTo(left - gridLineLen, y); - ctx.lineTo(left, y); - ctx.stroke(); + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); + day : function (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.lang()); + return this.add({ d : input - day }); + } else { + return day; + } + }, - step.next(); - } + month : makeAccessor('Month', true), - ctx.textAlign = 'right'; - ctx.textBaseline = 'top'; - var label = this.legendLabel; - ctx.fillText(label, right, bottom + this.margin); - } - }; + startOf: function (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + /* falls through */ + } - /** - * Redraw the filter - */ - Graph3d.prototype._redrawFilter = function() { - this.frame.filter.innerHTML = ''; + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } - if (this.dataFilter) { - var options = { - 'visible': this.showAnimationControls - }; - var slider = new Slider(this.frame.filter, options); - this.frame.filter.slider = slider; + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } - // TODO: css here is not nice here... - this.frame.filter.style.padding = '10px'; - //this.frame.filter.style.backgroundColor = '#EFEFEF'; + return this; + }, - slider.setValues(this.dataFilter.values); - slider.setPlayInterval(this.animationInterval); + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add((units === 'isoWeek' ? 'week' : units), 1).subtract('ms', 1); + }, - // create an event handler - var me = this; - var onchange = function () { - var index = slider.getIndex(); + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, - me.dataFilter.selectValue(index); - me.dataPoints = me.dataFilter._getDataPoints(); + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, - me.redraw(); - }; - slider.setOnChangeCallback(onchange); - } - else { - this.frame.filter.slider = undefined; - } - }; + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, - /** - * Redraw the slider - */ - Graph3d.prototype._redrawSlider = function() { - if ( this.frame.filter.slider !== undefined) { - this.frame.filter.slider.redraw(); - } - }; + min: deprecate( + "moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548", + function (other) { + other = moment.apply(null, arguments); + return other < this ? this : other; + } + ), + max: deprecate( + "moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548", + function (other) { + other = moment.apply(null, arguments); + return other > this ? this : other; + } + ), - /** - * Redraw common information - */ - Graph3d.prototype._redrawInfo = function() { - if (this.dataFilter) { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - - ctx.font = '14px arial'; // TODO: put in options - ctx.lineStyle = 'gray'; - ctx.fillStyle = 'gray'; - ctx.textAlign = 'left'; - ctx.textBaseline = 'top'; + // keepTime = true means only change the timezone, without affecting + // the local hour. So 5:31:26 +0300 --[zone(2, true)]--> 5:31:26 +0200 + // It is possible that 5:31:26 doesn't exist int zone +0200, so we + // adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + zone : function (input, keepTime) { + var offset = this._offset || 0; + if (input != null) { + if (typeof input === "string") { + input = timezoneMinutesFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + this._offset = input; + this._isUTC = true; + if (offset !== input) { + if (!keepTime || this._changeInProgress) { + addOrSubtractDurationFromMoment(this, + moment.duration(offset - input, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + moment.updateOffset(this, true); + this._changeInProgress = null; + } + } + } else { + return this._isUTC ? offset : this._d.getTimezoneOffset(); + } + return this; + }, - var x = this.margin; - var y = this.margin; - ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); - } - }; + zoneAbbr : function () { + return this._isUTC ? "UTC" : ""; + }, + zoneName : function () { + return this._isUTC ? "Coordinated Universal Time" : ""; + }, - /** - * Redraw the axis - */ - Graph3d.prototype._redrawAxis = function() { - var canvas = this.frame.canvas, - ctx = canvas.getContext('2d'), - from, to, step, prettyStep, - text, xText, yText, zText, - offset, xOffset, yOffset, - xMin2d, xMax2d; + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, - // TODO: get the actual rendered style of the containerElement - //ctx.font = this.containerElement.style.font; - ctx.font = 24 / this.camera.getArmLength() + 'px arial'; + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } - // calculate the length for the short grid lines - var gridLenX = 0.025 / this.scale.x; - var gridLenY = 0.025 / this.scale.y; - var textMargin = 5 / this.camera.getArmLength(); // px - var armAngle = this.camera.getArmRotation().horizontal; + return (this.zone() - input) % 60 === 0; + }, - // draw x-grid lines - ctx.lineWidth = 1; - prettyStep = (this.defaultXStep === undefined); - step = new StepNumber(this.xMin, this.xMax, this.xStep, prettyStep); - step.start(); - if (step.getCurrent() < this.xMin) { - step.next(); - } - while (!step.end()) { - var x = step.getCurrent(); + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, - if (this.showGrid) { - from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); - to = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); - ctx.strokeStyle = this.colorGrid; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); - } - else { - from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); - to = this._convert3Dto2D(new Point3d(x, this.yMin+gridLenX, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); + dayOfYear : function (input) { + var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add("d", (input - dayOfYear)); + }, - from = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); - to = this._convert3Dto2D(new Point3d(x, this.yMax-gridLenX, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); - } + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, - yText = (Math.cos(armAngle) > 0) ? this.yMin : this.yMax; - text = this._convert3Dto2D(new Point3d(x, yText, this.zMin)); - if (Math.cos(armAngle * 2) > 0) { - ctx.textAlign = 'center'; - ctx.textBaseline = 'top'; - text.y += textMargin; - } - else if (Math.sin(armAngle * 2) < 0){ - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - } - else { - ctx.textAlign = 'left'; - ctx.textBaseline = 'middle'; - } - ctx.fillStyle = this.colorAxis; - ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + weekYear : function (input) { + var year = weekOfYear(this, this.lang()._week.dow, this.lang()._week.doy).year; + return input == null ? year : this.add("y", (input - year)); + }, - step.next(); - } + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add("y", (input - year)); + }, - // draw y-grid lines - ctx.lineWidth = 1; - prettyStep = (this.defaultYStep === undefined); - step = new StepNumber(this.yMin, this.yMax, this.yStep, prettyStep); - step.start(); - if (step.getCurrent() < this.yMin) { - step.next(); - } - while (!step.end()) { - if (this.showGrid) { - from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); - to = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); - ctx.strokeStyle = this.colorGrid; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); - } - else { - from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); - to = this._convert3Dto2D(new Point3d(this.xMin+gridLenY, step.getCurrent(), this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); + week : function (input) { + var week = this.lang().week(this); + return input == null ? week : this.add("d", (input - week) * 7); + }, - from = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); - to = this._convert3Dto2D(new Point3d(this.xMax-gridLenY, step.getCurrent(), this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); - } + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add("d", (input - week) * 7); + }, - xText = (Math.sin(armAngle ) > 0) ? this.xMin : this.xMax; - text = this._convert3Dto2D(new Point3d(xText, step.getCurrent(), this.zMin)); - if (Math.cos(armAngle * 2) < 0) { - ctx.textAlign = 'center'; - ctx.textBaseline = 'top'; - text.y += textMargin; - } - else if (Math.sin(armAngle * 2) > 0){ - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - } - else { - ctx.textAlign = 'left'; - ctx.textBaseline = 'middle'; - } - ctx.fillStyle = this.colorAxis; - ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + weekday : function (input) { + var weekday = (this.day() + 7 - this.lang()._week.dow) % 7; + return input == null ? weekday : this.add("d", input - weekday); + }, - step.next(); - } + isoWeekday : function (input) { + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); + }, - // draw z-grid lines and axis - ctx.lineWidth = 1; - prettyStep = (this.defaultZStep === undefined); - step = new StepNumber(this.zMin, this.zMax, this.zStep, prettyStep); - step.start(); - if (step.getCurrent() < this.zMin) { - step.next(); - } - xText = (Math.cos(armAngle ) > 0) ? this.xMin : this.xMax; - yText = (Math.sin(armAngle ) < 0) ? this.yMin : this.yMax; - while (!step.end()) { - // TODO: make z-grid lines really 3d? - from = this._convert3Dto2D(new Point3d(xText, yText, step.getCurrent())); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(from.x - textMargin, from.y); - ctx.stroke(); + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); + weeksInYear : function () { + var weekInfo = this._lang._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, - step.next(); - } - ctx.lineWidth = 1; - from = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); - to = this._convert3Dto2D(new Point3d(xText, yText, this.zMax)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, - // draw x-axis - ctx.lineWidth = 1; - // line at yMin - xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); - xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(xMin2d.x, xMin2d.y); - ctx.lineTo(xMax2d.x, xMax2d.y); - ctx.stroke(); - // line at ymax - xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); - xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(xMin2d.x, xMin2d.y); - ctx.lineTo(xMax2d.x, xMax2d.y); - ctx.stroke(); + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, - // draw y-axis - ctx.lineWidth = 1; - // line at xMin - from = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); - to = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); - // line at xMax - from = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); - to = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(to.x, to.y); - ctx.stroke(); + // If passed a language key, it will set the language for this + // instance. Otherwise, it will return the language configuration + // variables for this instance. + lang : function (key) { + if (key === undefined) { + return this._lang; + } else { + this._lang = getLangDefinition(key); + return this; + } + } + }); - // draw x-label - var xLabel = this.xLabel; - if (xLabel.length > 0) { - yOffset = 0.1 / this.scale.y; - xText = (this.xMin + this.xMax) / 2; - yText = (Math.cos(armAngle) > 0) ? this.yMin - yOffset: this.yMax + yOffset; - text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); - if (Math.cos(armAngle * 2) > 0) { - ctx.textAlign = 'center'; - ctx.textBaseline = 'top'; - } - else if (Math.sin(armAngle * 2) < 0){ - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - } - else { - ctx.textAlign = 'left'; - ctx.textBaseline = 'middle'; + function rawMonthSetter(mom, value) { + var dayOfMonth; + + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.lang().monthsParse(value); + // TODO: Another silent failure? + if (typeof value !== 'number') { + return mom; + } + } + + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; } - ctx.fillStyle = this.colorAxis; - ctx.fillText(xLabel, text.x, text.y); - } - // draw y-label - var yLabel = this.yLabel; - if (yLabel.length > 0) { - xOffset = 0.1 / this.scale.x; - xText = (Math.sin(armAngle ) > 0) ? this.xMin - xOffset : this.xMax + xOffset; - yText = (this.yMin + this.yMax) / 2; - text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); - if (Math.cos(armAngle * 2) < 0) { - ctx.textAlign = 'center'; - ctx.textBaseline = 'top'; + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); } - else if (Math.sin(armAngle * 2) > 0){ - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; + + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } } - else { - ctx.textAlign = 'left'; - ctx.textBaseline = 'middle'; + + function makeAccessor(unit, keepTime) { + return function (value) { + if (value != null) { + rawSetter(this, unit, value); + moment.updateOffset(this, keepTime); + return this; + } else { + return rawGetter(this, unit); + } + }; } - ctx.fillStyle = this.colorAxis; - ctx.fillText(yLabel, text.x, text.y); - } - // draw z-label - var zLabel = this.zLabel; - if (zLabel.length > 0) { - offset = 30; // pixels. // TODO: relate to the max width of the values on the z axis? - xText = (Math.cos(armAngle ) > 0) ? this.xMin : this.xMax; - yText = (Math.sin(armAngle ) < 0) ? this.yMin : this.yMax; - zText = (this.zMin + this.zMax) / 2; - text = this._convert3Dto2D(new Point3d(xText, yText, zText)); - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(zLabel, text.x - offset, text.y); - } - }; + moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); + moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); + moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); + // Setting the hour should keep the time, because the user explicitly + // specified which hour he wants. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); + // moment.fn.month is defined separately + moment.fn.date = makeAccessor('Date', true); + moment.fn.dates = deprecate("dates accessor is deprecated. Use date instead.", makeAccessor('Date', true)); + moment.fn.year = makeAccessor('FullYear', true); + moment.fn.years = deprecate("years accessor is deprecated. Use year instead.", makeAccessor('FullYear', true)); - /** - * Calculate the color based on the given value. - * @param {Number} H Hue, a value be between 0 and 360 - * @param {Number} S Saturation, a value between 0 and 1 - * @param {Number} V Value, a value between 0 and 1 - */ - Graph3d.prototype._hsv2rgb = function(H, S, V) { - var R, G, B, C, Hi, X; + // add plural methods + moment.fn.days = moment.fn.day; + moment.fn.months = moment.fn.month; + moment.fn.weeks = moment.fn.week; + moment.fn.isoWeeks = moment.fn.isoWeek; + moment.fn.quarters = moment.fn.quarter; - C = V * S; - Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 - X = C * (1 - Math.abs(((H/60) % 2) - 1)); + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; - switch (Hi) { - case 0: R = C; G = X; B = 0; break; - case 1: R = X; G = C; B = 0; break; - case 2: R = 0; G = C; B = X; break; - case 3: R = 0; G = X; B = C; break; - case 4: R = X; G = 0; B = C; break; - case 5: R = C; G = 0; B = X; break; + /************************************ + Duration Prototype + ************************************/ - default: R = 0; G = 0; B = 0; break; - } - return 'RGB(' + parseInt(R*255) + ',' + parseInt(G*255) + ',' + parseInt(B*255) + ')'; - }; + extend(moment.duration.fn = Duration.prototype, { + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years; - /** - * Draw all datapoints as a grid - * This function can be used when the style is 'grid' - */ - Graph3d.prototype._redrawDataGrid = function() { - var canvas = this.frame.canvas, - ctx = canvas.getContext('2d'), - point, right, top, cross, - i, - topSideVisible, fillStyle, strokeStyle, lineWidth, - h, s, v, zAvg; + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; - // calculate the translations and screen position of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); + hours = absRound(minutes / 60); + data.hours = hours % 24; - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + days += absRound(hours / 24); + data.days = days % 30; - // calculate the translation of the point at the bottom (needed for sorting) - var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); - this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; - } + months += absRound(days / 30); + data.months = months % 12; - // sort the points on depth of their (x,y) position (not on z) - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); - - if (this.style === Graph3d.STYLE.SURFACE) { - for (i = 0; i < this.dataPoints.length; i++) { - point = this.dataPoints[i]; - right = this.dataPoints[i].pointRight; - top = this.dataPoints[i].pointTop; - cross = this.dataPoints[i].pointCross; + years = absRound(months / 12); + data.years = years; + }, - if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { + weeks : function () { + return absRound(this.days() / 7); + }, - if (this.showGrayBottom || this.showShadow) { - // calculate the cross product of the two vectors from center - // to left and right, in order to know whether we are looking at the - // bottom or at the top side. We can also use the cross product - // for calculating light intensity - var aDiff = Point3d.subtract(cross.trans, point.trans); - var bDiff = Point3d.subtract(top.trans, right.trans); - var crossproduct = Point3d.crossProduct(aDiff, bDiff); - var len = crossproduct.length(); - // FIXME: there is a bug with determining the surface side (shadow or colored) + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, - topSideVisible = (crossproduct.z > 0); - } - else { - topSideVisible = true; - } + humanize : function (withSuffix) { + var difference = +this, + output = relativeTime(difference, !withSuffix, this.lang()); - if (topSideVisible) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + right.point.z + top.point.z + cross.point.z) / 4; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; - s = 1; // saturation + if (withSuffix) { + output = this.lang().pastFuture(difference, output); + } - if (this.showShadow) { - v = Math.min(1 + (crossproduct.x / len) / 2, 1); // value. TODO: scale - fillStyle = this._hsv2rgb(h, s, v); - strokeStyle = fillStyle; - } - else { - v = 1; - fillStyle = this._hsv2rgb(h, s, v); - strokeStyle = this.colorAxis; - } - } - else { - fillStyle = 'gray'; - strokeStyle = this.colorAxis; - } - lineWidth = 0.5; + return this.lang().postformat(output); + }, - ctx.lineWidth = lineWidth; - ctx.fillStyle = fillStyle; - ctx.strokeStyle = strokeStyle; - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - ctx.lineTo(right.screen.x, right.screen.y); - ctx.lineTo(cross.screen.x, cross.screen.y); - ctx.lineTo(top.screen.x, top.screen.y); - ctx.closePath(); - ctx.fill(); - ctx.stroke(); - } - } - } - else { // grid style - for (i = 0; i < this.dataPoints.length; i++) { - point = this.dataPoints[i]; - right = this.dataPoints[i].pointRight; - top = this.dataPoints[i].pointTop; + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); - if (point !== undefined) { - if (this.showPerspective) { - lineWidth = 2 / -point.trans.z; - } - else { - lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); - } - } + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; - if (point !== undefined && right !== undefined) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + right.point.z) / 2; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + this._bubble(); - ctx.lineWidth = lineWidth; - ctx.strokeStyle = this._hsv2rgb(h, 1, 1); - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - ctx.lineTo(right.screen.x, right.screen.y); - ctx.stroke(); - } + return this; + }, - if (point !== undefined && top !== undefined) { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - zAvg = (point.point.z + top.point.z) / 2; - h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + subtract : function (input, val) { + var dur = moment.duration(input, val); - ctx.lineWidth = lineWidth; - ctx.strokeStyle = this._hsv2rgb(h, 1, 1); - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - ctx.lineTo(top.screen.x, top.screen.y); - ctx.stroke(); - } - } - } - }; + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; + this._bubble(); - /** - * Draw all datapoints as dots. - * This function can be used when the style is 'dot' or 'dot-line' - */ - Graph3d.prototype._redrawDataDot = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - var i; + return this; + }, - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, - // calculate the translations of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + as : function (units) { + units = normalizeUnits(units); + return this['as' + units.charAt(0).toUpperCase() + units.slice(1) + 's'](); + }, - // calculate the distance from the point at the bottom to the camera - var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); - this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; - } + lang : moment.fn.lang, - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + toIsoString : function () { + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var years = Math.abs(this.years()), + months = Math.abs(this.months()), + days = Math.abs(this.days()), + hours = Math.abs(this.hours()), + minutes = Math.abs(this.minutes()), + seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); - // draw the datapoints as colored circles - var dotSize = this.frame.clientWidth * 0.02; // px - for (i = 0; i < this.dataPoints.length; i++) { - var point = this.dataPoints[i]; + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } - if (this.style === Graph3d.STYLE.DOTLINE) { - // draw a vertical line from the bottom to the graph value - //var from = this._convert3Dto2D(new Point3d(point.point.x, point.point.y, this.zMin)); - var from = this._convert3Dto2D(point.bottom); - ctx.lineWidth = 1; - ctx.strokeStyle = this.colorGrid; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(point.screen.x, point.screen.y); - ctx.stroke(); - } + return (this.asSeconds() < 0 ? '-' : '') + + 'P' + + (years ? years + 'Y' : '') + + (months ? months + 'M' : '') + + (days ? days + 'D' : '') + + ((hours || minutes || seconds) ? 'T' : '') + + (hours ? hours + 'H' : '') + + (minutes ? minutes + 'M' : '') + + (seconds ? seconds + 'S' : ''); + } + }); - // calculate radius for the circle - var size; - if (this.style === Graph3d.STYLE.DOTSIZE) { - size = dotSize/2 + 2*dotSize * (point.point.value - this.valueMin) / (this.valueMax - this.valueMin); - } - else { - size = dotSize; + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; } - var radius; - if (this.showPerspective) { - radius = size / -point.trans.z; - } - else { - radius = size * -(this.eye.z / this.camera.getArmLength()); - } - if (radius < 0) { - radius = 0; + function makeDurationAsGetter(name, factor) { + moment.duration.fn['as' + name] = function () { + return +this / factor; + }; } - var hue, color, borderColor; - if (this.style === Graph3d.STYLE.DOTCOLOR ) { - // calculate the color based on the value - hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; - color = this._hsv2rgb(hue, 1, 1); - borderColor = this._hsv2rgb(hue, 1, 0.8); - } - else if (this.style === Graph3d.STYLE.DOTSIZE) { - color = this.colorDot; - borderColor = this.colorDotBorder; - } - else { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; - color = this._hsv2rgb(hue, 1, 1); - borderColor = this._hsv2rgb(hue, 1, 0.8); + for (i in unitMillisecondFactors) { + if (unitMillisecondFactors.hasOwnProperty(i)) { + makeDurationAsGetter(i, unitMillisecondFactors[i]); + makeDurationGetter(i.toLowerCase()); + } } - // draw the circle - ctx.lineWidth = 1.0; - ctx.strokeStyle = borderColor; - ctx.fillStyle = color; - ctx.beginPath(); - ctx.arc(point.screen.x, point.screen.y, radius, 0, Math.PI*2, true); - ctx.fill(); - ctx.stroke(); - } - }; + makeDurationAsGetter('Weeks', 6048e5); + moment.duration.fn.asMonths = function () { + return (+this - this.years() * 31536e6) / 2592e6 + this.years() * 12; + }; - /** - * Draw all datapoints as bars. - * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' - */ - Graph3d.prototype._redrawDataBar = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - var i, j, surface, corners; - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + /************************************ + Default Lang + ************************************/ - // calculate the translations of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; - // calculate the distance from the point at the bottom to the camera - var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); - this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; - } + // Set default language, other languages will inherit from English. + moment.lang('en', { + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + /* EMBED_LANGUAGES */ - // draw the datapoints as bars - var xWidth = this.xBarWidth / 2; - var yWidth = this.yBarWidth / 2; - for (i = 0; i < this.dataPoints.length; i++) { - var point = this.dataPoints[i]; + /************************************ + Exposing Moment + ************************************/ - // determine color - var hue, color, borderColor; - if (this.style === Graph3d.STYLE.BARCOLOR ) { - // calculate the color based on the value - hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; - color = this._hsv2rgb(hue, 1, 1); - borderColor = this._hsv2rgb(hue, 1, 0.8); - } - else if (this.style === Graph3d.STYLE.BARSIZE) { - color = this.colorDot; - borderColor = this.colorDotBorder; - } - else { - // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 - hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; - color = this._hsv2rgb(hue, 1, 1); - borderColor = this._hsv2rgb(hue, 1, 0.8); + function makeGlobal(shouldDeprecate) { + /*global ender:false */ + if (typeof ender !== 'undefined') { + return; + } + oldGlobalMoment = globalScope.moment; + if (shouldDeprecate) { + globalScope.moment = deprecate( + "Accessing Moment through the global scope is " + + "deprecated, and will be removed in an upcoming " + + "release.", + moment); + } else { + globalScope.moment = moment; + } } - // calculate size for the bar - if (this.style === Graph3d.STYLE.BARSIZE) { - xWidth = (this.xBarWidth / 2) * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); - yWidth = (this.yBarWidth / 2) * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); + // CommonJS module is defined + if (hasModule) { + module.exports = moment; + } else if (true) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, module) { + if (module.config && module.config() && module.config().noGlobal === true) { + // release the global variable + globalScope.moment = oldGlobalMoment; + } + + return moment; + }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + makeGlobal(true); + } else { + makeGlobal(); } + }).call(this); + + /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(5)(module))) - // calculate all corner points - var me = this; - var point3d = point.point; - var top = [ - {point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, point3d.z)}, - {point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, point3d.z)}, - {point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, point3d.z)}, - {point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, point3d.z)} - ]; - var bottom = [ - {point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, this.zMin)}, - {point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, this.zMin)}, - {point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, this.zMin)}, - {point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, this.zMin)} - ]; +/***/ }, +/* 4 */ +/***/ function(module, exports, __webpack_require__) { - // calculate screen location of the points - top.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); - bottom.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); + var map = {}; + function webpackContext(req) { + return __webpack_require__(webpackContextResolve(req)); + }; + function webpackContextResolve(req) { + return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }()); + }; + webpackContext.keys = function webpackContextKeys() { + return Object.keys(map); + }; + webpackContext.resolve = webpackContextResolve; + module.exports = webpackContext; - // create five sides, calculate both corner points and center points - var surfaces = [ - {corners: top, center: Point3d.avg(bottom[0].point, bottom[2].point)}, - {corners: [top[0], top[1], bottom[1], bottom[0]], center: Point3d.avg(bottom[1].point, bottom[0].point)}, - {corners: [top[1], top[2], bottom[2], bottom[1]], center: Point3d.avg(bottom[2].point, bottom[1].point)}, - {corners: [top[2], top[3], bottom[3], bottom[2]], center: Point3d.avg(bottom[3].point, bottom[2].point)}, - {corners: [top[3], top[0], bottom[0], bottom[3]], center: Point3d.avg(bottom[0].point, bottom[3].point)} - ]; - point.surfaces = surfaces; - // calculate the distance of each of the surface centers to the camera - for (j = 0; j < surfaces.length; j++) { - surface = surfaces[j]; - var transCenter = this._convertPointToTranslation(surface.center); - surface.dist = this.showPerspective ? transCenter.length() : -transCenter.z; - // TODO: this dept calculation doesn't work 100% of the cases due to perspective, - // but the current solution is fast/simple and works in 99.9% of all cases - // the issue is visible in example 14, with graph.setCameraPosition({horizontal: 2.97, vertical: 0.5, distance: 0.9}) - } +/***/ }, +/* 5 */ +/***/ function(module, exports, __webpack_require__) { - // order the surfaces by their (translated) depth - surfaces.sort(function (a, b) { - var diff = b.dist - a.dist; - if (diff) return diff; + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; + } - // if equal depth, sort the top surface last - if (a.corners === top) return 1; - if (b.corners === top) return -1; - // both are equal - return 0; - }); +/***/ }, +/* 6 */ +/***/ function(module, exports, __webpack_require__) { - // draw the ordered surfaces - ctx.lineWidth = 1; - ctx.strokeStyle = borderColor; - ctx.fillStyle = color; - // NOTE: we start at j=2 instead of j=0 as we don't need to draw the two surfaces at the backside - for (j = 2; j < surfaces.length; j++) { - surface = surfaces[j]; - corners = surface.corners; - ctx.beginPath(); - ctx.moveTo(corners[3].screen.x, corners[3].screen.y); - ctx.lineTo(corners[0].screen.x, corners[0].screen.y); - ctx.lineTo(corners[1].screen.x, corners[1].screen.y); - ctx.lineTo(corners[2].screen.x, corners[2].screen.y); - ctx.lineTo(corners[3].screen.x, corners[3].screen.y); - ctx.fill(); - ctx.stroke(); + // DOM utility methods + + /** + * this prepares the JSON container for allocating SVG elements + * @param JSONcontainer + * @private + */ + exports.prepareElements = function(JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + JSONcontainer[elementType].redundant = JSONcontainer[elementType].used; + JSONcontainer[elementType].used = []; } } }; - /** - * Draw a line through all datapoints. - * This function can be used when the style is 'line' + * this cleans up all the unused SVG elements. By asking for the parentNode, we only need to supply the JSON container from + * which to remove the redundant elements. + * + * @param JSONcontainer + * @private */ - Graph3d.prototype._redrawDataLine = function() { - var canvas = this.frame.canvas, - ctx = canvas.getContext('2d'), - point, i; - - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? - - // calculate the translations of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); - - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; - } - - // start the line - if (this.dataPoints.length > 0) { - point = this.dataPoints[0]; - - ctx.lineWidth = 1; // TODO: make customizable - ctx.strokeStyle = 'blue'; // TODO: make customizable - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); - } - - // draw the datapoints as colored circles - for (i = 1; i < this.dataPoints.length; i++) { - point = this.dataPoints[i]; - ctx.lineTo(point.screen.x, point.screen.y); - } - - // finish the line - if (this.dataPoints.length > 0) { - ctx.stroke(); - } - }; + exports.cleanupElements = function(JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + if (JSONcontainer[elementType].redundant) { + for (var i = 0; i < JSONcontainer[elementType].redundant.length; i++) { + JSONcontainer[elementType].redundant[i].parentNode.removeChild(JSONcontainer[elementType].redundant[i]); + } + JSONcontainer[elementType].redundant = []; + } + } + } + }; /** - * Start a moving operation inside the provided parent element - * @param {Event} event The event that occurred (required for - * retrieving the mouse position) + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param elementType + * @param JSONcontainer + * @param svgContainer + * @returns {*} + * @private */ - Graph3d.prototype._onMouseDown = function(event) { - event = event || window.event; - - // check if mouse is still down (may be up when focus is lost for example - // in an iframe) - if (this.leftButtonDown) { - this._onMouseUp(event); + exports.getSVGElement = function (elementType, JSONcontainer, svgContainer) { + var element; + // allocate SVG element, if it doesnt yet exist, create one. + if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } + else { + // create a new element and add it to the SVG + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + svgContainer.appendChild(element); + } } - - // only react on left mouse button down - this.leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); - if (!this.leftButtonDown && !this.touchDown) return; - - // get mouse position (different code for IE and all other browsers) - this.startMouseX = getMouseX(event); - this.startMouseY = getMouseY(event); - - this.startStart = new Date(this.start); - this.startEnd = new Date(this.end); - this.startArmRotation = this.camera.getArmRotation(); - - this.frame.style.cursor = 'move'; - - // add event listeners to handle moving the contents - // we store the function onmousemove and onmouseup in the graph, so we can - // remove the eventlisteners lateron in the function mouseUp() - var me = this; - this.onmousemove = function (event) {me._onMouseMove(event);}; - this.onmouseup = function (event) {me._onMouseUp(event);}; - util.addEventListener(document, 'mousemove', me.onmousemove); - util.addEventListener(document, 'mouseup', me.onmouseup); - util.preventDefault(event); + else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + JSONcontainer[elementType] = {used: [], redundant: []}; + svgContainer.appendChild(element); + } + JSONcontainer[elementType].used.push(element); + return element; }; /** - * Perform moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {Event} event Well, eehh, the event + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param elementType + * @param JSONcontainer + * @param DOMContainer + * @returns {*} + * @private */ - Graph3d.prototype._onMouseMove = function (event) { - event = event || window.event; - - // calculate change in mouse position - var diffX = parseFloat(getMouseX(event)) - this.startMouseX; - var diffY = parseFloat(getMouseY(event)) - this.startMouseY; - - var horizontalNew = this.startArmRotation.horizontal + diffX / 200; - var verticalNew = this.startArmRotation.vertical + diffY / 200; - - var snapAngle = 4; // degrees - var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); - - // snap horizontally to nice angles at 0pi, 0.5pi, 1pi, 1.5pi, etc... - // the -0.001 is to take care that the vertical axis is always drawn at the left front corner - if (Math.abs(Math.sin(horizontalNew)) < snapValue) { - horizontalNew = Math.round((horizontalNew / Math.PI)) * Math.PI - 0.001; - } - if (Math.abs(Math.cos(horizontalNew)) < snapValue) { - horizontalNew = (Math.round((horizontalNew/ Math.PI - 0.5)) + 0.5) * Math.PI - 0.001; - } - - // snap vertically to nice angles - if (Math.abs(Math.sin(verticalNew)) < snapValue) { - verticalNew = Math.round((verticalNew / Math.PI)) * Math.PI; + exports.getDOMElement = function (elementType, JSONcontainer, DOMContainer) { + var element; + // allocate DOM element, if it doesnt yet exist, create one. + if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } + else { + // create a new element and add it to the SVG + element = document.createElement(elementType); + DOMContainer.appendChild(element); + } } - if (Math.abs(Math.cos(verticalNew)) < snapValue) { - verticalNew = (Math.round((verticalNew/ Math.PI - 0.5)) + 0.5) * Math.PI; + else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElement(elementType); + JSONcontainer[elementType] = {used: [], redundant: []}; + DOMContainer.appendChild(element); } - - this.camera.setArmRotation(horizontalNew, verticalNew); - this.redraw(); - - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); - - util.preventDefault(event); + JSONcontainer[elementType].used.push(element); + return element; }; - /** - * Stop moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {event} event The event - */ - Graph3d.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; - this.leftButtonDown = false; - // remove event listeners here - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); - util.preventDefault(event); - }; /** - * After having moved the mouse, a tooltip should pop up when the mouse is resting on a data point - * @param {Event} event A mouse move event + * draw a point object. this is a seperate function because it can also be called by the legend. + * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions + * as well. + * + * @param x + * @param y + * @param group + * @param JSONcontainer + * @param svgContainer + * @returns {*} */ - Graph3d.prototype._onTooltip = function (event) { - var delay = 300; // ms - var mouseX = getMouseX(event) - util.getAbsoluteLeft(this.frame); - var mouseY = getMouseY(event) - util.getAbsoluteTop(this.frame); - - if (!this.showTooltip) { - return; - } - - if (this.tooltipTimeout) { - clearTimeout(this.tooltipTimeout); - } - - // (delayed) display of a tooltip only if no mouse button is down - if (this.leftButtonDown) { - this._hideTooltip(); - return; - } - - if (this.tooltip && this.tooltip.dataPoint) { - // tooltip is currently visible - var dataPoint = this._dataPointFromXY(mouseX, mouseY); - if (dataPoint !== this.tooltip.dataPoint) { - // datapoint changed - if (dataPoint) { - this._showTooltip(dataPoint); - } - else { - this._hideTooltip(); - } - } + exports.drawPoint = function(x, y, group, JSONcontainer, svgContainer) { + var point; + if (group.options.drawPoints.style == 'circle') { + point = exports.getSVGElement('circle',JSONcontainer,svgContainer); + point.setAttributeNS(null, "cx", x); + point.setAttributeNS(null, "cy", y); + point.setAttributeNS(null, "r", 0.5 * group.options.drawPoints.size); + point.setAttributeNS(null, "class", group.className + " point"); } else { - // tooltip is currently not visible - var me = this; - this.tooltipTimeout = setTimeout(function () { - me.tooltipTimeout = null; - - // show a tooltip if we have a data point - var dataPoint = me._dataPointFromXY(mouseX, mouseY); - if (dataPoint) { - me._showTooltip(dataPoint); - } - }, delay); + point = exports.getSVGElement('rect',JSONcontainer,svgContainer); + point.setAttributeNS(null, "x", x - 0.5*group.options.drawPoints.size); + point.setAttributeNS(null, "y", y - 0.5*group.options.drawPoints.size); + point.setAttributeNS(null, "width", group.options.drawPoints.size); + point.setAttributeNS(null, "height", group.options.drawPoints.size); + point.setAttributeNS(null, "class", group.className + " point"); } + return point; }; /** - * Event handler for touchstart event on mobile devices + * draw a bar SVG element centered on the X coordinate + * + * @param x + * @param y + * @param className */ - Graph3d.prototype._onTouchStart = function(event) { - this.touchDown = true; - - var me = this; - this.ontouchmove = function (event) {me._onTouchMove(event);}; - this.ontouchend = function (event) {me._onTouchEnd(event);}; - util.addEventListener(document, 'touchmove', me.ontouchmove); - util.addEventListener(document, 'touchend', me.ontouchend); - - this._onMouseDown(event); - }; - - /** - * Event handler for touchmove event on mobile devices - */ - Graph3d.prototype._onTouchMove = function(event) { - this._onMouseMove(event); + exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer) { + // if (height != 0) { + var rect = exports.getSVGElement('rect',JSONcontainer, svgContainer); + rect.setAttributeNS(null, "x", x - 0.5 * width); + rect.setAttributeNS(null, "y", y); + rect.setAttributeNS(null, "width", width); + rect.setAttributeNS(null, "height", height); + rect.setAttributeNS(null, "class", className); + // } }; - /** - * Event handler for touchend event on mobile devices - */ - Graph3d.prototype._onTouchEnd = function(event) { - this.touchDown = false; - - util.removeEventListener(document, 'touchmove', this.ontouchmove); - util.removeEventListener(document, 'touchend', this.ontouchend); - - this._onMouseUp(event); - }; +/***/ }, +/* 7 */ +/***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(1); /** - * Event handler for mouse wheel event, used to zoom the graph - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {event} event The event + * DataSet + * + * Usage: + * var dataSet = new DataSet({ + * fieldId: '_id', + * type: { + * // ... + * } + * }); + * + * dataSet.add(item); + * dataSet.add(data); + * dataSet.update(item); + * dataSet.update(data); + * dataSet.remove(id); + * dataSet.remove(ids); + * var data = dataSet.get(); + * var data = dataSet.get(id); + * var data = dataSet.get(ids); + * var data = dataSet.get(ids, options, data); + * dataSet.clear(); + * + * A data set can: + * - add/remove/update data + * - gives triggers upon changes in the data + * - can import/export data in various data formats + * + * @param {Array | DataTable} [data] Optional array with initial data + * @param {Object} [options] Available options: + * {String} fieldId Field name of the id in the + * items, 'id' by default. + * {Object. 0 ? 1 : x < 0 ? -1 : 0; + DataSet.prototype.on = function(event, callback) { + var subscribers = this._subscribers[event]; + if (!subscribers) { + subscribers = []; + this._subscribers[event] = subscribers; } - var as = sign((b.x - a.x) * (point.y - a.y) - (b.y - a.y) * (point.x - a.x)); - var bs = sign((c.x - b.x) * (point.y - b.y) - (c.y - b.y) * (point.x - b.x)); - var cs = sign((a.x - c.x) * (point.y - c.y) - (a.y - c.y) * (point.x - c.x)); + subscribers.push({ + callback: callback + }); + }; - // each of the three signs must be either equal to each other or zero - return (as == 0 || bs == 0 || as == bs) && - (bs == 0 || cs == 0 || bs == cs) && - (as == 0 || cs == 0 || as == cs); + // TODO: make this function deprecated (replaced with `on` since version 0.5) + DataSet.prototype.subscribe = DataSet.prototype.on; + + /** + * Unsubscribe from an event, remove an event listener + * @param {String} event + * @param {function} callback + */ + DataSet.prototype.off = function(event, callback) { + var subscribers = this._subscribers[event]; + if (subscribers) { + this._subscribers[event] = subscribers.filter(function (listener) { + return (listener.callback != callback); + }); + } }; + // TODO: make this function deprecated (replaced with `on` since version 0.5) + DataSet.prototype.unsubscribe = DataSet.prototype.off; + /** - * Find a data point close to given screen position (x, y) - * @param {Number} x - * @param {Number} y - * @return {Object | null} The closest data point or null if not close to any data point + * Trigger an event + * @param {String} event + * @param {Object | null} params + * @param {String} [senderId] Optional id of the sender. * @private */ - Graph3d.prototype._dataPointFromXY = function (x, y) { - var i, - distMax = 100, // px - dataPoint = null, - closestDataPoint = null, - closestDist = null, - center = new Point2d(x, y); + DataSet.prototype._trigger = function (event, params, senderId) { + if (event == '*') { + throw new Error('Cannot trigger event *'); + } - if (this.style === Graph3d.STYLE.BAR || - this.style === Graph3d.STYLE.BARCOLOR || - this.style === Graph3d.STYLE.BARSIZE) { - // the data points are ordered from far away to closest - for (i = this.dataPoints.length - 1; i >= 0; i--) { - dataPoint = this.dataPoints[i]; - var surfaces = dataPoint.surfaces; - if (surfaces) { - for (var s = surfaces.length - 1; s >= 0; s--) { - // split each surface in two triangles, and see if the center point is inside one of these - var surface = surfaces[s]; - var corners = surface.corners; - var triangle1 = [corners[0].screen, corners[1].screen, corners[2].screen]; - var triangle2 = [corners[2].screen, corners[3].screen, corners[0].screen]; - if (this._insideTriangle(center, triangle1) || - this._insideTriangle(center, triangle2)) { - // return immediately at the first hit - return dataPoint; - } - } - } - } + var subscribers = []; + if (event in this._subscribers) { + subscribers = subscribers.concat(this._subscribers[event]); + } + if ('*' in this._subscribers) { + subscribers = subscribers.concat(this._subscribers['*']); } - else { - // find the closest data point, using distance to the center of the point on 2d screen - for (i = 0; i < this.dataPoints.length; i++) { - dataPoint = this.dataPoints[i]; - var point = dataPoint.screen; - if (point) { - var distX = Math.abs(x - point.x); - var distY = Math.abs(y - point.y); - var dist = Math.sqrt(distX * distX + distY * distY); - if ((closestDist === null || dist < closestDist) && dist < distMax) { - closestDist = dist; - closestDataPoint = dataPoint; - } - } + for (var i = 0; i < subscribers.length; i++) { + var subscriber = subscribers[i]; + if (subscriber.callback) { + subscriber.callback(event, params, senderId || null); } } - - - return closestDataPoint; }; /** - * Display a tooltip for given data point - * @param {Object} dataPoint - * @private + * Add data. + * Adding an item will fail when there already is an item with the same id. + * @param {Object | Array | DataTable} data + * @param {String} [senderId] Optional sender id + * @return {Array} addedIds Array with the ids of the added items */ - Graph3d.prototype._showTooltip = function (dataPoint) { - var content, line, dot; - - if (!this.tooltip) { - content = document.createElement('div'); - content.style.position = 'absolute'; - content.style.padding = '10px'; - content.style.border = '1px solid #4d4d4d'; - content.style.color = '#1a1a1a'; - content.style.background = 'rgba(255,255,255,0.7)'; - content.style.borderRadius = '2px'; - content.style.boxShadow = '5px 5px 10px rgba(128,128,128,0.5)'; - - line = document.createElement('div'); - line.style.position = 'absolute'; - line.style.height = '40px'; - line.style.width = '0'; - line.style.borderLeft = '1px solid #4d4d4d'; - - dot = document.createElement('div'); - dot.style.position = 'absolute'; - dot.style.height = '0'; - dot.style.width = '0'; - dot.style.border = '5px solid #4d4d4d'; - dot.style.borderRadius = '5px'; + DataSet.prototype.add = function (data, senderId) { + var addedIds = [], + id, + me = this; - this.tooltip = { - dataPoint: null, - dom: { - content: content, - line: line, - dot: dot - } - }; - } - else { - content = this.tooltip.dom.content; - line = this.tooltip.dom.line; - dot = this.tooltip.dom.dot; + if (Array.isArray(data)) { + // Array + for (var i = 0, len = data.length; i < len; i++) { + id = me._addItem(data[i]); + addedIds.push(id); + } } + else if (util.isDataTable(data)) { + // Google DataTable + var columns = this._getColumnNames(data); + for (var row = 0, rows = data.getNumberOfRows(); row < rows; row++) { + var item = {}; + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + item[field] = data.getValue(row, col); + } - this._hideTooltip(); - - this.tooltip.dataPoint = dataPoint; - if (typeof this.showTooltip === 'function') { - content.innerHTML = this.showTooltip(dataPoint.point); + id = me._addItem(item); + addedIds.push(id); + } + } + else if (data instanceof Object) { + // Single item + id = me._addItem(data); + addedIds.push(id); } else { - content.innerHTML = '' + - '' + - '' + - '' + - '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; + throw new Error('Unknown dataType'); } - content.style.left = '0'; - content.style.top = '0'; - this.frame.appendChild(content); - this.frame.appendChild(line); - this.frame.appendChild(dot); - - // calculate sizes - var contentWidth = content.offsetWidth; - var contentHeight = content.offsetHeight; - var lineHeight = line.offsetHeight; - var dotWidth = dot.offsetWidth; - var dotHeight = dot.offsetHeight; - - var left = dataPoint.screen.x - contentWidth / 2; - left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); + if (addedIds.length) { + this._trigger('add', {items: addedIds}, senderId); + } - line.style.left = dataPoint.screen.x + 'px'; - line.style.top = (dataPoint.screen.y - lineHeight) + 'px'; - content.style.left = left + 'px'; - content.style.top = (dataPoint.screen.y - lineHeight - contentHeight) + 'px'; - dot.style.left = (dataPoint.screen.x - dotWidth / 2) + 'px'; - dot.style.top = (dataPoint.screen.y - dotHeight / 2) + 'px'; + return addedIds; }; /** - * Hide the tooltip when displayed - * @private + * Update existing items. When an item does not exist, it will be created + * @param {Object | Array | DataTable} data + * @param {String} [senderId] Optional sender id + * @return {Array} updatedIds The ids of the added or updated items */ - Graph3d.prototype._hideTooltip = function () { - if (this.tooltip) { - this.tooltip.dataPoint = null; + DataSet.prototype.update = function (data, senderId) { + var addedIds = [], + updatedIds = [], + me = this, + fieldId = me._fieldId; - for (var prop in this.tooltip.dom) { - if (this.tooltip.dom.hasOwnProperty(prop)) { - var elem = this.tooltip.dom[prop]; - if (elem && elem.parentNode) { - elem.parentNode.removeChild(elem); - } - } + var addOrUpdate = function (item) { + var id = item[fieldId]; + if (me._data[id]) { + // update item + id = me._updateItem(item); + updatedIds.push(id); + } + else { + // add new item + id = me._addItem(item); + addedIds.push(id); + } + }; + + if (Array.isArray(data)) { + // Array + for (var i = 0, len = data.length; i < len; i++) { + addOrUpdate(data[i]); } } - }; + else if (util.isDataTable(data)) { + // Google DataTable + var columns = this._getColumnNames(data); + for (var row = 0, rows = data.getNumberOfRows(); row < rows; row++) { + var item = {}; + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + item[field] = data.getValue(row, col); + } - /**--------------------------------------------------------------------------**/ + addOrUpdate(item); + } + } + else if (data instanceof Object) { + // Single item + addOrUpdate(data); + } + else { + throw new Error('Unknown dataType'); + } + if (addedIds.length) { + this._trigger('add', {items: addedIds}, senderId); + } + if (updatedIds.length) { + this._trigger('update', {items: updatedIds}, senderId); + } - /** - * Get the horizontal mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse x - */ - getMouseX = function(event) { - if ('clientX' in event) return event.clientX; - return event.targetTouches[0] && event.targetTouches[0].clientX || 0; + return addedIds.concat(updatedIds); }; /** - * Get the vertical mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse y + * Get a data item or multiple items. + * + * Usage: + * + * get() + * get(options: Object) + * get(options: Object, data: Array | DataTable) + * + * get(id: Number | String) + * get(id: Number | String, options: Object) + * get(id: Number | String, options: Object, data: Array | DataTable) + * + * get(ids: Number[] | String[]) + * get(ids: Number[] | String[], options: Object) + * get(ids: Number[] | String[], options: Object, data: Array | DataTable) + * + * Where: + * + * {Number | String} id The id of an item + * {Number[] | String{}} ids An array with ids of items + * {Object} options An Object with options. Available options: + * {String} [returnType] Type of data to be + * returned. Can be 'DataTable' or 'Array' (default) + * {Object.} [type] + * {String[]} [fields] field names to be returned + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * {Array | DataTable} [data] If provided, items will be appended to this + * array or table. Required in case of Google + * DataTable. + * + * @throws Error */ - getMouseY = function(event) { - if ('clientY' in event) return event.clientY; - return event.targetTouches[0] && event.targetTouches[0].clientY || 0; - }; - - module.exports = Graph3d; - + DataSet.prototype.get = function (args) { + var me = this; -/***/ }, -/* 6 */ -/***/ function(module, exports, __webpack_require__) { + // parse the arguments + var id, ids, options, data; + var firstType = util.getType(arguments[0]); + if (firstType == 'String' || firstType == 'Number') { + // get(id [, options] [, data]) + id = arguments[0]; + options = arguments[1]; + data = arguments[2]; + } + else if (firstType == 'Array') { + // get(ids [, options] [, data]) + ids = arguments[0]; + options = arguments[1]; + data = arguments[2]; + } + else { + // get([, options] [, data]) + options = arguments[0]; + data = arguments[1]; + } - var Point3d = __webpack_require__(9); + // determine the return type + var returnType; + if (options && options.returnType) { + var allowedValues = ["DataTable", "Array", "Object"]; + returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; - /** - * @class Camera - * The camera is mounted on a (virtual) camera arm. The camera arm can rotate - * The camera is always looking in the direction of the origin of the arm. - * This way, the camera always rotates around one fixed point, the location - * of the camera arm. - * - * Documentation: - * http://en.wikipedia.org/wiki/3D_projection - */ - Camera = function () { - this.armLocation = new Point3d(); - this.armRotation = {}; - this.armRotation.horizontal = 0; - this.armRotation.vertical = 0; - this.armLength = 1.7; - - this.cameraLocation = new Point3d(); - this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); - - this.calculateCameraOrientation(); - }; + if (data && (returnType != util.getType(data))) { + throw new Error('Type of parameter "data" (' + util.getType(data) + ') ' + + 'does not correspond with specified options.type (' + options.type + ')'); + } + if (returnType == 'DataTable' && !util.isDataTable(data)) { + throw new Error('Parameter "data" must be a DataTable ' + + 'when options.type is "DataTable"'); + } + } + else if (data) { + returnType = (util.getType(data) == 'DataTable') ? 'DataTable' : 'Array'; + } + else { + returnType = 'Array'; + } - /** - * Set the location (origin) of the arm - * @param {Number} x Normalized value of x - * @param {Number} y Normalized value of y - * @param {Number} z Normalized value of z - */ - Camera.prototype.setArmLocation = function(x, y, z) { - this.armLocation.x = x; - this.armLocation.y = y; - this.armLocation.z = z; + // build options + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = [], item, itemId, i, len; - this.calculateCameraOrientation(); - }; + // convert items + if (id != undefined) { + // return a single item + item = me._getItem(id, type); + if (filter && !filter(item)) { + item = null; + } + } + else if (ids != undefined) { + // return a subset of items + for (i = 0, len = ids.length; i < len; i++) { + item = me._getItem(ids[i], type); + if (!filter || filter(item)) { + items.push(item); + } + } + } + else { + // return all items + for (itemId in this._data) { + if (this._data.hasOwnProperty(itemId)) { + item = me._getItem(itemId, type); + if (!filter || filter(item)) { + items.push(item); + } + } + } + } - /** - * Set the rotation of the camera arm - * @param {Number} horizontal The horizontal rotation, between 0 and 2*PI. - * Optional, can be left undefined. - * @param {Number} vertical The vertical rotation, between 0 and 0.5*PI - * if vertical=0.5*PI, the graph is shown from the - * top. Optional, can be left undefined. - */ - Camera.prototype.setArmRotation = function(horizontal, vertical) { - if (horizontal !== undefined) { - this.armRotation.horizontal = horizontal; + // order the results + if (options && options.order && id == undefined) { + this._sort(items, options.order); } - if (vertical !== undefined) { - this.armRotation.vertical = vertical; - if (this.armRotation.vertical < 0) this.armRotation.vertical = 0; - if (this.armRotation.vertical > 0.5*Math.PI) this.armRotation.vertical = 0.5*Math.PI; + // filter fields of the items + if (options && options.fields) { + var fields = options.fields; + if (id != undefined) { + item = this._filterFields(item, fields); + } + else { + for (i = 0, len = items.length; i < len; i++) { + items[i] = this._filterFields(items[i], fields); + } + } } - if (horizontal !== undefined || vertical !== undefined) { - this.calculateCameraOrientation(); + // return the results + if (returnType == 'DataTable') { + var columns = this._getColumnNames(data); + if (id != undefined) { + // append a single item to the data table + me._appendRow(data, columns, item); + } + else { + // copy the items to the provided data table + for (i = 0; i < items.length; i++) { + me._appendRow(data, columns, items[i]); + } + } + return data; + } + else if (returnType == "Object") { + var result = {}; + for (i = 0; i < items.length; i++) { + result[items[i].id] = items[i]; + } + return result; + } + else { + // return an array + if (id != undefined) { + // a single item + return item; + } + else { + // multiple items + if (data) { + // copy the items to the provided array + for (i = 0, len = items.length; i < len; i++) { + data.push(items[i]); + } + return data; + } + else { + // just return our array + return items; + } + } } }; /** - * Retrieve the current arm rotation - * @return {object} An object with parameters horizontal and vertical + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids */ - Camera.prototype.getArmRotation = function() { - var rot = {}; - rot.horizontal = this.armRotation.horizontal; - rot.vertical = this.armRotation.vertical; + DataSet.prototype.getIds = function (options) { + var data = this._data, + filter = options && options.filter, + order = options && options.order, + type = options && options.type || this._options.type, + i, + len, + id, + item, + items, + ids = []; - return rot; - }; + if (filter) { + // get filtered items + if (order) { + // create ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + items.push(item); + } + } + } - /** - * Set the (normalized) length of the camera arm. - * @param {Number} length A length between 0.71 and 5.0 - */ - Camera.prototype.setArmLength = function(length) { - if (length === undefined) - return; + this._sort(items, order); - this.armLength = length; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } + } + else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + ids.push(item[this._fieldId]); + } + } + } + } + } + else { + // get all items + if (order) { + // create an ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + items.push(data[id]); + } + } - // Radius must be larger than the corner of the graph, - // which has a distance of sqrt(0.5^2+0.5^2) = 0.71 from the center of the - // graph - if (this.armLength < 0.71) this.armLength = 0.71; - if (this.armLength > 5.0) this.armLength = 5.0; + this._sort(items, order); - this.calculateCameraOrientation(); - }; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } + } + else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = data[id]; + ids.push(item[this._fieldId]); + } + } + } + } - /** - * Retrieve the arm length - * @return {Number} length - */ - Camera.prototype.getArmLength = function() { - return this.armLength; + return ids; }; /** - * Retrieve the camera location - * @return {Point3d} cameraLocation + * Returns the DataSet itself. Is overwritten for example by the DataView, + * which returns the DataSet it is connected to instead. */ - Camera.prototype.getCameraLocation = function() { - return this.cameraLocation; + DataSet.prototype.getDataSet = function () { + return this; }; /** - * Retrieve the camera rotation - * @return {Point3d} cameraRotation + * Execute a callback function for every item in the dataset. + * @param {function} callback + * @param {Object} [options] Available options: + * {Object.} [type] + * {String[]} [fields] filter fields + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. */ - Camera.prototype.getCameraRotation = function() { - return this.cameraRotation; + DataSet.prototype.forEach = function (callback, options) { + var filter = options && options.filter, + type = options && options.type || this._options.type, + data = this._data, + item, + id; + + if (options && options.order) { + // execute forEach on ordered list + var items = this.get(options); + + for (var i = 0, len = items.length; i < len; i++) { + item = items[i]; + id = item[this._fieldId]; + callback(item, id); + } + } + else { + // unordered + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + callback(item, id); + } + } + } + } }; /** - * Calculate the location and rotation of the camera based on the - * position and orientation of the camera arm + * Map every item in the dataset. + * @param {function} callback + * @param {Object} [options] Available options: + * {Object.} [type] + * {String[]} [fields] filter fields + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Object[]} mappedItems */ - Camera.prototype.calculateCameraOrientation = function() { - // calculate location of the camera - this.cameraLocation.x = this.armLocation.x - this.armLength * Math.sin(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); - this.cameraLocation.y = this.armLocation.y - this.armLength * Math.cos(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); - this.cameraLocation.z = this.armLocation.z + this.armLength * Math.sin(this.armRotation.vertical); - - // calculate rotation of the camera - this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; - this.cameraRotation.y = 0; - this.cameraRotation.z = -this.armRotation.horizontal; - }; + DataSet.prototype.map = function (callback, options) { + var filter = options && options.filter, + type = options && options.type || this._options.type, + mappedItems = [], + data = this._data, + item; - module.exports = Camera; + // convert and filter items + for (var id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + mappedItems.push(callback(item, id)); + } + } + } -/***/ }, -/* 7 */ -/***/ function(module, exports, __webpack_require__) { + // order items + if (options && options.order) { + this._sort(mappedItems, options.order); + } - var DataView = __webpack_require__(4); + return mappedItems; + }; /** - * @class Filter - * - * @param {DataSet} data The google data table - * @param {Number} column The index of the column to be filtered - * @param {Graph} graph The graph + * Filter the fields of an item + * @param {Object} item + * @param {String[]} fields Field names + * @return {Object} filteredItem + * @private */ - function Filter (data, column, graph) { - this.data = data; - this.column = column; - this.graph = graph; // the parent graph - - this.index = undefined; - this.value = undefined; - - // read all distinct values and select the first one - this.values = graph.getDistinctValues(data.get(), this.column); - - // sort both numeric and string values correctly - this.values.sort(function (a, b) { - return a > b ? 1 : a < b ? -1 : 0; - }); + DataSet.prototype._filterFields = function (item, fields) { + var filteredItem = {}; - if (this.values.length > 0) { - this.selectValue(0); + for (var field in item) { + if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { + filteredItem[field] = item[field]; + } } - // create an array with the filtered datapoints. this will be loaded afterwards - this.dataPoints = []; - - this.loaded = false; - this.onLoadCallback = undefined; + return filteredItem; + }; - if (graph.animationPreload) { - this.loaded = false; - this.loadInBackground(); + /** + * Sort the provided array with items + * @param {Object[]} items + * @param {String | function} order A field name or custom sort function. + * @private + */ + DataSet.prototype._sort = function (items, order) { + if (util.isString(order)) { + // order by provided field name + var name = order; // field name + items.sort(function (a, b) { + var av = a[name]; + var bv = b[name]; + return (av > bv) ? 1 : ((av < bv) ? -1 : 0); + }); } + else if (typeof order === 'function') { + // order by sort function + items.sort(order); + } + // TODO: extend order by an Object {field:String, direction:String} + // where direction can be 'asc' or 'desc' else { - this.loaded = true; + throw new TypeError('Order must be a function or a string'); } }; - /** - * Return the label - * @return {string} label + * Remove an object by pointer or by id + * @param {String | Number | Object | Array} id Object or id, or an array with + * objects or ids to be removed + * @param {String} [senderId] Optional sender id + * @return {Array} removedIds */ - Filter.prototype.isLoaded = function() { - return this.loaded; - }; - + DataSet.prototype.remove = function (id, senderId) { + var removedIds = [], + i, len, removedId; - /** - * Return the loaded progress - * @return {Number} percentage between 0 and 100 - */ - Filter.prototype.getLoadedProgress = function() { - var len = this.values.length; + if (Array.isArray(id)) { + for (i = 0, len = id.length; i < len; i++) { + removedId = this._remove(id[i]); + if (removedId != null) { + removedIds.push(removedId); + } + } + } + else { + removedId = this._remove(id); + if (removedId != null) { + removedIds.push(removedId); + } + } - var i = 0; - while (this.dataPoints[i]) { - i++; + if (removedIds.length) { + this._trigger('remove', {items: removedIds}, senderId); } - return Math.round(i / len * 100); + return removedIds; }; - /** - * Return the label - * @return {string} label + * Remove an item by its id + * @param {Number | String | Object} id id or item + * @returns {Number | String | null} id + * @private */ - Filter.prototype.getLabel = function() { - return this.graph.filterLabel; + DataSet.prototype._remove = function (id) { + if (util.isNumber(id) || util.isString(id)) { + if (this._data[id]) { + delete this._data[id]; + return id; + } + } + else if (id instanceof Object) { + var itemId = id[this._fieldId]; + if (itemId && this._data[itemId]) { + delete this._data[itemId]; + return itemId; + } + } + return null; }; - /** - * Return the columnIndex of the filter - * @return {Number} columnIndex + * Clear the data + * @param {String} [senderId] Optional sender id + * @return {Array} removedIds The ids of all removed items */ - Filter.prototype.getColumn = function() { - return this.column; - }; + DataSet.prototype.clear = function (senderId) { + var ids = Object.keys(this._data); - /** - * Return the currently selected value. Returns undefined if there is no selection - * @return {*} value - */ - Filter.prototype.getSelectedValue = function() { - if (this.index === undefined) - return undefined; + this._data = {}; - return this.values[this.index]; - }; + this._trigger('remove', {items: ids}, senderId); - /** - * Retrieve all values of the filter - * @return {Array} values - */ - Filter.prototype.getValues = function() { - return this.values; + return ids; }; /** - * Retrieve one value of the filter - * @param {Number} index - * @return {*} value + * Find the item with maximum value of a specified field + * @param {String} field + * @return {Object | null} item Item containing max value, or null if no items */ - Filter.prototype.getValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + DataSet.prototype.max = function (field) { + var data = this._data, + max = null, + maxField = null; - return this.values[index]; - }; + for (var id in data) { + if (data.hasOwnProperty(id)) { + var item = data[id]; + var itemField = item[field]; + if (itemField != null && (!max || itemField > maxField)) { + max = item; + maxField = itemField; + } + } + } + return max; + }; /** - * Retrieve the (filtered) dataPoints for the currently selected filter index - * @param {Number} [index] (optional) - * @return {Array} dataPoints + * Find the item with minimum value of a specified field + * @param {String} field + * @return {Object | null} item Item containing max value, or null if no items */ - Filter.prototype._getDataPoints = function(index) { - if (index === undefined) - index = this.index; - - if (index === undefined) - return []; + DataSet.prototype.min = function (field) { + var data = this._data, + min = null, + minField = null; - var dataPoints; - if (this.dataPoints[index]) { - dataPoints = this.dataPoints[index]; + for (var id in data) { + if (data.hasOwnProperty(id)) { + var item = data[id]; + var itemField = item[field]; + if (itemField != null && (!min || itemField < minField)) { + min = item; + minField = itemField; + } + } } - else { - var f = {}; - f.column = this.column; - f.value = this.values[index]; - var dataView = new DataView(this.data,{filter: function (item) {return (item[f.column] == f.value);}}).get(); - dataPoints = this.graph._getDataPoints(dataView); + return min; + }; - this.dataPoints[index] = dataPoints; - } + /** + * Find all distinct values of a specified field + * @param {String} field + * @return {Array} values Array containing all distinct values. If data items + * do not contain the specified field are ignored. + * The returned array is unordered. + */ + DataSet.prototype.distinct = function (field) { + var data = this._data; + var values = []; + var fieldType = this._options.type && this._options.type[field] || null; + var count = 0; + var i; - return dataPoints; - }; + for (var prop in data) { + if (data.hasOwnProperty(prop)) { + var item = data[prop]; + var value = item[field]; + var exists = false; + for (i = 0; i < count; i++) { + if (values[i] == value) { + exists = true; + break; + } + } + if (!exists && (value !== undefined)) { + values[count] = value; + count++; + } + } + } + if (fieldType) { + for (i = 0; i < values.length; i++) { + values[i] = util.convert(values[i], fieldType); + } + } + return values; + }; /** - * Set a callback function when the filter is fully loaded. + * Add a single item. Will fail when an item with the same id already exists. + * @param {Object} item + * @return {String} id + * @private */ - Filter.prototype.setOnLoadCallback = function(callback) { - this.onLoadCallback = callback; - }; + DataSet.prototype._addItem = function (item) { + var id = item[this._fieldId]; + if (id != undefined) { + // check whether this id is already taken + if (this._data[id]) { + // item already exists + throw new Error('Cannot add item: item with id ' + id + ' already exists'); + } + } + else { + // generate an id + id = util.randomUUID(); + item[this._fieldId] = id; + } - /** - * Add a value to the list with available values for this filter - * No double entries will be created. - * @param {Number} index - */ - Filter.prototype.selectValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + var d = {}; + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); + } + } + this._data[id] = d; - this.index = index; - this.value = this.values[index]; + return id; }; /** - * Load all filtered rows in the background one by one - * Start this method without providing an index! + * Get an item. Fields can be converted to a specific type + * @param {String} id + * @param {Object.} [types] field types to convert + * @return {Object | null} item + * @private */ - Filter.prototype.loadInBackground = function(index) { - if (index === undefined) - index = 0; - - var frame = this.graph.frame; + DataSet.prototype._getItem = function (id, types) { + var field, value; - if (index < this.values.length) { - var dataPointsTemp = this._getDataPoints(index); - //this.graph.redrawInfo(); // TODO: not neat + // get the item from the dataset + var raw = this._data[id]; + if (!raw) { + return null; + } - // create a progress box - if (frame.progress === undefined) { - frame.progress = document.createElement('DIV'); - frame.progress.style.position = 'absolute'; - frame.progress.style.color = 'gray'; - frame.appendChild(frame.progress); + // convert the items field types + var converted = {}; + if (types) { + for (field in raw) { + if (raw.hasOwnProperty(field)) { + value = raw[field]; + converted[field] = util.convert(value, types[field]); + } } - var progress = this.getLoadedProgress(); - frame.progress.innerHTML = 'Loading animation... ' + progress + '%'; - // TODO: this is no nice solution... - frame.progress.style.bottom = 60 + 'px'; // TODO: use height of slider - frame.progress.style.left = 10 + 'px'; - - var me = this; - setTimeout(function() {me.loadInBackground(index+1);}, 10); - this.loaded = false; } else { - this.loaded = true; - - // remove the progress box - if (frame.progress !== undefined) { - frame.removeChild(frame.progress); - frame.progress = undefined; + // no field types specified, no converting needed + for (field in raw) { + if (raw.hasOwnProperty(field)) { + value = raw[field]; + converted[field] = value; + } } - - if (this.onLoadCallback) - this.onLoadCallback(); } + return converted; }; - module.exports = Filter; + /** + * Update a single item: merge with existing item. + * Will fail when the item has no id, or when there does not exist an item + * with the same id. + * @param {Object} item + * @return {String} id + * @private + */ + DataSet.prototype._updateItem = function (item) { + var id = item[this._fieldId]; + if (id == undefined) { + throw new Error('Cannot update item: item has no id (item: ' + JSON.stringify(item) + ')'); + } + var d = this._data[id]; + if (!d) { + // item doesn't exist + throw new Error('Cannot update item: no item with id ' + id + ' found'); + } + // merge with current item + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); + } + } -/***/ }, -/* 8 */ -/***/ function(module, exports, __webpack_require__) { + return id; + }; /** - * @prototype Point2d - * @param {Number} [x] - * @param {Number} [y] + * Get an array with the column names of a Google DataTable + * @param {DataTable} dataTable + * @return {String[]} columnNames + * @private */ - Point2d = function (x, y) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - }; - - module.exports = Point2d; - - -/***/ }, -/* 9 */ -/***/ function(module, exports, __webpack_require__) { - - /** - * @prototype Point3d - * @param {Number} [x] - * @param {Number} [y] - * @param {Number} [z] - */ - function Point3d(x, y, z) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - this.z = z !== undefined ? z : 0; - }; - - /** - * Subtract the two provided points, returns a-b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a-b - */ - Point3d.subtract = function(a, b) { - var sub = new Point3d(); - sub.x = a.x - b.x; - sub.y = a.y - b.y; - sub.z = a.z - b.z; - return sub; - }; - - /** - * Add the two provided points, returns a+b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a+b - */ - Point3d.add = function(a, b) { - var sum = new Point3d(); - sum.x = a.x + b.x; - sum.y = a.y + b.y; - sum.z = a.z + b.z; - return sum; - }; - - /** - * Calculate the average of two 3d points - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} The average, (a+b)/2 - */ - Point3d.avg = function(a, b) { - return new Point3d( - (a.x + b.x) / 2, - (a.y + b.y) / 2, - (a.z + b.z) / 2 - ); + DataSet.prototype._getColumnNames = function (dataTable) { + var columns = []; + for (var col = 0, cols = dataTable.getNumberOfColumns(); col < cols; col++) { + columns[col] = dataTable.getColumnId(col) || dataTable.getColumnLabel(col); + } + return columns; }; /** - * Calculate the cross product of the two provided points, returns axb - * Documentation: http://en.wikipedia.org/wiki/Cross_product - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} cross product axb + * Append an item as a row to the dataTable + * @param dataTable + * @param columns + * @param item + * @private */ - Point3d.crossProduct = function(a, b) { - var crossproduct = new Point3d(); - - crossproduct.x = a.y * b.z - a.z * b.y; - crossproduct.y = a.z * b.x - a.x * b.z; - crossproduct.z = a.x * b.y - a.y * b.x; - - return crossproduct; - }; - + DataSet.prototype._appendRow = function (dataTable, columns, item) { + var row = dataTable.addRow(); - /** - * Rtrieve the length of the vector (or the distance from this point to the origin - * @return {Number} length - */ - Point3d.prototype.length = function() { - return Math.sqrt( - this.x * this.x + - this.y * this.y + - this.z * this.z - ); + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + dataTable.setValue(row, col, item[field]); + } }; - module.exports = Point3d; + module.exports = DataSet; /***/ }, -/* 10 */ +/* 8 */ /***/ function(module, exports, __webpack_require__) { var util = __webpack_require__(1); + var DataSet = __webpack_require__(7); /** - * @constructor Slider + * DataView * - * An html slider control with start/stop/prev/next buttons - * @param {Element} container The element where the slider will be created - * @param {Object} options Available options: - * {boolean} visible If true (default) the - * slider is visible. + * a dataview offers a filtered view on a dataset or an other dataview. + * + * @param {DataSet | DataView} data + * @param {Object} [options] Available options: see method get + * + * @constructor DataView */ - function Slider(container, options) { - if (container === undefined) { - throw 'Error: No container element defined'; - } - this.container = container; - this.visible = (options && options.visible != undefined) ? options.visible : true; - - if (this.visible) { - this.frame = document.createElement('DIV'); - //this.frame.style.backgroundColor = '#E5E5E5'; - this.frame.style.width = '100%'; - this.frame.style.position = 'relative'; - this.container.appendChild(this.frame); + function DataView (data, options) { + this._data = null; + this._ids = {}; // ids of the items currently in memory (just contains a boolean true) + this._options = options || {}; + this._fieldId = 'id'; // name of the field containing id + this._subscribers = {}; // event subscribers - this.frame.prev = document.createElement('INPUT'); - this.frame.prev.type = 'BUTTON'; - this.frame.prev.value = 'Prev'; - this.frame.appendChild(this.frame.prev); + var me = this; + this.listener = function () { + me._onEvent.apply(me, arguments); + }; - this.frame.play = document.createElement('INPUT'); - this.frame.play.type = 'BUTTON'; - this.frame.play.value = 'Play'; - this.frame.appendChild(this.frame.play); + this.setData(data); + } - this.frame.next = document.createElement('INPUT'); - this.frame.next.type = 'BUTTON'; - this.frame.next.value = 'Next'; - this.frame.appendChild(this.frame.next); + // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly - this.frame.bar = document.createElement('INPUT'); - this.frame.bar.type = 'BUTTON'; - this.frame.bar.style.position = 'absolute'; - this.frame.bar.style.border = '1px solid red'; - this.frame.bar.style.width = '100px'; - this.frame.bar.style.height = '6px'; - this.frame.bar.style.borderRadius = '2px'; - this.frame.bar.style.MozBorderRadius = '2px'; - this.frame.bar.style.border = '1px solid #7F7F7F'; - this.frame.bar.style.backgroundColor = '#E5E5E5'; - this.frame.appendChild(this.frame.bar); + /** + * Set a data source for the view + * @param {DataSet | DataView} data + */ + DataView.prototype.setData = function (data) { + var ids, i, len; - this.frame.slide = document.createElement('INPUT'); - this.frame.slide.type = 'BUTTON'; - this.frame.slide.style.margin = '0px'; - this.frame.slide.value = ' '; - this.frame.slide.style.position = 'relative'; - this.frame.slide.style.left = '-100px'; - this.frame.appendChild(this.frame.slide); + if (this._data) { + // unsubscribe from current dataset + if (this._data.unsubscribe) { + this._data.unsubscribe('*', this.listener); + } - // create events - var me = this; - this.frame.slide.onmousedown = function (event) {me._onMouseDown(event);}; - this.frame.prev.onclick = function (event) {me.prev(event);}; - this.frame.play.onclick = function (event) {me.togglePlay(event);}; - this.frame.next.onclick = function (event) {me.next(event);}; + // trigger a remove of all items in memory + ids = []; + for (var id in this._ids) { + if (this._ids.hasOwnProperty(id)) { + ids.push(id); + } + } + this._ids = {}; + this._trigger('remove', {items: ids}); } - this.onChangeCallback = undefined; - - this.values = []; - this.index = undefined; + this._data = data; - this.playTimeout = undefined; - this.playInterval = 1000; // milliseconds - this.playLoop = true; - } + if (this._data) { + // update fieldId + this._fieldId = this._options.fieldId || + (this._data && this._data.options && this._data.options.fieldId) || + 'id'; - /** - * Select the previous index - */ - Slider.prototype.prev = function() { - var index = this.getIndex(); - if (index > 0) { - index--; - this.setIndex(index); - } - }; + // trigger an add of all added items + ids = this._data.getIds({filter: this._options && this._options.filter}); + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + this._ids[id] = true; + } + this._trigger('add', {items: ids}); - /** - * Select the next index - */ - Slider.prototype.next = function() { - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); + // subscribe to new dataset + if (this._data.on) { + this._data.on('*', this.listener); + } } }; /** - * Select the next index - */ - Slider.prototype.playNext = function() { - var start = new Date(); - - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } - else if (this.playLoop) { - // jump to the start - index = 0; - this.setIndex(index); - } - - var end = new Date(); - var diff = (end - start); - - // calculate how much time it to to set the index and to execute the callback - // function. - var interval = Math.max(this.playInterval - diff, 0); - // document.title = diff // TODO: cleanup - + * Get data from the data view + * + * Usage: + * + * get() + * get(options: Object) + * get(options: Object, data: Array | DataTable) + * + * get(id: Number) + * get(id: Number, options: Object) + * get(id: Number, options: Object, data: Array | DataTable) + * + * get(ids: Number[]) + * get(ids: Number[], options: Object) + * get(ids: Number[], options: Object, data: Array | DataTable) + * + * Where: + * + * {Number | String} id The id of an item + * {Number[] | String{}} ids An array with ids of items + * {Object} options An Object with options. Available options: + * {String} [type] Type of data to be returned. Can + * be 'DataTable' or 'Array' (default) + * {Object.} [convert] + * {String[]} [fields] field names to be returned + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * {Array | DataTable} [data] If provided, items will be appended to this + * array or table. Required in case of Google + * DataTable. + * @param args + */ + DataView.prototype.get = function (args) { var me = this; - this.playTimeout = setTimeout(function() {me.playNext();}, interval); - }; - /** - * Toggle start or stop playing - */ - Slider.prototype.togglePlay = function() { - if (this.playTimeout === undefined) { - this.play(); - } else { - this.stop(); + // parse the arguments + var ids, options, data; + var firstType = util.getType(arguments[0]); + if (firstType == 'String' || firstType == 'Number' || firstType == 'Array') { + // get(id(s) [, options] [, data]) + ids = arguments[0]; // can be a single id or an array with ids + options = arguments[1]; + data = arguments[2]; } - }; - - /** - * Start playing - */ - Slider.prototype.play = function() { - // Test whether already playing - if (this.playTimeout) return; - - this.playNext(); - - if (this.frame) { - this.frame.play.value = 'Stop'; + else { + // get([, options] [, data]) + options = arguments[0]; + data = arguments[1]; } - }; - /** - * Stop playing - */ - Slider.prototype.stop = function() { - clearInterval(this.playTimeout); - this.playTimeout = undefined; + // extend the options with the default options and provided options + var viewOptions = util.extend({}, this._options, options); - if (this.frame) { - this.frame.play.value = 'Play'; + // create a combined filter method when needed + if (this._options.filter && options && options.filter) { + viewOptions.filter = function (item) { + return me._options.filter(item) && options.filter(item); + } } - }; - /** - * Set a callback function which will be triggered when the value of the - * slider bar has changed. - */ - Slider.prototype.setOnChangeCallback = function(callback) { - this.onChangeCallback = callback; - }; + // build up the call to the linked data set + var getArguments = []; + if (ids != undefined) { + getArguments.push(ids); + } + getArguments.push(viewOptions); + getArguments.push(data); - /** - * Set the interval for playing the list - * @param {Number} interval The interval in milliseconds - */ - Slider.prototype.setPlayInterval = function(interval) { - this.playInterval = interval; + return this._data && this._data.get.apply(this._data, getArguments); }; /** - * Retrieve the current play interval - * @return {Number} interval The interval in milliseconds + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids */ - Slider.prototype.getPlayInterval = function(interval) { - return this.playInterval; - }; + DataView.prototype.getIds = function (options) { + var ids; - /** - * Set looping on or off - * @pararm {boolean} doLoop If true, the slider will jump to the start when - * the end is passed, and will jump to the end - * when the start is passed. - */ - Slider.prototype.setPlayLoop = function(doLoop) { - this.playLoop = doLoop; - }; + if (this._data) { + var defaultFilter = this._options.filter; + var filter; + if (options && options.filter) { + if (defaultFilter) { + filter = function (item) { + return defaultFilter(item) && options.filter(item); + } + } + else { + filter = options.filter; + } + } + else { + filter = defaultFilter; + } - /** - * Execute the onchange callback function - */ - Slider.prototype.onChange = function() { - if (this.onChangeCallback !== undefined) { - this.onChangeCallback(); + ids = this._data.getIds({ + filter: filter, + order: options && options.order + }); } - }; - - /** - * redraw the slider on the correct place - */ - Slider.prototype.redraw = function() { - if (this.frame) { - // resize the bar - this.frame.bar.style.top = (this.frame.clientHeight/2 - - this.frame.bar.offsetHeight/2) + 'px'; - this.frame.bar.style.width = (this.frame.clientWidth - - this.frame.prev.clientWidth - - this.frame.play.clientWidth - - this.frame.next.clientWidth - 30) + 'px'; - - // position the slider button - var left = this.indexToLeft(this.index); - this.frame.slide.style.left = (left) + 'px'; + else { + ids = []; } - }; - - - /** - * Set the list with values for the slider - * @param {Array} values A javascript array with values (any type) - */ - Slider.prototype.setValues = function(values) { - this.values = values; - if (this.values.length > 0) - this.setIndex(0); - else - this.index = undefined; + return ids; }; /** - * Select a value by its index - * @param {Number} index + * Get the DataSet to which this DataView is connected. In case there is a chain + * of multiple DataViews, the root DataSet of this chain is returned. + * @return {DataSet} dataSet */ - Slider.prototype.setIndex = function(index) { - if (index < this.values.length) { - this.index = index; - - this.redraw(); - this.onChange(); - } - else { - throw 'Error: index out of range'; + DataView.prototype.getDataSet = function () { + var dataSet = this; + while (dataSet instanceof DataView) { + dataSet = dataSet._data; } + return dataSet || null; }; /** - * retrieve the index of the currently selected vaue - * @return {Number} index + * Event listener. Will propagate all events from the connected data set to + * the subscribers of the DataView, but will filter the items and only trigger + * when there are changes in the filtered data set. + * @param {String} event + * @param {Object | null} params + * @param {String} senderId + * @private */ - Slider.prototype.getIndex = function() { - return this.index; - }; - + DataView.prototype._onEvent = function (event, params, senderId) { + var i, len, id, item, + ids = params && params.items, + data = this._data, + added = [], + updated = [], + removed = []; - /** - * retrieve the currently selected value - * @return {*} value - */ - Slider.prototype.get = function() { - return this.values[this.index]; - }; + if (ids && data) { + switch (event) { + case 'add': + // filter the ids of the added items + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + item = this.get(id); + if (item) { + this._ids[id] = true; + added.push(id); + } + } + break; - Slider.prototype._onMouseDown = function(event) { - // only react on left mouse button down - var leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); - if (!leftButtonDown) return; + case 'update': + // determine the event from the views viewpoint: an updated + // item can be added, updated, or removed from this view. + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + item = this.get(id); - this.startClientX = event.clientX; - this.startSlideX = parseFloat(this.frame.slide.style.left); + if (item) { + if (this._ids[id]) { + updated.push(id); + } + else { + this._ids[id] = true; + added.push(id); + } + } + else { + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); + } + else { + // nothing interesting for me :-( + } + } + } - this.frame.style.cursor = 'move'; + break; - // add event listeners to handle moving the contents - // we store the function onmousemove and onmouseup in the graph, so we can - // remove the eventlisteners lateron in the function mouseUp() - var me = this; - this.onmousemove = function (event) {me._onMouseMove(event);}; - this.onmouseup = function (event) {me._onMouseUp(event);}; - util.addEventListener(document, 'mousemove', this.onmousemove); - util.addEventListener(document, 'mouseup', this.onmouseup); - util.preventDefault(event); - }; + case 'remove': + // filter the ids of the removed items + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); + } + } + break; + } - Slider.prototype.leftToIndex = function (left) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; - var x = left - 3; + if (added.length) { + this._trigger('add', {items: added}, senderId); + } + if (updated.length) { + this._trigger('update', {items: updated}, senderId); + } + if (removed.length) { + this._trigger('remove', {items: removed}, senderId); + } + } + }; - var index = Math.round(x / width * (this.values.length-1)); - if (index < 0) index = 0; - if (index > this.values.length-1) index = this.values.length-1; + // copy subscription functionality from DataSet + DataView.prototype.on = DataSet.prototype.on; + DataView.prototype.off = DataSet.prototype.off; + DataView.prototype._trigger = DataSet.prototype._trigger; - return index; - }; + // TODO: make these functions deprecated (replaced with `on` and `off` since version 0.5) + DataView.prototype.subscribe = DataView.prototype.on; + DataView.prototype.unsubscribe = DataView.prototype.off; - Slider.prototype.indexToLeft = function (index) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; + module.exports = DataView; - var x = index / (this.values.length-1) * width; - var left = x + 3; +/***/ }, +/* 9 */ +/***/ function(module, exports, __webpack_require__) { - return left; - }; + var Emitter = __webpack_require__(10); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var util = __webpack_require__(1); + var Point3d = __webpack_require__(11); + var Point2d = __webpack_require__(12); + var Camera = __webpack_require__(13); + var Filter = __webpack_require__(14); + var Slider = __webpack_require__(15); + var StepNumber = __webpack_require__(16); + /** + * @constructor Graph3d + * Graph3d displays data in 3d. + * + * Graph3d is developed in javascript as a Google Visualization Chart. + * + * @param {Element} container The DOM element in which the Graph3d will + * be created. Normally a div element. + * @param {DataSet | DataView | Array} [data] + * @param {Object} [options] + */ + function Graph3d(container, data, options) { + if (!(this instanceof Graph3d)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } + // create variables and set default values + this.containerElement = container; + this.width = '400px'; + this.height = '400px'; + this.margin = 10; // px + this.defaultXCenter = '55%'; + this.defaultYCenter = '50%'; - Slider.prototype._onMouseMove = function (event) { - var diff = event.clientX - this.startClientX; - var x = this.startSlideX + diff; + this.xLabel = 'x'; + this.yLabel = 'y'; + this.zLabel = 'z'; + this.filterLabel = 'time'; + this.legendLabel = 'value'; - var index = this.leftToIndex(x); + this.style = Graph3d.STYLE.DOT; + this.showPerspective = true; + this.showGrid = true; + this.keepAspectRatio = true; + this.showShadow = false; + this.showGrayBottom = false; // TODO: this does not work correctly + this.showTooltip = false; + this.verticalRatio = 0.5; // 0.1 to 1.0, where 1.0 results in a 'cube' - this.setIndex(index); + this.animationInterval = 1000; // milliseconds + this.animationPreload = false; - util.preventDefault(); - }; + this.camera = new Camera(); + this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + this.dataTable = null; // The original data table + this.dataPoints = null; // The table with point objects - Slider.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; + // the column indexes + this.colX = undefined; + this.colY = undefined; + this.colZ = undefined; + this.colValue = undefined; + this.colFilter = undefined; - // remove event listeners - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); + this.xMin = 0; + this.xStep = undefined; // auto by default + this.xMax = 1; + this.yMin = 0; + this.yStep = undefined; // auto by default + this.yMax = 1; + this.zMin = 0; + this.zStep = undefined; // auto by default + this.zMax = 1; + this.valueMin = 0; + this.valueMax = 1; + this.xBarWidth = 1; + this.yBarWidth = 1; + // TODO: customize axis range - util.preventDefault(); - }; + // constants + this.colorAxis = '#4D4D4D'; + this.colorGrid = '#D3D3D3'; + this.colorDot = '#7DC1FF'; + this.colorDotBorder = '#3267D2'; - module.exports = Slider; + // create a frame and canvas + this.create(); + // apply options (also when undefined) + this.setOptions(options); -/***/ }, -/* 11 */ -/***/ function(module, exports, __webpack_require__) { + // apply data + if (data) { + this.setData(data); + } + } + + // Extend Graph3d with an Emitter mixin + Emitter(Graph3d.prototype); /** - * @prototype StepNumber - * The class StepNumber is an iterator for Numbers. You provide a start and end - * value, and a best step size. StepNumber itself rounds to fixed values and - * a finds the step that best fits the provided step. - * - * If prettyStep is true, the step size is chosen as close as possible to the - * provided step, but being a round value like 1, 2, 5, 10, 20, 50, .... - * - * Example usage: - * var step = new StepNumber(0, 10, 2.5, true); - * step.start(); - * while (!step.end()) { - * alert(step.getCurrent()); - * step.next(); - * } - * - * Version: 1.0 - * - * @param {Number} start The start value - * @param {Number} end The end value - * @param {Number} step Optional. Step size. Must be a positive value. - * @param {boolean} prettyStep Optional. If true, the step size is rounded - * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + * Calculate the scaling values, dependent on the range in x, y, and z direction */ - function StepNumber(start, end, step, prettyStep) { - // set default values - this._start = 0; - this._end = 0; - this._step = 1; - this.prettyStep = true; - this.precision = 5; + Graph3d.prototype._setScale = function() { + this.scale = new Point3d(1 / (this.xMax - this.xMin), + 1 / (this.yMax - this.yMin), + 1 / (this.zMax - this.zMin)); - this._current = 0; - this.setRange(start, end, step, prettyStep); - }; + // keep aspect ration between x and y scale if desired + if (this.keepAspectRatio) { + if (this.scale.x < this.scale.y) { + //noinspection JSSuspiciousNameCombination + this.scale.y = this.scale.x; + } + else { + //noinspection JSSuspiciousNameCombination + this.scale.x = this.scale.y; + } + } - /** - * Set a new range: start, end and step. - * - * @param {Number} start The start value - * @param {Number} end The end value - * @param {Number} step Optional. Step size. Must be a positive value. - * @param {boolean} prettyStep Optional. If true, the step size is rounded - * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) - */ - StepNumber.prototype.setRange = function(start, end, step, prettyStep) { - this._start = start ? start : 0; - this._end = end ? end : 0; + // scale the vertical axis + this.scale.z *= this.verticalRatio; + // TODO: can this be automated? verticalRatio? - this.setStep(step, prettyStep); - }; + // determine scale for (optional) value + this.scale.value = 1 / (this.valueMax - this.valueMin); - /** - * Set a new step size - * @param {Number} step New step size. Must be a positive value - * @param {boolean} prettyStep Optional. If true, the provided step is rounded - * to a pretty step size (like 1, 2, 5, 10, 20, 50, ...) - */ - StepNumber.prototype.setStep = function(step, prettyStep) { - if (step === undefined || step <= 0) - return; + // position the camera arm + var xCenter = (this.xMax + this.xMin) / 2 * this.scale.x; + var yCenter = (this.yMax + this.yMin) / 2 * this.scale.y; + var zCenter = (this.zMax + this.zMin) / 2 * this.scale.z; + this.camera.setArmLocation(xCenter, yCenter, zCenter); + }; - if (prettyStep !== undefined) - this.prettyStep = prettyStep; - if (this.prettyStep === true) - this._step = StepNumber.calculatePrettyStep(step); - else - this._step = step; + /** + * Convert a 3D location to a 2D location on screen + * http://en.wikipedia.org/wiki/3D_projection + * @param {Point3d} point3d A 3D point with parameters x, y, z + * @return {Point2d} point2d A 2D point with parameters x, y + */ + Graph3d.prototype._convert3Dto2D = function(point3d) { + var translation = this._convertPointToTranslation(point3d); + return this._convertTranslationToScreen(translation); }; /** - * Calculate a nice step size, closest to the desired step size. - * Returns a value in one of the ranges 1*10^n, 2*10^n, or 5*10^n, where n is an - * integer Number. For example 1, 2, 5, 10, 20, 50, etc... - * @param {Number} step Desired step size - * @return {Number} Nice step size + * Convert a 3D location its translation seen from the camera + * http://en.wikipedia.org/wiki/3D_projection + * @param {Point3d} point3d A 3D point with parameters x, y, z + * @return {Point3d} translation A 3D point with parameters x, y, z This is + * the translation of the point, seen from the + * camera */ - StepNumber.calculatePrettyStep = function (step) { - var log10 = function (x) {return Math.log(x) / Math.LN10;}; + Graph3d.prototype._convertPointToTranslation = function(point3d) { + var ax = point3d.x * this.scale.x, + ay = point3d.y * this.scale.y, + az = point3d.z * this.scale.z, - // try three steps (multiple of 1, 2, or 5 - var step1 = Math.pow(10, Math.round(log10(step))), - step2 = 2 * Math.pow(10, Math.round(log10(step / 2))), - step5 = 5 * Math.pow(10, Math.round(log10(step / 5))); + cx = this.camera.getCameraLocation().x, + cy = this.camera.getCameraLocation().y, + cz = this.camera.getCameraLocation().z, - // choose the best step (closest to minimum step) - var prettyStep = step1; - if (Math.abs(step2 - step) <= Math.abs(prettyStep - step)) prettyStep = step2; - if (Math.abs(step5 - step) <= Math.abs(prettyStep - step)) prettyStep = step5; + // calculate angles + sinTx = Math.sin(this.camera.getCameraRotation().x), + cosTx = Math.cos(this.camera.getCameraRotation().x), + sinTy = Math.sin(this.camera.getCameraRotation().y), + cosTy = Math.cos(this.camera.getCameraRotation().y), + sinTz = Math.sin(this.camera.getCameraRotation().z), + cosTz = Math.cos(this.camera.getCameraRotation().z), - // for safety - if (prettyStep <= 0) { - prettyStep = 1; - } + // calculate translation + dx = cosTy * (sinTz * (ay - cy) + cosTz * (ax - cx)) - sinTy * (az - cz), + dy = sinTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) + cosTx * (cosTz * (ay - cy) - sinTz * (ax-cx)), + dz = cosTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) - sinTx * (cosTz * (ay - cy) - sinTz * (ax-cx)); - return prettyStep; + return new Point3d(dx, dy, dz); }; /** - * returns the current value of the step - * @return {Number} current value + * Convert a translation point to a point on the screen + * @param {Point3d} translation A 3D point with parameters x, y, z This is + * the translation of the point, seen from the + * camera + * @return {Point2d} point2d A 2D point with parameters x, y */ - StepNumber.prototype.getCurrent = function () { - return parseFloat(this._current.toPrecision(this.precision)); + Graph3d.prototype._convertTranslationToScreen = function(translation) { + var ex = this.eye.x, + ey = this.eye.y, + ez = this.eye.z, + dx = translation.x, + dy = translation.y, + dz = translation.z; + + // calculate position on screen from translation + var bx; + var by; + if (this.showPerspective) { + bx = (dx - ex) * (ez / dz); + by = (dy - ey) * (ez / dz); + } + else { + bx = dx * -(ez / this.camera.getArmLength()); + by = dy * -(ez / this.camera.getArmLength()); + } + + // shift and scale the point to the center of the screen + // use the width of the graph to scale both horizontally and vertically. + return new Point2d( + this.xcenter + bx * this.frame.canvas.clientWidth, + this.ycenter - by * this.frame.canvas.clientWidth); }; /** - * returns the current step size - * @return {Number} current step size + * Set the background styling for the graph + * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor */ - StepNumber.prototype.getStep = function () { - return this._step; + Graph3d.prototype._setBackgroundColor = function(backgroundColor) { + var fill = 'white'; + var stroke = 'gray'; + var strokeWidth = 1; + + if (typeof(backgroundColor) === 'string') { + fill = backgroundColor; + stroke = 'none'; + strokeWidth = 0; + } + else if (typeof(backgroundColor) === 'object') { + if (backgroundColor.fill !== undefined) fill = backgroundColor.fill; + if (backgroundColor.stroke !== undefined) stroke = backgroundColor.stroke; + if (backgroundColor.strokeWidth !== undefined) strokeWidth = backgroundColor.strokeWidth; + } + else if (backgroundColor === undefined) { + // use use defaults + } + else { + throw 'Unsupported type of backgroundColor'; + } + + this.frame.style.backgroundColor = fill; + this.frame.style.borderColor = stroke; + this.frame.style.borderWidth = strokeWidth + 'px'; + this.frame.style.borderStyle = 'solid'; }; - /** - * Set the current value to the largest value smaller than start, which - * is a multiple of the step size - */ - StepNumber.prototype.start = function() { - this._current = this._start - this._start % this._step; + + /// enumerate the available styles + Graph3d.STYLE = { + BAR: 0, + BARCOLOR: 1, + BARSIZE: 2, + DOT : 3, + DOTLINE : 4, + DOTCOLOR: 5, + DOTSIZE: 6, + GRID : 7, + LINE: 8, + SURFACE : 9 }; /** - * Do a step, add the step size to the current value + * Retrieve the style index from given styleName + * @param {string} styleName Style name such as 'dot', 'grid', 'dot-line' + * @return {Number} styleNumber Enumeration value representing the style, or -1 + * when not found */ - StepNumber.prototype.next = function () { - this._current += this._step; + Graph3d.prototype._getStyleNumber = function(styleName) { + switch (styleName) { + case 'dot': return Graph3d.STYLE.DOT; + case 'dot-line': return Graph3d.STYLE.DOTLINE; + case 'dot-color': return Graph3d.STYLE.DOTCOLOR; + case 'dot-size': return Graph3d.STYLE.DOTSIZE; + case 'line': return Graph3d.STYLE.LINE; + case 'grid': return Graph3d.STYLE.GRID; + case 'surface': return Graph3d.STYLE.SURFACE; + case 'bar': return Graph3d.STYLE.BAR; + case 'bar-color': return Graph3d.STYLE.BARCOLOR; + case 'bar-size': return Graph3d.STYLE.BARSIZE; + } + + return -1; }; /** - * Returns true whether the end is reached - * @return {boolean} True if the current value has passed the end value. + * Determine the indexes of the data columns, based on the given style and data + * @param {DataSet} data + * @param {Number} style */ - StepNumber.prototype.end = function () { - return (this._current > this._end); - }; + Graph3d.prototype._determineColumnIndexes = function(data, style) { + if (this.style === Graph3d.STYLE.DOT || + this.style === Graph3d.STYLE.DOTLINE || + this.style === Graph3d.STYLE.LINE || + this.style === Graph3d.STYLE.GRID || + this.style === Graph3d.STYLE.SURFACE || + this.style === Graph3d.STYLE.BAR) { + // 3 columns expected, and optionally a 4th with filter values + this.colX = 0; + this.colY = 1; + this.colZ = 2; + this.colValue = undefined; - module.exports = StepNumber; + if (data.getNumberOfColumns() > 3) { + this.colFilter = 3; + } + } + else if (this.style === Graph3d.STYLE.DOTCOLOR || + this.style === Graph3d.STYLE.DOTSIZE || + this.style === Graph3d.STYLE.BARCOLOR || + this.style === Graph3d.STYLE.BARSIZE) { + // 4 columns expected, and optionally a 5th with filter values + this.colX = 0; + this.colY = 1; + this.colZ = 2; + this.colValue = 3; + if (data.getNumberOfColumns() > 4) { + this.colFilter = 4; + } + } + else { + throw 'Unknown style "' + this.style + '"'; + } + }; -/***/ }, -/* 12 */ -/***/ function(module, exports, __webpack_require__) { + Graph3d.prototype.getNumberOfRows = function(data) { + return data.length; + } - var Emitter = __webpack_require__(46); - var Hammer = __webpack_require__(41); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var Range = __webpack_require__(15); - var Core = __webpack_require__(42); - var TimeAxis = __webpack_require__(27); - var CurrentTime = __webpack_require__(19); - var CustomTime = __webpack_require__(20); - var ItemSet = __webpack_require__(24); - /** - * Create a timeline visualization - * @param {HTMLElement} container - * @param {vis.DataSet | Array | google.visualization.DataTable} [items] - * @param {Object} [options] See Timeline.setOptions for the available options. - * @constructor - */ - function Timeline (container, items, options) { - // mix the core properties in here - for (var coreProp in Core.prototype) { - if (Core.prototype.hasOwnProperty(coreProp) && !Timeline.prototype.hasOwnProperty(coreProp)) { - Timeline.prototype[coreProp] = Core.prototype[coreProp]; + Graph3d.prototype.getNumberOfColumns = function(data) { + var counter = 0; + for (var column in data[0]) { + if (data[0].hasOwnProperty(column)) { + counter++; } } + return counter; + } - if (!(this instanceof Timeline)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } - - var me = this; - this.defaultOptions = { - start: null, - end: null, - autoResize: true, - - orientation: 'bottom', - width: null, - height: null, - maxHeight: null, - minHeight: null - }; - this.options = util.deepExtend({}, this.defaultOptions); - - // Create the DOM, props, and emitter - this._create(container); - - // all components listed here will be repainted automatically - this.components = []; - - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) - }, - util: { - snap: null, // will be specified after TimeAxis is created - toScreen: me._toScreen.bind(me), - toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width - toTime: me._toTime.bind(me), - toGlobalTime : me._toGlobalTime.bind(me) + Graph3d.prototype.getDistinctValues = function(data, column) { + var distinctValues = []; + for (var i = 0; i < data.length; i++) { + if (distinctValues.indexOf(data[i][column]) == -1) { + distinctValues.push(data[i][column]); } - }; - - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; + } + return distinctValues; + } - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); + Graph3d.prototype.getColumnRange = function(data,column) { + var minMax = {min:data[0][column],max:data[0][column]}; + for (var i = 0; i < data.length; i++) { + if (minMax.min > data[i][column]) { minMax.min = data[i][column]; } + if (minMax.max < data[i][column]) { minMax.max = data[i][column]; } + } + return minMax; + }; - // custom time bar - // Note: time bar will be attached in this.setOptions when selected - this.customTime = new CustomTime(this.body); - this.components.push(this.customTime); + /** + * Initialize the data from the data table. Calculate minimum and maximum values + * and column index values + * @param {Array | DataSet | DataView} rawData The data containing the items for the Graph. + * @param {Number} style Style Number + */ + Graph3d.prototype._dataInitialize = function (rawData, style) { + var me = this; - // item set - this.itemSet = new ItemSet(this.body); - this.components.push(this.itemSet); + // unsubscribe from the dataTable + if (this.dataSet) { + this.dataSet.off('*', this._onChange); + } - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + if (rawData === undefined) + return; - // apply options - if (options) { - this.setOptions(options); + if (Array.isArray(rawData)) { + rawData = new DataSet(rawData); } - // create itemset - if (items) { - this.setItems(items); + var data; + if (rawData instanceof DataSet || rawData instanceof DataView) { + data = rawData.get(); } else { - this.redraw(); + throw new Error('Array, DataSet, or DataView expected'); } - } - /** - * Set options. Options will be passed to all components loaded in the Timeline. - * @param {Object} [options] - * {String} orientation - * Vertical orientation for the Timeline, - * can be 'bottom' (default) or 'top'. - * {String | Number} width - * Width for the timeline, a number in pixels or - * a css string like '1000px' or '75%'. '100%' by default. - * {String | Number} height - * Fixed height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. If undefined, - * The Timeline will automatically size such that - * its contents fit. - * {String | Number} minHeight - * Minimum height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. - * {String | Number} maxHeight - * Maximum height for the Timeline, a number in pixels or - * a css string like '400px' or '75%'. - * {Number | Date | String} start - * Start date for the visible window - * {Number | Date | String} end - * End date for the visible window - */ - Timeline.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; - util.selectiveExtend(fields, this.options, options); + if (data.length == 0) + return; - // enable/disable autoResize - this._initAutoResize(); - } + this.dataSet = rawData; + this.dataTable = data; - // propagate options to all components - this.components.forEach(function (component) { - component.setOptions(options); - }); + // subscribe to changes in the dataset + this._onChange = function () { + me.setData(me.dataSet); + }; + this.dataSet.on('*', this._onChange); - // TODO: remove deprecation error one day (deprecated since version 0.8.0) - if (options && options.order) { - throw new Error('Option order is deprecated. There is no replacement for this feature.'); - } + // _determineColumnIndexes + // getNumberOfRows (points) + // getNumberOfColumns (x,y,z,v,t,t1,t2...) + // getDistinctValues (unique values?) + // getColumnRange - // redraw everything - this.redraw(); - }; + // determine the location of x,y,z,value,filter columns + this.colX = 'x'; + this.colY = 'y'; + this.colZ = 'z'; + this.colValue = 'style'; + this.colFilter = 'filter'; - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items - */ - Timeline.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: 'Date', - end: 'Date' - } - }); + + // check if a filter column is provided + if (data[0].hasOwnProperty('filter')) { + if (this.dataFilter === undefined) { + this.dataFilter = new Filter(rawData, this.colFilter, this); + this.dataFilter.setOnLoadCallback(function() {me.redraw();}); + } } - // set items - this.itemsData = newDataSet; - this.itemSet && this.itemSet.setItems(newDataSet); - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + var withBars = this.style == Graph3d.STYLE.BAR || + this.style == Graph3d.STYLE.BARCOLOR || + this.style == Graph3d.STYLE.BARSIZE; - var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; - var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; + // determine barWidth from data + if (withBars) { + if (this.defaultXBarWidth !== undefined) { + this.xBarWidth = this.defaultXBarWidth; + } + else { + var dataX = this.getDistinctValues(data,this.colX); + this.xBarWidth = (dataX[1] - dataX[0]) || 1; + } - this.setWindow(start, end); + if (this.defaultYBarWidth !== undefined) { + this.yBarWidth = this.defaultYBarWidth; + } + else { + var dataY = this.getDistinctValues(data,this.colY); + this.yBarWidth = (dataY[1] - dataY[0]) || 1; + } } - }; - /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups - */ - Timeline.prototype.setGroups = function(groups) { - // convert to type DataSet when needed - var newDataSet; - if (!groups) { - newDataSet = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - newDataSet = groups; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + // calculate minimums and maximums + var xRange = this.getColumnRange(data,this.colX); + if (withBars) { + xRange.min -= this.xBarWidth / 2; + xRange.max += this.xBarWidth / 2; } + this.xMin = (this.defaultXMin !== undefined) ? this.defaultXMin : xRange.min; + this.xMax = (this.defaultXMax !== undefined) ? this.defaultXMax : xRange.max; + if (this.xMax <= this.xMin) this.xMax = this.xMin + 1; + this.xStep = (this.defaultXStep !== undefined) ? this.defaultXStep : (this.xMax-this.xMin)/5; - this.groupsData = newDataSet; - this.itemSet.setGroups(newDataSet); - }; + var yRange = this.getColumnRange(data,this.colY); + if (withBars) { + yRange.min -= this.yBarWidth / 2; + yRange.max += this.yBarWidth / 2; + } + this.yMin = (this.defaultYMin !== undefined) ? this.defaultYMin : yRange.min; + this.yMax = (this.defaultYMax !== undefined) ? this.defaultYMax : yRange.max; + if (this.yMax <= this.yMin) this.yMax = this.yMin + 1; + this.yStep = (this.defaultYStep !== undefined) ? this.defaultYStep : (this.yMax-this.yMin)/5; - /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {Array} [ids] An array with zero or more id's of the items to be - * selected. If ids is an empty array, all items will be - * unselected. - */ - Timeline.prototype.setSelection = function(ids) { - this.itemSet && this.itemSet.setSelection(ids); - }; + var zRange = this.getColumnRange(data,this.colZ); + this.zMin = (this.defaultZMin !== undefined) ? this.defaultZMin : zRange.min; + this.zMax = (this.defaultZMax !== undefined) ? this.defaultZMax : zRange.max; + if (this.zMax <= this.zMin) this.zMax = this.zMin + 1; + this.zStep = (this.defaultZStep !== undefined) ? this.defaultZStep : (this.zMax-this.zMin)/5; - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - Timeline.prototype.getSelection = function() { - return this.itemSet && this.itemSet.getSelection() || []; + if (this.colValue !== undefined) { + var valueRange = this.getColumnRange(data,this.colValue); + this.valueMin = (this.defaultValueMin !== undefined) ? this.defaultValueMin : valueRange.min; + this.valueMax = (this.defaultValueMax !== undefined) ? this.defaultValueMax : valueRange.max; + if (this.valueMax <= this.valueMin) this.valueMax = this.valueMin + 1; + } + + // set the scale dependent on the ranges. + this._setScale(); }; + /** - * Get the data range of the item set. - * @returns {{min: Date, max: Date}} range A range with a start and end Date. - * When no minimum is found, min==null - * When no maximum is found, max==null + * Filter the data based on the current filter + * @param {Array} data + * @return {Array} dataPoints Array with point objects which can be drawn on screen */ - Timeline.prototype.getItemRange = function() { - // calculate min from start filed - var dataset = this.itemsData.getDataSet(), - min = null, - max = null; + Graph3d.prototype._getDataPoints = function (data) { + // TODO: store the created matrix dataPoints in the filters instead of reloading each time + var x, y, i, z, obj, point; - if (dataset) { - // calculate the minimum value of the field 'start' - var minItem = dataset.min('start'); - min = minItem ? util.convert(minItem.start, 'Date').valueOf() : null; - // Note: we convert first to Date and then to number because else - // a conversion from ISODate to Number will fail + var dataPoints = []; - // calculate maximum value of fields 'start' and 'end' - var maxStartItem = dataset.max('start'); - if (maxStartItem) { - max = util.convert(maxStartItem.start, 'Date').valueOf(); - } - var maxEndItem = dataset.max('end'); - if (maxEndItem) { - if (max == null) { - max = util.convert(maxEndItem.end, 'Date').valueOf(); + if (this.style === Graph3d.STYLE.GRID || + this.style === Graph3d.STYLE.SURFACE) { + // copy all values from the google data table to a matrix + // the provided values are supposed to form a grid of (x,y) positions + + // create two lists with all present x and y values + var dataX = []; + var dataY = []; + for (i = 0; i < this.getNumberOfRows(data); i++) { + x = data[i][this.colX] || 0; + y = data[i][this.colY] || 0; + + if (dataX.indexOf(x) === -1) { + dataX.push(x); } - else { - max = Math.max(max, util.convert(maxEndItem.end, 'Date').valueOf()); + if (dataY.indexOf(y) === -1) { + dataY.push(y); } } - } - - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; - }; - - - module.exports = Timeline; - -/***/ }, -/* 13 */ -/***/ function(module, exports, __webpack_require__) { + function sortNumber(a, b) { + return a - b; + } + dataX.sort(sortNumber); + dataY.sort(sortNumber); - var Emitter = __webpack_require__(46); - var Hammer = __webpack_require__(41); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var Range = __webpack_require__(15); - var Core = __webpack_require__(42); - var TimeAxis = __webpack_require__(27); - var CurrentTime = __webpack_require__(19); - var CustomTime = __webpack_require__(20); - var LineGraph = __webpack_require__(26); + // create a grid, a 2d matrix, with all values. + var dataMatrix = []; // temporary data matrix + for (i = 0; i < data.length; i++) { + x = data[i][this.colX] || 0; + y = data[i][this.colY] || 0; + z = data[i][this.colZ] || 0; - /** - * Create a timeline visualization - * @param {HTMLElement} container - * @param {vis.DataSet | Array | google.visualization.DataTable} [items] - * @param {Object} [options] See Graph2d.setOptions for the available options. - * @constructor - */ - function Graph2d (container, items, options, groups) { - for (var coreProp in Core.prototype) { - if (Core.prototype.hasOwnProperty(coreProp) && !Graph2d.prototype.hasOwnProperty(coreProp)) { - Graph2d.prototype[coreProp] = Core.prototype[coreProp]; - } - } + var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer + var yIndex = dataY.indexOf(y); - var me = this; - this.defaultOptions = { - start: null, - end: null, + if (dataMatrix[xIndex] === undefined) { + dataMatrix[xIndex] = []; + } - autoResize: true, + var point3d = new Point3d(); + point3d.x = x; + point3d.y = y; + point3d.z = z; - orientation: 'bottom', - width: null, - height: null, - maxHeight: null, - minHeight: null - }; - this.options = util.deepExtend({}, this.defaultOptions); + obj = {}; + obj.point = point3d; + obj.trans = undefined; + obj.screen = undefined; + obj.bottom = new Point3d(x, y, this.zMin); - // Create the DOM, props, and emitter - this._create(container); + dataMatrix[xIndex][yIndex] = obj; - // all components listed here will be repainted automatically - this.components = []; + dataPoints.push(obj); + } - this.body = { - dom: this.dom, - domProps: this.props, - emitter: { - on: this.on.bind(this), - off: this.off.bind(this), - emit: this.emit.bind(this) - }, - util: { - snap: null, // will be specified after TimeAxis is created - toScreen: me._toScreen.bind(me), - toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width - toTime: me._toTime.bind(me), - toGlobalTime : me._toGlobalTime.bind(me) + // fill in the pointers to the neighbors. + for (x = 0; x < dataMatrix.length; x++) { + for (y = 0; y < dataMatrix[x].length; y++) { + if (dataMatrix[x][y]) { + dataMatrix[x][y].pointRight = (x < dataMatrix.length-1) ? dataMatrix[x+1][y] : undefined; + dataMatrix[x][y].pointTop = (y < dataMatrix[x].length-1) ? dataMatrix[x][y+1] : undefined; + dataMatrix[x][y].pointCross = + (x < dataMatrix.length-1 && y < dataMatrix[x].length-1) ? + dataMatrix[x+1][y+1] : + undefined; + } + } } - }; + } + else { // 'dot', 'dot-line', etc. + // copy all values from the google data table to a list with Point3d objects + for (i = 0; i < data.length; i++) { + point = new Point3d(); + point.x = data[i][this.colX] || 0; + point.y = data[i][this.colY] || 0; + point.z = data[i][this.colZ] || 0; - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; + if (this.colValue !== undefined) { + point.value = data[i][this.colValue] || 0; + } - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + obj = {}; + obj.point = point; + obj.bottom = new Point3d(point.x, point.y, this.zMin); + obj.trans = undefined; + obj.screen = undefined; - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); + dataPoints.push(obj); + } + } - // custom time bar - // Note: time bar will be attached in this.setOptions when selected - this.customTime = new CustomTime(this.body); - this.components.push(this.customTime); + return dataPoints; + }; - // item set - this.linegraph = new LineGraph(this.body); - this.components.push(this.linegraph); + /** + * Create the main frame for the Graph3d. + * This function is executed once when a Graph3d object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + */ + Graph3d.prototype.create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + this.frame = document.createElement('div'); + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - // apply options - if (options) { - this.setOptions(options); + // create the graph canvas (HTML canvas element) + this.frame.canvas = document.createElement( 'canvas' ); + this.frame.canvas.style.position = 'relative'; + this.frame.appendChild(this.frame.canvas); + //if (!this.frame.canvas.getContext) { + { + var noCanvas = document.createElement( 'DIV' ); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold' ; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.frame.canvas.appendChild(noCanvas); } - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); - } + this.frame.filter = document.createElement( 'div' ); + this.frame.filter.style.position = 'absolute'; + this.frame.filter.style.bottom = '0px'; + this.frame.filter.style.left = '0px'; + this.frame.filter.style.width = '100%'; + this.frame.appendChild(this.frame.filter); - // create itemset - if (items) { - this.setItems(items); - } - else { - this.redraw(); - } - } + // add event listeners to handle moving and zooming the contents + var me = this; + var onmousedown = function (event) {me._onMouseDown(event);}; + var ontouchstart = function (event) {me._onTouchStart(event);}; + var onmousewheel = function (event) {me._onWheel(event);}; + var ontooltip = function (event) {me._onTooltip(event);}; + // TODO: these events are never cleaned up... can give a 'memory leakage' - /** - * Set options. Options will be passed to all components loaded in the Graph2d. - * @param {Object} [options] - * {String} orientation - * Vertical orientation for the Graph2d, - * can be 'bottom' (default) or 'top'. - * {String | Number} width - * Width for the timeline, a number in pixels or - * a css string like '1000px' or '75%'. '100%' by default. - * {String | Number} height - * Fixed height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. If undefined, - * The Graph2d will automatically size such that - * its contents fit. - * {String | Number} minHeight - * Minimum height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. - * {String | Number} maxHeight - * Maximum height for the Graph2d, a number in pixels or - * a css string like '400px' or '75%'. - * {Number | Date | String} start - * Start date for the visible window - * {Number | Date | String} end - * End date for the visible window - */ - Graph2d.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; - util.selectiveExtend(fields, this.options, options); + util.addEventListener(this.frame.canvas, 'keydown', onkeydown); + util.addEventListener(this.frame.canvas, 'mousedown', onmousedown); + util.addEventListener(this.frame.canvas, 'touchstart', ontouchstart); + util.addEventListener(this.frame.canvas, 'mousewheel', onmousewheel); + util.addEventListener(this.frame.canvas, 'mousemove', ontooltip); - // enable/disable autoResize - this._initAutoResize(); - } + // add the new graph to the container element + this.containerElement.appendChild(this.frame); + }; - // propagate options to all components - this.components.forEach(function (component) { - component.setOptions(options); - }); - // TODO: remove deprecation error one day (deprecated since version 0.8.0) - if (options && options.order) { - throw new Error('Option order is deprecated. There is no replacement for this feature.'); - } + /** + * Set a new size for the graph + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + Graph3d.prototype.setSize = function(width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - // redraw everything - this.redraw(); + this._resizeCanvas(); }; - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * Resize the canvas to the current size of the frame */ - Graph2d.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); - - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: 'Date', - end: 'Date' - } - }); - } + Graph3d.prototype._resizeCanvas = function() { + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; - // set items - this.itemsData = newDataSet; - this.linegraph && this.linegraph.setItems(newDataSet); + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + // adjust with for margin + this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; + }; - var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; - var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; + /** + * Start animation + */ + Graph3d.prototype.animationStart = function() { + if (!this.frame.filter || !this.frame.filter.slider) + throw 'No animation available'; - this.setWindow(start, end); - } + this.frame.filter.slider.play(); }; + /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Stop animation */ - Graph2d.prototype.setGroups = function(groups) { - // convert to type DataSet when needed - var newDataSet; - if (!groups) { - newDataSet = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - newDataSet = groups; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(groups); - } + Graph3d.prototype.animationStop = function() { + if (!this.frame.filter || !this.frame.filter.slider) return; - this.groupsData = newDataSet; - this.linegraph.setGroups(newDataSet); + this.frame.filter.slider.stop(); }; + /** - * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right). - * @param groupId - * @param width - * @param height + * Resize the center position based on the current values in this.defaultXCenter + * and this.defaultYCenter (which are strings with a percentage or a value + * in pixels). The center positions are the variables this.xCenter + * and this.yCenter */ - Graph2d.prototype.getLegend = function(groupId, width, height) { - if (width === undefined) {width = 15;} - if (height === undefined) {height = 15;} - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].getLegend(width,height); + Graph3d.prototype._resizeCenter = function() { + // calculate the horizontal center position + if (this.defaultXCenter.charAt(this.defaultXCenter.length-1) === '%') { + this.xcenter = + parseFloat(this.defaultXCenter) / 100 * + this.frame.canvas.clientWidth; } else { - return "cannot find group:" + groupId; + this.xcenter = parseFloat(this.defaultXCenter); // supposed to be in px } - } - /** - * This checks if the visible option of the supplied group (by ID) is true or false. - * @param groupId - * @returns {*} - */ - Graph2d.prototype.isGroupVisible = function(groupId) { - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].visible; + // calculate the vertical center position + if (this.defaultYCenter.charAt(this.defaultYCenter.length-1) === '%') { + this.ycenter = + parseFloat(this.defaultYCenter) / 100 * + (this.frame.canvas.clientHeight - this.frame.filter.clientHeight); } else { - return false; + this.ycenter = parseFloat(this.defaultYCenter); // supposed to be in px } - } - + }; /** - * Get the data range of the item set. - * @returns {{min: Date, max: Date}} range A range with a start and end Date. - * When no minimum is found, min==null - * When no maximum is found, max==null + * Set the rotation and distance of the camera + * @param {Object} pos An object with the camera position. The object + * contains three parameters: + * - horizontal {Number} + * The horizontal rotation, between 0 and 2*PI. + * Optional, can be left undefined. + * - vertical {Number} + * The vertical rotation, between 0 and 0.5*PI + * if vertical=0.5*PI, the graph is shown from the + * top. Optional, can be left undefined. + * - distance {Number} + * The (normalized) distance of the camera to the + * center of the graph, a value between 0.71 and 5.0. + * Optional, can be left undefined. */ - Graph2d.prototype.getItemRange = function() { - var min = null; - var max = null; + Graph3d.prototype.setCameraPosition = function(pos) { + if (pos === undefined) { + return; + } - // calculate min from start filed - for (var groupId in this.linegraph.groups) { - if (this.linegraph.groups.hasOwnProperty(groupId)) { - if (this.linegraph.groups[groupId].visible == true) { - for (var i = 0; i < this.linegraph.groups[groupId].itemsData.length; i++) { - var item = this.linegraph.groups[groupId].itemsData[i]; - var value = util.convert(item.x, 'Date').valueOf(); - min = min == null ? value : min > value ? value : min; - max = max == null ? value : max < value ? value : max; - } - } - } + if (pos.horizontal !== undefined && pos.vertical !== undefined) { + this.camera.setArmRotation(pos.horizontal, pos.vertical); } - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; + if (pos.distance !== undefined) { + this.camera.setArmLength(pos.distance); + } + + this.redraw(); }; + /** + * Retrieve the current camera rotation + * @return {object} An object with parameters horizontal, vertical, and + * distance + */ + Graph3d.prototype.getCameraPosition = function() { + var pos = this.camera.getArmRotation(); + pos.distance = this.camera.getArmLength(); + return pos; + }; - module.exports = Graph2d; + /** + * Load data into the 3D Graph + */ + Graph3d.prototype._readData = function(data) { + // read the data + this._dataInitialize(data, this.style); -/***/ }, -/* 14 */ -/***/ function(module, exports, __webpack_require__) { + if (this.dataFilter) { + // apply filtering + this.dataPoints = this.dataFilter._getDataPoints(); + } + else { + // no filtering. load all data + this.dataPoints = this._getDataPoints(this.dataTable); + } + + // draw the filter + this._redrawFilter(); + }; /** - * @constructor DataStep - * The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an - * end data point. The class itself determines the best scale (step size) based on the - * provided start Date, end Date, and minimumStep. - * - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * - * Alternatively, you can set a scale by hand. - * After creation, you can initialize the class by executing first(). Then you - * can iterate from the start date to the end date via next(). You can check if - * the end date is reached with the function hasNext(). After each step, you can - * retrieve the current date via getCurrent(). - * The DataStep has scales ranging from milliseconds, seconds, minutes, hours, - * days, to years. - * - * Version: 1.2 - * - * @param {Date} [start] The start date, for example new Date(2010, 9, 21) - * or new Date(2010, 9, 21, 23, 45, 00) - * @param {Date} [end] The end date - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + * Replace the dataset of the Graph3d + * @param {Array | DataSet | DataView} data */ - function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { - // variables - this.current = 0; - - this.autoScale = true; - this.stepIndex = 0; - this.step = 1; - this.scale = 1; + Graph3d.prototype.setData = function (data) { + this._readData(data); + this.redraw(); - this.marginStart; - this.marginEnd; + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - this.majorSteps = [1, 2, 5, 10]; - this.minorSteps = [0.25, 0.5, 1, 2]; + /** + * Update the options. Options will be merged with current options + * @param {Object} options + */ + Graph3d.prototype.setOptions = function (options) { + var cameraPosition = undefined; - this.setRange(start, end, minimumStep, containerHeight, forcedStepSize); - } + this.animationStop(); + if (options !== undefined) { + // retrieve parameter values + if (options.width !== undefined) this.width = options.width; + if (options.height !== undefined) this.height = options.height; + if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; + if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; - /** - * Set a new range - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * @param {Number} [start] The start date and time. - * @param {Number} [end] The end date and time. - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds - */ - DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, forcedStepSize) { - this._start = start; - this._end = end; + if (options.filterLabel !== undefined) this.filterLabel = options.filterLabel; + if (options.legendLabel !== undefined) this.legendLabel = options.legendLabel; + if (options.xLabel !== undefined) this.xLabel = options.xLabel; + if (options.yLabel !== undefined) this.yLabel = options.yLabel; + if (options.zLabel !== undefined) this.zLabel = options.zLabel; - if (start == end) { - this._start = start - 0.75; - this._end = end + 1; - } + if (options.style !== undefined) { + var styleNumber = this._getStyleNumber(options.style); + if (styleNumber !== -1) { + this.style = styleNumber; + } + } + if (options.showGrid !== undefined) this.showGrid = options.showGrid; + if (options.showPerspective !== undefined) this.showPerspective = options.showPerspective; + if (options.showShadow !== undefined) this.showShadow = options.showShadow; + if (options.tooltip !== undefined) this.showTooltip = options.tooltip; + if (options.showAnimationControls !== undefined) this.showAnimationControls = options.showAnimationControls; + if (options.keepAspectRatio !== undefined) this.keepAspectRatio = options.keepAspectRatio; + if (options.verticalRatio !== undefined) this.verticalRatio = options.verticalRatio; - if (this.autoScale) { - this.setMinimumStep(minimumStep, containerHeight, forcedStepSize); - } - this.setFirst(); - }; + if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; + if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; + if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds - */ - DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { - // round to floor - var size = this._end - this._start; - var safeSize = size * 1.1; - var minimumStepValue = minimumStep * (safeSize / containerHeight); - var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); + if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; + if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; - var minorStepIdx = -1; - var magnitudefactor = Math.pow(10,orderOfMagnitude); + if (options.xMin !== undefined) this.defaultXMin = options.xMin; + if (options.xStep !== undefined) this.defaultXStep = options.xStep; + if (options.xMax !== undefined) this.defaultXMax = options.xMax; + if (options.yMin !== undefined) this.defaultYMin = options.yMin; + if (options.yStep !== undefined) this.defaultYStep = options.yStep; + if (options.yMax !== undefined) this.defaultYMax = options.yMax; + if (options.zMin !== undefined) this.defaultZMin = options.zMin; + if (options.zStep !== undefined) this.defaultZStep = options.zStep; + if (options.zMax !== undefined) this.defaultZMax = options.zMax; + if (options.valueMin !== undefined) this.defaultValueMin = options.valueMin; + if (options.valueMax !== undefined) this.defaultValueMax = options.valueMax; - var start = 0; - if (orderOfMagnitude < 0) { - start = orderOfMagnitude; - } + if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; - var solutionFound = false; - for (var i = start; Math.abs(i) <= Math.abs(orderOfMagnitude); i++) { - magnitudefactor = Math.pow(10,i); - for (var j = 0; j < this.minorSteps.length; j++) { - var stepSize = magnitudefactor * this.minorSteps[j]; - if (stepSize >= minimumStepValue) { - solutionFound = true; - minorStepIdx = j; - break; - } + if (cameraPosition !== undefined) { + this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); + this.camera.setArmLength(cameraPosition.distance); } - if (solutionFound == true) { - break; + else { + this.camera.setArmRotation(1.0, 0.5); + this.camera.setArmLength(1.7); } } - this.stepIndex = minorStepIdx; - this.scale = magnitudefactor; - this.step = magnitudefactor * this.minorSteps[minorStepIdx]; - }; + this._setBackgroundColor(options && options.backgroundColor); - /** - * Set the range iterator to the start date. - */ - DataStep.prototype.first = function() { - this.setFirst(); + this.setSize(this.width, this.height); + + // re-load the data + if (this.dataTable) { + this.setData(this.dataTable); + } + + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } }; /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date + * Redraw the Graph. */ - DataStep.prototype.setFirst = function() { - var niceStart = this._start - (this.scale * this.minorSteps[this.stepIndex]); - var niceEnd = this._end + (this.scale * this.minorSteps[this.stepIndex]); - - this.marginEnd = this.roundToMinor(niceEnd); - this.marginStart = this.roundToMinor(niceStart); - this.marginRange = this.marginEnd - this.marginStart; - - this.current = this.marginEnd; + Graph3d.prototype.redraw = function() { + if (this.dataPoints === undefined) { + throw 'Error: graph data not initialized'; + } - }; + this._resizeCanvas(); + this._resizeCenter(); + this._redrawSlider(); + this._redrawClear(); + this._redrawAxis(); - DataStep.prototype.roundToMinor = function(value) { - var rounded = value - (value % (this.scale * this.minorSteps[this.stepIndex])); - if (value % (this.scale * this.minorSteps[this.stepIndex]) > 0.5 * (this.scale * this.minorSteps[this.stepIndex])) { - return rounded + (this.scale * this.minorSteps[this.stepIndex]); + if (this.style === Graph3d.STYLE.GRID || + this.style === Graph3d.STYLE.SURFACE) { + this._redrawDataGrid(); + } + else if (this.style === Graph3d.STYLE.LINE) { + this._redrawDataLine(); + } + else if (this.style === Graph3d.STYLE.BAR || + this.style === Graph3d.STYLE.BARCOLOR || + this.style === Graph3d.STYLE.BARSIZE) { + this._redrawDataBar(); } else { - return rounded; + // style is DOT, DOTLINE, DOTCOLOR, DOTSIZE + this._redrawDataDot(); } - } - - /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date - */ - DataStep.prototype.hasNext = function () { - return (this.current >= this.marginStart); + this._redrawInfo(); + this._redrawLegend(); }; /** - * Do the next step + * Clear the canvas before redrawing */ - DataStep.prototype.next = function() { - var prev = this.current; - this.current -= this.step; + Graph3d.prototype._redrawClear = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); - // safety mechanism: if current time is still unchanged, move to the end - if (this.current == prev) { - this.current = this._end; - } + ctx.clearRect(0, 0, canvas.width, canvas.height); }; + /** - * Do the next step + * Redraw the legend showing the colors */ - DataStep.prototype.previous = function() { - this.current += this.step; - this.marginEnd += this.step; - this.marginRange = this.marginEnd - this.marginStart; - }; + Graph3d.prototype._redrawLegend = function() { + var y; + if (this.style === Graph3d.STYLE.DOTCOLOR || + this.style === Graph3d.STYLE.DOTSIZE) { + var dotSize = this.frame.clientWidth * 0.02; - /** - * Get the current datetime - * @return {String} current The current date - */ - DataStep.prototype.getCurrent = function() { - var toPrecision = '' + Number(this.current).toPrecision(5); - for (var i = toPrecision.length-1; i > 0; i--) { - if (toPrecision[i] == "0") { - toPrecision = toPrecision.slice(0,i); - } - else if (toPrecision[i] == "." || toPrecision[i] == ",") { - toPrecision = toPrecision.slice(0,i); - break; + var widthMin, widthMax; + if (this.style === Graph3d.STYLE.DOTSIZE) { + widthMin = dotSize / 2; // px + widthMax = dotSize / 2 + dotSize * 2; // Todo: put this in one function } - else{ - break; + else { + widthMin = 20; // px + widthMax = 20; // px } + + var height = Math.max(this.frame.clientHeight * 0.25, 100); + var top = this.margin; + var right = this.frame.clientWidth - this.margin; + var left = right - widthMax; + var bottom = top + height; } - return toPrecision; - }; + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + ctx.lineWidth = 1; + ctx.font = '14px arial'; // TODO: put in options + if (this.style === Graph3d.STYLE.DOTCOLOR) { + // draw the color bar + var ymin = 0; + var ymax = height; // Todo: make height customizable + for (y = ymin; y < ymax; y++) { + var f = (y - ymin) / (ymax - ymin); + //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function + var hue = f * 240; + var color = this._hsv2rgb(hue, 1, 1); - /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate - */ - DataStep.prototype.snap = function(date) { + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(left, top + y); + ctx.lineTo(right, top + y); + ctx.stroke(); + } - }; + ctx.strokeStyle = this.colorAxis; + ctx.strokeRect(left, top, widthMax, height); + } - /** - * Check if the current value is a major value (for example when the step - * is DAY, a major value is each first day of the MONTH) - * @return {boolean} true if current date is major, else false. - */ - DataStep.prototype.isMajor = function() { - return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); - }; + if (this.style === Graph3d.STYLE.DOTSIZE) { + // draw border around color bar + ctx.strokeStyle = this.colorAxis; + ctx.fillStyle = this.colorDot; + ctx.beginPath(); + ctx.moveTo(left, top); + ctx.lineTo(right, top); + ctx.lineTo(right - widthMax + widthMin, bottom); + ctx.lineTo(left, bottom); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + } - module.exports = DataStep; + if (this.style === Graph3d.STYLE.DOTCOLOR || + this.style === Graph3d.STYLE.DOTSIZE) { + // print values along the color bar + var gridLineLen = 5; // px + var step = new StepNumber(this.valueMin, this.valueMax, (this.valueMax-this.valueMin)/5, true); + step.start(); + if (step.getCurrent() < this.valueMin) { + step.next(); + } + while (!step.end()) { + y = bottom - (step.getCurrent() - this.valueMin) / (this.valueMax - this.valueMin) * height; + ctx.beginPath(); + ctx.moveTo(left - gridLineLen, y); + ctx.lineTo(left, y); + ctx.stroke(); -/***/ }, -/* 15 */ -/***/ function(module, exports, __webpack_require__) { + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(43); - var moment = __webpack_require__(40); - var Component = __webpack_require__(18); + step.next(); + } + + ctx.textAlign = 'right'; + ctx.textBaseline = 'top'; + var label = this.legendLabel; + ctx.fillText(label, right, bottom + this.margin); + } + }; /** - * @constructor Range - * A Range controls a numeric range with a start and end value. - * The Range adjusts the range based on mouse events or programmatic changes, - * and triggers events when the range is changing or has been changed. - * @param {{dom: Object, domProps: Object, emitter: Emitter}} body - * @param {Object} [options] See description at Range.setOptions + * Redraw the filter */ - function Range(body, options) { - var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); - this.start = now.clone().add('days', -3).valueOf(); // Number - this.end = now.clone().add('days', 4).valueOf(); // Number - - this.body = body; - - // default options - this.defaultOptions = { - start: null, - end: null, - direction: 'horizontal', // 'horizontal' or 'vertical' - moveable: true, - zoomable: true, - min: null, - max: null, - zoomMin: 10, // milliseconds - zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000 // milliseconds - }; - this.options = util.extend({}, this.defaultOptions); - - this.props = { - touch: {} - }; - - // drag listeners for dragging - this.body.emitter.on('dragstart', this._onDragStart.bind(this)); - this.body.emitter.on('drag', this._onDrag.bind(this)); - this.body.emitter.on('dragend', this._onDragEnd.bind(this)); - - // ignore dragging when holding - this.body.emitter.on('hold', this._onHold.bind(this)); + Graph3d.prototype._redrawFilter = function() { + this.frame.filter.innerHTML = ''; - // mouse wheel for zooming - this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); - this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF + if (this.dataFilter) { + var options = { + 'visible': this.showAnimationControls + }; + var slider = new Slider(this.frame.filter, options); + this.frame.filter.slider = slider; - // pinch to zoom - this.body.emitter.on('touch', this._onTouch.bind(this)); - this.body.emitter.on('pinch', this._onPinch.bind(this)); + // TODO: css here is not nice here... + this.frame.filter.style.padding = '10px'; + //this.frame.filter.style.backgroundColor = '#EFEFEF'; - this.setOptions(options); - } + slider.setValues(this.dataFilter.values); + slider.setPlayInterval(this.animationInterval); - Range.prototype = new Component(); + // create an event handler + var me = this; + var onchange = function () { + var index = slider.getIndex(); - /** - * Set options for the range controller - * @param {Object} options Available options: - * {Number | Date | String} start Start date for the range - * {Number | Date | String} end End date for the range - * {Number} min Minimum value for start - * {Number} max Maximum value for end - * {Number} zoomMin Set a minimum value for - * (end - start). - * {Number} zoomMax Set a maximum value for - * (end - start). - * {Boolean} moveable Enable moving of the range - * by dragging. True by default - * {Boolean} zoomable Enable zooming of the range - * by pinching/scrolling. True by default - */ - Range.prototype.setOptions = function (options) { - if (options) { - // copy the options that we know - var fields = ['direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable']; - util.selectiveExtend(fields, this.options, options); + me.dataFilter.selectValue(index); + me.dataPoints = me.dataFilter._getDataPoints(); - if ('start' in options || 'end' in options) { - // apply a new range. both start and end are optional - this.setRange(options.start, options.end); - } + me.redraw(); + }; + slider.setOnChangeCallback(onchange); + } + else { + this.frame.filter.slider = undefined; } }; /** - * Test whether direction has a valid value - * @param {String} direction 'horizontal' or 'vertical' + * Redraw the slider */ - function validateDirection (direction) { - if (direction != 'horizontal' && direction != 'vertical') { - throw new TypeError('Unknown direction "' + direction + '". ' + - 'Choose "horizontal" or "vertical".'); + Graph3d.prototype._redrawSlider = function() { + if ( this.frame.filter.slider !== undefined) { + this.frame.filter.slider.redraw(); } - } + }; + /** - * Set a new start and end range - * @param {Number} [start] - * @param {Number} [end] + * Redraw common information */ - Range.prototype.setRange = function(start, end) { - var changed = this._applyRange(start, end); - if (changed) { - var params = { - start: new Date(this.start), - end: new Date(this.end) - }; - this.body.emitter.emit('rangechange', params); - this.body.emitter.emit('rangechanged', params); + Graph3d.prototype._redrawInfo = function() { + if (this.dataFilter) { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + + ctx.font = '14px arial'; // TODO: put in options + ctx.lineStyle = 'gray'; + ctx.fillStyle = 'gray'; + ctx.textAlign = 'left'; + ctx.textBaseline = 'top'; + + var x = this.margin; + var y = this.margin; + ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); } }; + /** - * Set a new start and end range. This method is the same as setRange, but - * does not trigger a range change and range changed event, and it returns - * true when the range is changed - * @param {Number} [start] - * @param {Number} [end] - * @return {Boolean} changed - * @private + * Redraw the axis */ - Range.prototype._applyRange = function(start, end) { - var newStart = (start != null) ? util.convert(start, 'Date').valueOf() : this.start, - newEnd = (end != null) ? util.convert(end, 'Date').valueOf() : this.end, - max = (this.options.max != null) ? util.convert(this.options.max, 'Date').valueOf() : null, - min = (this.options.min != null) ? util.convert(this.options.min, 'Date').valueOf() : null, - diff; + Graph3d.prototype._redrawAxis = function() { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + from, to, step, prettyStep, + text, xText, yText, zText, + offset, xOffset, yOffset, + xMin2d, xMax2d; - // check for valid number - if (isNaN(newStart) || newStart === null) { - throw new Error('Invalid start "' + start + '"'); - } - if (isNaN(newEnd) || newEnd === null) { - throw new Error('Invalid end "' + end + '"'); - } + // TODO: get the actual rendered style of the containerElement + //ctx.font = this.containerElement.style.font; + ctx.font = 24 / this.camera.getArmLength() + 'px arial'; - // prevent start < end - if (newEnd < newStart) { - newEnd = newStart; - } + // calculate the length for the short grid lines + var gridLenX = 0.025 / this.scale.x; + var gridLenY = 0.025 / this.scale.y; + var textMargin = 5 / this.camera.getArmLength(); // px + var armAngle = this.camera.getArmRotation().horizontal; - // prevent start < min - if (min !== null) { - if (newStart < min) { - diff = (min - newStart); - newStart += diff; - newEnd += diff; + // draw x-grid lines + ctx.lineWidth = 1; + prettyStep = (this.defaultXStep === undefined); + step = new StepNumber(this.xMin, this.xMax, this.xStep, prettyStep); + step.start(); + if (step.getCurrent() < this.xMin) { + step.next(); + } + while (!step.end()) { + var x = step.getCurrent(); - // prevent end > max - if (max != null) { - if (newEnd > max) { - newEnd = max; - } - } + if (this.showGrid) { + from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); + ctx.strokeStyle = this.colorGrid; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); } - } + else { + from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMin+gridLenX, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); - // prevent end > max - if (max !== null) { - if (newEnd > max) { - diff = (newEnd - max); - newStart -= diff; - newEnd -= diff; + from = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMax-gridLenX, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } - // prevent start < min - if (min != null) { - if (newStart < min) { - newStart = min; - } - } + yText = (Math.cos(armAngle) > 0) ? this.yMin : this.yMax; + text = this._convert3Dto2D(new Point3d(x, yText, this.zMin)); + if (Math.cos(armAngle * 2) > 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; + } + else if (Math.sin(armAngle * 2) < 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.colorAxis; + ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + + step.next(); } - // prevent (end-start) < zoomMin - if (this.options.zoomMin !== null) { - var zoomMin = parseFloat(this.options.zoomMin); - if (zoomMin < 0) { - zoomMin = 0; + // draw y-grid lines + ctx.lineWidth = 1; + prettyStep = (this.defaultYStep === undefined); + step = new StepNumber(this.yMin, this.yMax, this.yStep, prettyStep); + step.start(); + if (step.getCurrent() < this.yMin) { + step.next(); + } + while (!step.end()) { + if (this.showGrid) { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.colorGrid; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); } - if ((newEnd - newStart) < zoomMin) { - if ((this.end - this.start) === zoomMin) { - // ignore this action, we are already zoomed to the minimum - newStart = this.start; - newEnd = this.end; - } - else { - // zoom to the minimum - diff = (zoomMin - (newEnd - newStart)); - newStart -= diff / 2; - newEnd += diff / 2; - } + else { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMin+gridLenY, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + + from = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax-gridLenY, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); } - } - // prevent (end-start) > zoomMax - if (this.options.zoomMax !== null) { - var zoomMax = parseFloat(this.options.zoomMax); - if (zoomMax < 0) { - zoomMax = 0; + xText = (Math.sin(armAngle ) > 0) ? this.xMin : this.xMax; + text = this._convert3Dto2D(new Point3d(xText, step.getCurrent(), this.zMin)); + if (Math.cos(armAngle * 2) < 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; } - if ((newEnd - newStart) > zoomMax) { - if ((this.end - this.start) === zoomMax) { - // ignore this action, we are already zoomed to the maximum - newStart = this.start; - newEnd = this.end; - } - else { - // zoom to the maximum - diff = ((newEnd - newStart) - zoomMax); - newStart += diff / 2; - newEnd -= diff / 2; - } + else if (Math.sin(armAngle * 2) > 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; } + ctx.fillStyle = this.colorAxis; + ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + + step.next(); } - var changed = (this.start != newStart || this.end != newEnd); + // draw z-grid lines and axis + ctx.lineWidth = 1; + prettyStep = (this.defaultZStep === undefined); + step = new StepNumber(this.zMin, this.zMax, this.zStep, prettyStep); + step.start(); + if (step.getCurrent() < this.zMin) { + step.next(); + } + xText = (Math.cos(armAngle ) > 0) ? this.xMin : this.xMax; + yText = (Math.sin(armAngle ) < 0) ? this.yMin : this.yMax; + while (!step.end()) { + // TODO: make z-grid lines really 3d? + from = this._convert3Dto2D(new Point3d(xText, yText, step.getCurrent())); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(from.x - textMargin, from.y); + ctx.stroke(); - this.start = newStart; - this.end = newEnd; + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); - return changed; - }; + step.next(); + } + ctx.lineWidth = 1; + from = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + to = this._convert3Dto2D(new Point3d(xText, yText, this.zMax)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); - /** - * Retrieve the current range. - * @return {Object} An object with start and end properties - */ - Range.prototype.getRange = function() { - return { - start: this.start, - end: this.end - }; - }; + // draw x-axis + ctx.lineWidth = 1; + // line at yMin + xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); + xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(xMin2d.x, xMin2d.y); + ctx.lineTo(xMax2d.x, xMax2d.y); + ctx.stroke(); + // line at ymax + xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); + xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(xMin2d.x, xMin2d.y); + ctx.lineTo(xMax2d.x, xMax2d.y); + ctx.stroke(); - /** - * Calculate the conversion offset and scale for current range, based on - * the provided width - * @param {Number} width - * @returns {{offset: number, scale: number}} conversion - */ - Range.prototype.conversion = function (width) { - return Range.conversion(this.start, this.end, width); - }; + // draw y-axis + ctx.lineWidth = 1; + // line at xMin + from = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + // line at xMax + from = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); + ctx.strokeStyle = this.colorAxis; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); - /** - * Static method to calculate the conversion offset and scale for a range, - * based on the provided start, end, and width - * @param {Number} start - * @param {Number} end - * @param {Number} width - * @returns {{offset: number, scale: number}} conversion - */ - Range.conversion = function (start, end, width) { - if (width != 0 && (end - start != 0)) { - return { - offset: start, - scale: width / (end - start) + // draw x-label + var xLabel = this.xLabel; + if (xLabel.length > 0) { + yOffset = 0.1 / this.scale.y; + xText = (this.xMin + this.xMax) / 2; + yText = (Math.cos(armAngle) > 0) ? this.yMin - yOffset: this.yMax + yOffset; + text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + if (Math.cos(armAngle * 2) > 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; } + else if (Math.sin(armAngle * 2) < 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.colorAxis; + ctx.fillText(xLabel, text.x, text.y); } - else { - return { - offset: 0, - scale: 1 - }; - } - }; - - /** - * Start dragging horizontally or vertically - * @param {Event} event - * @private - */ - Range.prototype._onDragStart = function(event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; - - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; - this.props.touch.start = this.start; - this.props.touch.end = this.end; + // draw y-label + var yLabel = this.yLabel; + if (yLabel.length > 0) { + xOffset = 0.1 / this.scale.x; + xText = (Math.sin(armAngle ) > 0) ? this.xMin - xOffset : this.xMax + xOffset; + yText = (this.yMin + this.yMax) / 2; + text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + if (Math.cos(armAngle * 2) < 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + } + else if (Math.sin(armAngle * 2) > 0){ + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } + else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.colorAxis; + ctx.fillText(yLabel, text.x, text.y); + } - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'move'; + // draw z-label + var zLabel = this.zLabel; + if (zLabel.length > 0) { + offset = 30; // pixels. // TODO: relate to the max width of the values on the z axis? + xText = (Math.cos(armAngle ) > 0) ? this.xMin : this.xMax; + yText = (Math.sin(armAngle ) < 0) ? this.yMin : this.yMax; + zText = (this.zMin + this.zMax) / 2; + text = this._convert3Dto2D(new Point3d(xText, yText, zText)); + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(zLabel, text.x - offset, text.y); } }; /** - * Perform dragging operation - * @param {Event} event - * @private + * Calculate the color based on the given value. + * @param {Number} H Hue, a value be between 0 and 360 + * @param {Number} S Saturation, a value between 0 and 1 + * @param {Number} V Value, a value between 0 and 1 */ - Range.prototype._onDrag = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; - var direction = this.options.direction; - validateDirection(direction); - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; - var delta = (direction == 'horizontal') ? event.gesture.deltaX : event.gesture.deltaY, - interval = (this.props.touch.end - this.props.touch.start), - width = (direction == 'horizontal') ? this.body.domProps.center.width : this.body.domProps.center.height, - diffRange = -delta / width * interval; - this._applyRange(this.props.touch.start + diffRange, this.props.touch.end + diffRange); - this.body.emitter.emit('rangechange', { - start: new Date(this.start), - end: new Date(this.end) - }); - }; + Graph3d.prototype._hsv2rgb = function(H, S, V) { + var R, G, B, C, Hi, X; - /** - * Stop dragging operation - * @param {event} event - * @private - */ - Range.prototype._onDragEnd = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + C = V * S; + Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 + X = C * (1 - Math.abs(((H/60) % 2) - 1)); - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; + switch (Hi) { + case 0: R = C; G = X; B = 0; break; + case 1: R = X; G = C; B = 0; break; + case 2: R = 0; G = C; B = X; break; + case 3: R = 0; G = X; B = C; break; + case 4: R = X; G = 0; B = C; break; + case 5: R = C; G = 0; B = X; break; - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'auto'; + default: R = 0; G = 0; B = 0; break; } - // fire a rangechanged event - this.body.emitter.emit('rangechanged', { - start: new Date(this.start), - end: new Date(this.end) - }); + return 'RGB(' + parseInt(R*255) + ',' + parseInt(G*255) + ',' + parseInt(B*255) + ')'; }; + /** - * Event handler for mouse wheel event, used to zoom - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {Event} event - * @private + * Draw all datapoints as a grid + * This function can be used when the style is 'grid' */ - Range.prototype._onMouseWheel = function(event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + Graph3d.prototype._redrawDataGrid = function() { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + point, right, top, cross, + i, + topSideVisible, fillStyle, strokeStyle, lineWidth, + h, s, v, zAvg; - // retrieve delta - var delta = 0; - if (event.wheelDelta) { /* IE/Opera. */ - delta = event.wheelDelta / 120; - } else if (event.detail) { /* Mozilla case. */ - // In Mozilla, sign of delta is different than in IE. - // Also, delta is multiple of 3. - delta = -event.detail / 3; - } - // If delta is nonzero, handle it. - // Basically, delta is now positive if wheel was scrolled up, - // and negative, if wheel was scrolled down. - if (delta) { - // perform the zoom action. Delta is normally 1 or -1 + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - // adjust a negative delta such that zooming in with delta 0.1 - // equals zooming out with a delta -0.1 - var scale; - if (delta < 0) { - scale = 1 - (delta / 5); - } - else { - scale = 1 / (1 + (delta / 5)) ; - } + // calculate the translations and screen position of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); - // calculate center, the date to zoom around - var gesture = hammerUtil.fakeGesture(this, event), - pointer = getPointer(gesture.center, this.body.dom.center), - pointerDate = this._pointerToDate(pointer); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; - this.zoom(scale, pointerDate); + // calculate the translation of the point at the bottom (needed for sorting) + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; } - // Prevent default actions caused by mouse wheel - // (else the page and timeline both zoom and scroll) - event.preventDefault(); - }; + // sort the points on depth of their (x,y) position (not on z) + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - /** - * Start of a touch gesture - * @private - */ - Range.prototype._onTouch = function (event) { - this.props.touch.start = this.start; - this.props.touch.end = this.end; - this.props.touch.allowDragging = true; - this.props.touch.center = null; - }; + if (this.style === Graph3d.STYLE.SURFACE) { + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; + cross = this.dataPoints[i].pointCross; - /** - * On start of a hold gesture - * @private - */ - Range.prototype._onHold = function () { - this.props.touch.allowDragging = false; - }; - - /** - * Handle pinch event - * @param {Event} event - * @private - */ - Range.prototype._onPinch = function (event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { - this.props.touch.allowDragging = false; + if (this.showGrayBottom || this.showShadow) { + // calculate the cross product of the two vectors from center + // to left and right, in order to know whether we are looking at the + // bottom or at the top side. We can also use the cross product + // for calculating light intensity + var aDiff = Point3d.subtract(cross.trans, point.trans); + var bDiff = Point3d.subtract(top.trans, right.trans); + var crossproduct = Point3d.crossProduct(aDiff, bDiff); + var len = crossproduct.length(); + // FIXME: there is a bug with determining the surface side (shadow or colored) - if (event.gesture.touches.length > 1) { - if (!this.props.touch.center) { - this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); - } + topSideVisible = (crossproduct.z > 0); + } + else { + topSideVisible = true; + } - var scale = 1 / event.gesture.scale, - initDate = this._pointerToDate(this.props.touch.center); + if (topSideVisible) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + right.point.z + top.point.z + cross.point.z) / 4; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + s = 1; // saturation - // calculate new start and end - var newStart = parseInt(initDate + (this.props.touch.start - initDate) * scale); - var newEnd = parseInt(initDate + (this.props.touch.end - initDate) * scale); + if (this.showShadow) { + v = Math.min(1 + (crossproduct.x / len) / 2, 1); // value. TODO: scale + fillStyle = this._hsv2rgb(h, s, v); + strokeStyle = fillStyle; + } + else { + v = 1; + fillStyle = this._hsv2rgb(h, s, v); + strokeStyle = this.colorAxis; + } + } + else { + fillStyle = 'gray'; + strokeStyle = this.colorAxis; + } + lineWidth = 0.5; - // apply new range - this.setRange(newStart, newEnd); + ctx.lineWidth = lineWidth; + ctx.fillStyle = fillStyle; + ctx.strokeStyle = strokeStyle; + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.lineTo(cross.screen.x, cross.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + } + } } - }; + else { // grid style + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; - /** - * Helper function to calculate the center date for zooming - * @param {{x: Number, y: Number}} pointer - * @return {number} date - * @private - */ - Range.prototype._pointerToDate = function (pointer) { - var conversion; - var direction = this.options.direction; + if (point !== undefined) { + if (this.showPerspective) { + lineWidth = 2 / -point.trans.z; + } + else { + lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); + } + } - validateDirection(direction); + if (point !== undefined && right !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + right.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; - if (direction == 'horizontal') { - var width = this.body.domProps.center.width; - conversion = this.conversion(width); - return pointer.x / conversion.scale + conversion.offset; - } - else { - var height = this.body.domProps.center.height; - conversion = this.conversion(height); - return pointer.y / conversion.scale + conversion.offset; - } - }; + ctx.lineWidth = lineWidth; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.stroke(); + } - /** - * Get the pointer location relative to the location of the dom element - * @param {{pageX: Number, pageY: Number}} touch - * @param {Element} element HTML DOM element - * @return {{x: Number, y: Number}} pointer - * @private - */ - function getPointer (touch, element) { - return { - x: touch.pageX - util.getAbsoluteLeft(element), - y: touch.pageY - util.getAbsoluteTop(element) - }; - } + if (point !== undefined && top !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + top.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; - /** - * Zoom the range the given scale in or out. Start and end date will - * be adjusted, and the timeline will be redrawn. You can optionally give a - * date around which to zoom. - * For example, try scale = 0.9 or 1.1 - * @param {Number} scale Scaling factor. Values above 1 will zoom out, - * values below 1 will zoom in. - * @param {Number} [center] Value representing a date around which will - * be zoomed. - */ - Range.prototype.zoom = function(scale, center) { - // if centerDate is not provided, take it half between start Date and end Date - if (center == null) { - center = (this.start + this.end) / 2; + ctx.lineWidth = lineWidth; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.stroke(); + } + } } - - // calculate new start and end - var newStart = center + (this.start - center) * scale; - var newEnd = center + (this.end - center) * scale; - - this.setRange(newStart, newEnd); }; - /** - * Move the range with a given delta to the left or right. Start and end - * value will be adjusted. For example, try delta = 0.1 or -0.1 - * @param {Number} delta Moving amount. Positive value will move right, - * negative value will move left - */ - Range.prototype.move = function(delta) { - // zoom start Date and end Date relative to the centerDate - var diff = (this.end - this.start); - - // apply new values - var newStart = this.start + diff * delta; - var newEnd = this.end + diff * delta; - - // TODO: reckon with min and max range - - this.start = newStart; - this.end = newEnd; - }; /** - * Move the range to a new center point - * @param {Number} moveTo New center point of the range + * Draw all datapoints as dots. + * This function can be used when the style is 'dot' or 'dot-line' */ - Range.prototype.moveTo = function(moveTo) { - var center = (this.start + this.end) / 2; + Graph3d.prototype._redrawDataDot = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i; - var diff = center - moveTo; + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - // calculate new start and end - var newStart = this.start - diff; - var newEnd = this.end - diff; + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; - this.setRange(newStart, newEnd); - }; + // calculate the distance from the point at the bottom to the camera + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; + } - module.exports = Range; + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); + // draw the datapoints as colored circles + var dotSize = this.frame.clientWidth * 0.02; // px + for (i = 0; i < this.dataPoints.length; i++) { + var point = this.dataPoints[i]; -/***/ }, -/* 16 */ -/***/ function(module, exports, __webpack_require__) { + if (this.style === Graph3d.STYLE.DOTLINE) { + // draw a vertical line from the bottom to the graph value + //var from = this._convert3Dto2D(new Point3d(point.point.x, point.point.y, this.zMin)); + var from = this._convert3Dto2D(point.bottom); + ctx.lineWidth = 1; + ctx.strokeStyle = this.colorGrid; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(point.screen.x, point.screen.y); + ctx.stroke(); + } - // Utility functions for ordering and stacking of items - var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + // calculate radius for the circle + var size; + if (this.style === Graph3d.STYLE.DOTSIZE) { + size = dotSize/2 + 2*dotSize * (point.point.value - this.valueMin) / (this.valueMax - this.valueMin); + } + else { + size = dotSize; + } - /** - * Order items by their start data - * @param {Item[]} items - */ - exports.orderByStart = function(items) { - items.sort(function (a, b) { - return a.data.start - b.data.start; - }); - }; + var radius; + if (this.showPerspective) { + radius = size / -point.trans.z; + } + else { + radius = size * -(this.eye.z / this.camera.getArmLength()); + } + if (radius < 0) { + radius = 0; + } - /** - * Order items by their end date. If they have no end date, their start date - * is used. - * @param {Item[]} items - */ - exports.orderByEnd = function(items) { - items.sort(function (a, b) { - var aTime = ('end' in a.data) ? a.data.end : a.data.start, - bTime = ('end' in b.data) ? b.data.end : b.data.start; + var hue, color, borderColor; + if (this.style === Graph3d.STYLE.DOTCOLOR ) { + // calculate the color based on the value + hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } + else if (this.style === Graph3d.STYLE.DOTSIZE) { + color = this.colorDot; + borderColor = this.colorDotBorder; + } + else { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } - return aTime - bTime; - }); + // draw the circle + ctx.lineWidth = 1.0; + ctx.strokeStyle = borderColor; + ctx.fillStyle = color; + ctx.beginPath(); + ctx.arc(point.screen.x, point.screen.y, radius, 0, Math.PI*2, true); + ctx.fill(); + ctx.stroke(); + } }; /** - * Adjust vertical positions of the items such that they don't overlap each - * other. - * @param {Item[]} items - * All visible items - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * Margins between items and between items and the axis. - * @param {boolean} [force=false] - * If true, all items will be repositioned. If false (default), only - * items having a top===null will be re-stacked + * Draw all datapoints as bars. + * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' */ - exports.stack = function(items, margin, force) { - var i, iMax; + Graph3d.prototype._redrawDataBar = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i, j, surface, corners; - if (force) { - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = null; - } + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + + // calculate the distance from the point at the bottom to the camera + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; } - // calculate new, non-overlapping positions - for (i = 0, iMax = items.length; i < iMax; i++) { - var item = items[i]; - if (item.top === null) { - // initialize top position - item.top = margin.axis; + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - do { - // TODO: optimize checking for overlap. when there is a gap without items, - // you only need to check for items from the next item on, not from zero - var collidingItem = null; - for (var j = 0, jj = items.length; j < jj; j++) { - var other = items[j]; - if (other.top !== null && other !== item && exports.collision(item, other, margin.item)) { - collidingItem = other; - break; - } - } + // draw the datapoints as bars + var xWidth = this.xBarWidth / 2; + var yWidth = this.yBarWidth / 2; + for (i = 0; i < this.dataPoints.length; i++) { + var point = this.dataPoints[i]; - if (collidingItem != null) { - // There is a collision. Reposition the items above the colliding element - item.top = collidingItem.top + collidingItem.height + margin.item.vertical; - } - } while (collidingItem); + // determine color + var hue, color, borderColor; + if (this.style === Graph3d.STYLE.BARCOLOR ) { + // calculate the color based on the value + hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } + else if (this.style === Graph3d.STYLE.BARSIZE) { + color = this.colorDot; + borderColor = this.colorDotBorder; + } + else { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); } - } - }; - /** - * Adjust vertical positions of the items without stacking them - * @param {Item[]} items - * All visible items - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * Margins between items and between items and the axis. - */ - exports.nostack = function(items, margin) { - var i, iMax; + // calculate size for the bar + if (this.style === Graph3d.STYLE.BARSIZE) { + xWidth = (this.xBarWidth / 2) * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); + yWidth = (this.yBarWidth / 2) * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); + } - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = margin.axis; + // calculate all corner points + var me = this; + var point3d = point.point; + var top = [ + {point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, point3d.z)}, + {point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, point3d.z)}, + {point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, point3d.z)}, + {point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, point3d.z)} + ]; + var bottom = [ + {point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, this.zMin)}, + {point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, this.zMin)}, + {point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, this.zMin)}, + {point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, this.zMin)} + ]; + + // calculate screen location of the points + top.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); + bottom.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); + + // create five sides, calculate both corner points and center points + var surfaces = [ + {corners: top, center: Point3d.avg(bottom[0].point, bottom[2].point)}, + {corners: [top[0], top[1], bottom[1], bottom[0]], center: Point3d.avg(bottom[1].point, bottom[0].point)}, + {corners: [top[1], top[2], bottom[2], bottom[1]], center: Point3d.avg(bottom[2].point, bottom[1].point)}, + {corners: [top[2], top[3], bottom[3], bottom[2]], center: Point3d.avg(bottom[3].point, bottom[2].point)}, + {corners: [top[3], top[0], bottom[0], bottom[3]], center: Point3d.avg(bottom[0].point, bottom[3].point)} + ]; + point.surfaces = surfaces; + + // calculate the distance of each of the surface centers to the camera + for (j = 0; j < surfaces.length; j++) { + surface = surfaces[j]; + var transCenter = this._convertPointToTranslation(surface.center); + surface.dist = this.showPerspective ? transCenter.length() : -transCenter.z; + // TODO: this dept calculation doesn't work 100% of the cases due to perspective, + // but the current solution is fast/simple and works in 99.9% of all cases + // the issue is visible in example 14, with graph.setCameraPosition({horizontal: 2.97, vertical: 0.5, distance: 0.9}) + } + + // order the surfaces by their (translated) depth + surfaces.sort(function (a, b) { + var diff = b.dist - a.dist; + if (diff) return diff; + + // if equal depth, sort the top surface last + if (a.corners === top) return 1; + if (b.corners === top) return -1; + + // both are equal + return 0; + }); + + // draw the ordered surfaces + ctx.lineWidth = 1; + ctx.strokeStyle = borderColor; + ctx.fillStyle = color; + // NOTE: we start at j=2 instead of j=0 as we don't need to draw the two surfaces at the backside + for (j = 2; j < surfaces.length; j++) { + surface = surfaces[j]; + corners = surface.corners; + ctx.beginPath(); + ctx.moveTo(corners[3].screen.x, corners[3].screen.y); + ctx.lineTo(corners[0].screen.x, corners[0].screen.y); + ctx.lineTo(corners[1].screen.x, corners[1].screen.y); + ctx.lineTo(corners[2].screen.x, corners[2].screen.y); + ctx.lineTo(corners[3].screen.x, corners[3].screen.y); + ctx.fill(); + ctx.stroke(); + } } }; + /** - * Test if the two provided items collide - * The items must have parameters left, width, top, and height. - * @param {Item} a The first item - * @param {Item} b The second item - * @param {{horizontal: number, vertical: number}} margin - * An object containing a horizontal and vertical - * minimum required margin. - * @return {boolean} true if a and b collide, else false + * Draw a line through all datapoints. + * This function can be used when the style is 'line' */ - exports.collision = function(a, b, margin) { - return ((a.left - margin.horizontal + EPSILON) < (b.left + b.width) && - (a.left + a.width + margin.horizontal - EPSILON) > b.left && - (a.top - margin.vertical + EPSILON) < (b.top + b.height) && - (a.top + a.height + margin.vertical - EPSILON) > b.top); - }; - + Graph3d.prototype._redrawDataLine = function() { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + point, i; -/***/ }, -/* 17 */ -/***/ function(module, exports, __webpack_require__) { + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - var moment = __webpack_require__(40); + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); - /** - * @constructor TimeStep - * The class TimeStep is an iterator for dates. You provide a start date and an - * end date. The class itself determines the best scale (step size) based on the - * provided start Date, end Date, and minimumStep. - * - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * - * Alternatively, you can set a scale by hand. - * After creation, you can initialize the class by executing first(). Then you - * can iterate from the start date to the end date via next(). You can check if - * the end date is reached with the function hasNext(). After each step, you can - * retrieve the current date via getCurrent(). - * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours, - * days, to years. - * - * Version: 1.2 - * - * @param {Date} [start] The start date, for example new Date(2010, 9, 21) - * or new Date(2010, 9, 21, 23, 45, 00) - * @param {Date} [end] The end date - * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds - */ - function TimeStep(start, end, minimumStep) { - // variables - this.current = new Date(); - this._start = new Date(); - this._end = new Date(); - - this.autoScale = true; - this.scale = TimeStep.SCALE.DAY; - this.step = 1; - - // initialize the range - this.setRange(start, end, minimumStep); - } - - /// enum scale - TimeStep.SCALE = { - MILLISECOND: 1, - SECOND: 2, - MINUTE: 3, - HOUR: 4, - DAY: 5, - WEEKDAY: 6, - MONTH: 7, - YEAR: 8 - }; + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + } + // start the line + if (this.dataPoints.length > 0) { + point = this.dataPoints[0]; - /** - * Set a new range - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * @param {Date} [start] The start date and time. - * @param {Date} [end] The end date and time. - * @param {int} [minimumStep] Optional. Minimum step size in milliseconds - */ - TimeStep.prototype.setRange = function(start, end, minimumStep) { - if (!(start instanceof Date) || !(end instanceof Date)) { - throw "No legal start or end date in method setRange"; + ctx.lineWidth = 1; // TODO: make customizable + ctx.strokeStyle = 'blue'; // TODO: make customizable + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); } - this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); - this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); + // draw the datapoints as colored circles + for (i = 1; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + ctx.lineTo(point.screen.x, point.screen.y); + } - if (this.autoScale) { - this.setMinimumStep(minimumStep); + // finish the line + if (this.dataPoints.length > 0) { + ctx.stroke(); } }; /** - * Set the range iterator to the start date. + * Start a moving operation inside the provided parent element + * @param {Event} event The event that occurred (required for + * retrieving the mouse position) */ - TimeStep.prototype.first = function() { - this.current = new Date(this._start.valueOf()); - this.roundToMinor(); - }; + Graph3d.prototype._onMouseDown = function(event) { + event = event || window.event; - /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date - */ - TimeStep.prototype.roundToMinor = function() { - // round to floor - // IMPORTANT: we have no breaks in this switch! (this is no bug) - //noinspection FallthroughInSwitchStatementJS - switch (this.scale) { - case TimeStep.SCALE.YEAR: - this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); - this.current.setMonth(0); - case TimeStep.SCALE.MONTH: this.current.setDate(1); - case TimeStep.SCALE.DAY: // intentional fall through - case TimeStep.SCALE.WEEKDAY: this.current.setHours(0); - case TimeStep.SCALE.HOUR: this.current.setMinutes(0); - case TimeStep.SCALE.MINUTE: this.current.setSeconds(0); - case TimeStep.SCALE.SECOND: this.current.setMilliseconds(0); - //case TimeStep.SCALE.MILLISECOND: // nothing to do for milliseconds + // check if mouse is still down (may be up when focus is lost for example + // in an iframe) + if (this.leftButtonDown) { + this._onMouseUp(event); } - if (this.step != 1) { - // round down to the first minor value that is a multiple of the current step size - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step); break; - case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step); break; - case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step); break; - case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() - this.current.getHours() % this.step); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate((this.current.getDate()-1) - (this.current.getDate()-1) % this.step + 1); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step); break; - default: break; - } - } - }; + // only react on left mouse button down + this.leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); + if (!this.leftButtonDown && !this.touchDown) return; - /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date - */ - TimeStep.prototype.hasNext = function () { - return (this.current.valueOf() <= this._end.valueOf()); + // get mouse position (different code for IE and all other browsers) + this.startMouseX = getMouseX(event); + this.startMouseY = getMouseY(event); + + this.startStart = new Date(this.start); + this.startEnd = new Date(this.end); + this.startArmRotation = this.camera.getArmRotation(); + + this.frame.style.cursor = 'move'; + + // add event listeners to handle moving the contents + // we store the function onmousemove and onmouseup in the graph, so we can + // remove the eventlisteners lateron in the function mouseUp() + var me = this; + this.onmousemove = function (event) {me._onMouseMove(event);}; + this.onmouseup = function (event) {me._onMouseUp(event);}; + util.addEventListener(document, 'mousemove', me.onmousemove); + util.addEventListener(document, 'mouseup', me.onmouseup); + util.preventDefault(event); }; + /** - * Do the next step + * Perform moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {Event} event Well, eehh, the event */ - TimeStep.prototype.next = function() { - var prev = this.current.valueOf(); + Graph3d.prototype._onMouseMove = function (event) { + event = event || window.event; - // Two cases, needed to prevent issues with switching daylight savings - // (end of March and end of October) - if (this.current.getMonth() < 6) { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: + // calculate change in mouse position + var diffX = parseFloat(getMouseX(event)) - this.startMouseX; + var diffY = parseFloat(getMouseY(event)) - this.startMouseY; - this.current = new Date(this.current.valueOf() + this.step); break; - case TimeStep.SCALE.SECOND: this.current = new Date(this.current.valueOf() + this.step * 1000); break; - case TimeStep.SCALE.MINUTE: this.current = new Date(this.current.valueOf() + this.step * 1000 * 60); break; - case TimeStep.SCALE.HOUR: - this.current = new Date(this.current.valueOf() + this.step * 1000 * 60 * 60); - // in case of skipping an hour for daylight savings, adjust the hour again (else you get: 0h 5h 9h ... instead of 0h 4h 8h ...) - var h = this.current.getHours(); - this.current.setHours(h - (h % this.step)); - break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; - default: break; - } + var horizontalNew = this.startArmRotation.horizontal + diffX / 200; + var verticalNew = this.startArmRotation.vertical + diffY / 200; + + var snapAngle = 4; // degrees + var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + + // snap horizontally to nice angles at 0pi, 0.5pi, 1pi, 1.5pi, etc... + // the -0.001 is to take care that the vertical axis is always drawn at the left front corner + if (Math.abs(Math.sin(horizontalNew)) < snapValue) { + horizontalNew = Math.round((horizontalNew / Math.PI)) * Math.PI - 0.001; } - else { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: this.current = new Date(this.current.valueOf() + this.step); break; - case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() + this.step); break; - case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() + this.step); break; - case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() + this.step); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; - case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; - case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; - default: break; - } + if (Math.abs(Math.cos(horizontalNew)) < snapValue) { + horizontalNew = (Math.round((horizontalNew/ Math.PI - 0.5)) + 0.5) * Math.PI - 0.001; } - if (this.step != 1) { - // round down to the correct major value - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: if(this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0); break; - case TimeStep.SCALE.SECOND: if(this.current.getSeconds() < this.step) this.current.setSeconds(0); break; - case TimeStep.SCALE.MINUTE: if(this.current.getMinutes() < this.step) this.current.setMinutes(0); break; - case TimeStep.SCALE.HOUR: if(this.current.getHours() < this.step) this.current.setHours(0); break; - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: if(this.current.getDate() < this.step+1) this.current.setDate(1); break; - case TimeStep.SCALE.MONTH: if(this.current.getMonth() < this.step) this.current.setMonth(0); break; - case TimeStep.SCALE.YEAR: break; // nothing to do for year - default: break; - } + // snap vertically to nice angles + if (Math.abs(Math.sin(verticalNew)) < snapValue) { + verticalNew = Math.round((verticalNew / Math.PI)) * Math.PI; } - - // safety mechanism: if current time is still unchanged, move to the end - if (this.current.valueOf() == prev) { - this.current = new Date(this._end.valueOf()); + if (Math.abs(Math.cos(verticalNew)) < snapValue) { + verticalNew = (Math.round((verticalNew/ Math.PI - 0.5)) + 0.5) * Math.PI; } - }; + this.camera.setArmRotation(horizontalNew, verticalNew); + this.redraw(); - /** - * Get the current datetime - * @return {Date} current The current date - */ - TimeStep.prototype.getCurrent = function() { - return this.current; + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + util.preventDefault(event); }; + /** - * Set a custom scale. Autoscaling will be disabled. - * For example setScale(SCALE.MINUTES, 5) will result - * in minor steps of 5 minutes, and major steps of an hour. - * - * @param {TimeStep.SCALE} newScale - * A scale. Choose from SCALE.MILLISECOND, - * SCALE.SECOND, SCALE.MINUTE, SCALE.HOUR, - * SCALE.WEEKDAY, SCALE.DAY, SCALE.MONTH, - * SCALE.YEAR. - * @param {Number} newStep A step size, by default 1. Choose for - * example 1, 2, 5, or 10. + * Stop moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {event} event The event */ - TimeStep.prototype.setScale = function(newScale, newStep) { - this.scale = newScale; - - if (newStep > 0) { - this.step = newStep; - } + Graph3d.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; + this.leftButtonDown = false; - this.autoScale = false; + // remove event listeners here + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); + util.preventDefault(event); }; /** - * Enable or disable autoscaling - * @param {boolean} enable If true, autoascaling is set true + * After having moved the mouse, a tooltip should pop up when the mouse is resting on a data point + * @param {Event} event A mouse move event */ - TimeStep.prototype.setAutoScale = function (enable) { - this.autoScale = enable; - }; + Graph3d.prototype._onTooltip = function (event) { + var delay = 300; // ms + var mouseX = getMouseX(event) - util.getAbsoluteLeft(this.frame); + var mouseY = getMouseY(event) - util.getAbsoluteTop(this.frame); + if (!this.showTooltip) { + return; + } - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds - */ - TimeStep.prototype.setMinimumStep = function(minimumStep) { - if (minimumStep == undefined) { + if (this.tooltipTimeout) { + clearTimeout(this.tooltipTimeout); + } + + // (delayed) display of a tooltip only if no mouse button is down + if (this.leftButtonDown) { + this._hideTooltip(); return; } - var stepYear = (1000 * 60 * 60 * 24 * 30 * 12); - var stepMonth = (1000 * 60 * 60 * 24 * 30); - var stepDay = (1000 * 60 * 60 * 24); - var stepHour = (1000 * 60 * 60); - var stepMinute = (1000 * 60); - var stepSecond = (1000); - var stepMillisecond= (1); + if (this.tooltip && this.tooltip.dataPoint) { + // tooltip is currently visible + var dataPoint = this._dataPointFromXY(mouseX, mouseY); + if (dataPoint !== this.tooltip.dataPoint) { + // datapoint changed + if (dataPoint) { + this._showTooltip(dataPoint); + } + else { + this._hideTooltip(); + } + } + } + else { + // tooltip is currently not visible + var me = this; + this.tooltipTimeout = setTimeout(function () { + me.tooltipTimeout = null; - // find the smallest step that is larger than the provided minimumStep - if (stepYear*1000 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1000;} - if (stepYear*500 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 500;} - if (stepYear*100 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 100;} - if (stepYear*50 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 50;} - if (stepYear*10 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 10;} - if (stepYear*5 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 5;} - if (stepYear > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1;} - if (stepMonth*3 > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 3;} - if (stepMonth > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 1;} - if (stepDay*5 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 5;} - if (stepDay*2 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 2;} - if (stepDay > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 1;} - if (stepDay/2 > minimumStep) {this.scale = TimeStep.SCALE.WEEKDAY; this.step = 1;} - if (stepHour*4 > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 4;} - if (stepHour > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 1;} - if (stepMinute*15 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 15;} - if (stepMinute*10 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 10;} - if (stepMinute*5 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 5;} - if (stepMinute > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 1;} - if (stepSecond*15 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 15;} - if (stepSecond*10 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 10;} - if (stepSecond*5 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 5;} - if (stepSecond > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 1;} - if (stepMillisecond*200 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 200;} - if (stepMillisecond*100 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 100;} - if (stepMillisecond*50 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 50;} - if (stepMillisecond*10 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 10;} - if (stepMillisecond*5 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 5;} - if (stepMillisecond > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 1;} + // show a tooltip if we have a data point + var dataPoint = me._dataPointFromXY(mouseX, mouseY); + if (dataPoint) { + me._showTooltip(dataPoint); + } + }, delay); + } }; /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate + * Event handler for touchstart event on mobile devices */ - TimeStep.prototype.snap = function(date) { - var clone = new Date(date.valueOf()); + Graph3d.prototype._onTouchStart = function(event) { + this.touchDown = true; - if (this.scale == TimeStep.SCALE.YEAR) { - var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); - clone.setFullYear(Math.round(year / this.step) * this.step); - clone.setMonth(0); - clone.setDate(0); - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.MONTH) { - if (clone.getDate() > 15) { - clone.setDate(1); - clone.setMonth(clone.getMonth() + 1); - // important: first set Date to 1, after that change the month. - } - else { - clone.setDate(1); - } + var me = this; + this.ontouchmove = function (event) {me._onTouchMove(event);}; + this.ontouchend = function (event) {me._onTouchEnd(event);}; + util.addEventListener(document, 'touchmove', me.ontouchmove); + util.addEventListener(document, 'touchend', me.ontouchend); - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.DAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 24) * 24); break; - default: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.WEEKDAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - default: - clone.setHours(Math.round(clone.getHours() / 6) * 6); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.HOUR) { - switch (this.step) { - case 4: - clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; - default: - clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; - } - clone.setSeconds(0); - clone.setMilliseconds(0); - } else if (this.scale == TimeStep.SCALE.MINUTE) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); - clone.setSeconds(0); - break; - case 5: - clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; - default: - clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; - } - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.SECOND) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); - clone.setMilliseconds(0); - break; - case 5: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; - default: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; - } - } - else if (this.scale == TimeStep.SCALE.MILLISECOND) { - var step = this.step > 5 ? this.step / 2 : 1; - clone.setMilliseconds(Math.round(clone.getMilliseconds() / step) * step); - } - - return clone; + this._onMouseDown(event); }; /** - * Check if the current value is a major value (for example when the step - * is DAY, a major value is each first day of the MONTH) - * @return {boolean} true if current date is major, else false. + * Event handler for touchmove event on mobile devices */ - TimeStep.prototype.isMajor = function() { - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: - return (this.current.getMilliseconds() == 0); - case TimeStep.SCALE.SECOND: - return (this.current.getSeconds() == 0); - case TimeStep.SCALE.MINUTE: - return (this.current.getHours() == 0) && (this.current.getMinutes() == 0); - // Note: this is no bug. Major label is equal for both minute and hour scale - case TimeStep.SCALE.HOUR: - return (this.current.getHours() == 0); - case TimeStep.SCALE.WEEKDAY: // intentional fall through - case TimeStep.SCALE.DAY: - return (this.current.getDate() == 1); - case TimeStep.SCALE.MONTH: - return (this.current.getMonth() == 0); - case TimeStep.SCALE.YEAR: - return false; - default: - return false; - } + Graph3d.prototype._onTouchMove = function(event) { + this._onMouseMove(event); }; - /** - * Returns formatted text for the minor axislabel, depending on the current - * date and the scale. For example when scale is MINUTE, the current time is - * formatted as "hh:mm". - * @param {Date} [date] custom date. if not provided, current date is taken + * Event handler for touchend event on mobile devices */ - TimeStep.prototype.getLabelMinor = function(date) { - if (date == undefined) { - date = this.current; - } + Graph3d.prototype._onTouchEnd = function(event) { + this.touchDown = false; - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND: return moment(date).format('SSS'); - case TimeStep.SCALE.SECOND: return moment(date).format('s'); - case TimeStep.SCALE.MINUTE: return moment(date).format('HH:mm'); - case TimeStep.SCALE.HOUR: return moment(date).format('HH:mm'); - case TimeStep.SCALE.WEEKDAY: return moment(date).format('ddd D'); - case TimeStep.SCALE.DAY: return moment(date).format('D'); - case TimeStep.SCALE.MONTH: return moment(date).format('MMM'); - case TimeStep.SCALE.YEAR: return moment(date).format('YYYY'); - default: return ''; - } + util.removeEventListener(document, 'touchmove', this.ontouchmove); + util.removeEventListener(document, 'touchend', this.ontouchend); + + this._onMouseUp(event); }; /** - * Returns formatted text for the major axis label, depending on the current - * date and the scale. For example when scale is MINUTE, the major scale is - * hours, and the hour will be formatted as "hh". - * @param {Date} [date] custom date. if not provided, current date is taken + * Event handler for mouse wheel event, used to zoom the graph + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {event} event The event */ - TimeStep.prototype.getLabelMajor = function(date) { - if (date == undefined) { - date = this.current; - } + Graph3d.prototype._onWheel = function(event) { + if (!event) /* For IE. */ + event = window.event; - //noinspection FallthroughInSwitchStatementJS - switch (this.scale) { - case TimeStep.SCALE.MILLISECOND:return moment(date).format('HH:mm:ss'); - case TimeStep.SCALE.SECOND: return moment(date).format('D MMMM HH:mm'); - case TimeStep.SCALE.MINUTE: - case TimeStep.SCALE.HOUR: return moment(date).format('ddd D MMMM'); - case TimeStep.SCALE.WEEKDAY: - case TimeStep.SCALE.DAY: return moment(date).format('MMMM YYYY'); - case TimeStep.SCALE.MONTH: return moment(date).format('YYYY'); - case TimeStep.SCALE.YEAR: return ''; - default: return ''; + // retrieve delta + var delta = 0; + if (event.wheelDelta) { /* IE/Opera. */ + delta = event.wheelDelta/120; + } else if (event.detail) { /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail/3; } - }; - - module.exports = TimeStep; - -/***/ }, -/* 18 */ -/***/ function(module, exports, __webpack_require__) { + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + var oldLength = this.camera.getArmLength(); + var newLength = oldLength * (1 - delta / 10); - /** - * Prototype for visual components - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] - * @param {Object} [options] - */ - function Component (body, options) { - this.options = null; - this.props = null; - } + this.camera.setArmLength(newLength); + this.redraw(); - /** - * Set options for the component. The new options will be merged into the - * current options. - * @param {Object} options - */ - Component.prototype.setOptions = function(options) { - if (options) { - util.extend(this.options, options); + this._hideTooltip(); } - }; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - Component.prototype.redraw = function() { - // should be implemented by the component - return false; - }; + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); - /** - * Destroy the component. Cleanup DOM and event listeners - */ - Component.prototype.destroy = function() { - // should be implemented by the component + // Prevent default actions caused by mouse wheel. + // That might be ugly, but we handle scrolls somehow + // anyway, so don't bother here.. + util.preventDefault(event); }; /** - * Test whether the component is resized since the last time _isResized() was - * called. - * @return {Boolean} Returns true if the component is resized - * @protected + * Test whether a point lies inside given 2D triangle + * @param {Point2d} point + * @param {Point2d[]} triangle + * @return {boolean} Returns true if given point lies inside or on the edge of the triangle + * @private */ - Component.prototype._isResized = function() { - var resized = (this.props._previousWidth !== this.props.width || - this.props._previousHeight !== this.props.height); - - this.props._previousWidth = this.props.width; - this.props._previousHeight = this.props.height; - - return resized; - }; - - module.exports = Component; + Graph3d.prototype._insideTriangle = function (point, triangle) { + var a = triangle[0], + b = triangle[1], + c = triangle[2]; + function sign (x) { + return x > 0 ? 1 : x < 0 ? -1 : 0; + } -/***/ }, -/* 19 */ -/***/ function(module, exports, __webpack_require__) { + var as = sign((b.x - a.x) * (point.y - a.y) - (b.y - a.y) * (point.x - a.x)); + var bs = sign((c.x - b.x) * (point.y - b.y) - (c.y - b.y) * (point.x - b.x)); + var cs = sign((a.x - c.x) * (point.y - c.y) - (a.y - c.y) * (point.x - c.x)); - var util = __webpack_require__(1); - var Component = __webpack_require__(18); + // each of the three signs must be either equal to each other or zero + return (as == 0 || bs == 0 || as == bs) && + (bs == 0 || cs == 0 || bs == cs) && + (as == 0 || cs == 0 || as == cs); + }; /** - * A current time bar - * @param {{range: Range, dom: Object, domProps: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCurrentTime] - * @constructor CurrentTime - * @extends Component + * Find a data point close to given screen position (x, y) + * @param {Number} x + * @param {Number} y + * @return {Object | null} The closest data point or null if not close to any data point + * @private */ - function CurrentTime (body, options) { - this.body = body; + Graph3d.prototype._dataPointFromXY = function (x, y) { + var i, + distMax = 100, // px + dataPoint = null, + closestDataPoint = null, + closestDist = null, + center = new Point2d(x, y); - // default options - this.defaultOptions = { - showCurrentTime: true - }; - this.options = util.extend({}, this.defaultOptions); + if (this.style === Graph3d.STYLE.BAR || + this.style === Graph3d.STYLE.BARCOLOR || + this.style === Graph3d.STYLE.BARSIZE) { + // the data points are ordered from far away to closest + for (i = this.dataPoints.length - 1; i >= 0; i--) { + dataPoint = this.dataPoints[i]; + var surfaces = dataPoint.surfaces; + if (surfaces) { + for (var s = surfaces.length - 1; s >= 0; s--) { + // split each surface in two triangles, and see if the center point is inside one of these + var surface = surfaces[s]; + var corners = surface.corners; + var triangle1 = [corners[0].screen, corners[1].screen, corners[2].screen]; + var triangle2 = [corners[2].screen, corners[3].screen, corners[0].screen]; + if (this._insideTriangle(center, triangle1) || + this._insideTriangle(center, triangle2)) { + // return immediately at the first hit + return dataPoint; + } + } + } + } + } + else { + // find the closest data point, using distance to the center of the point on 2d screen + for (i = 0; i < this.dataPoints.length; i++) { + dataPoint = this.dataPoints[i]; + var point = dataPoint.screen; + if (point) { + var distX = Math.abs(x - point.x); + var distY = Math.abs(y - point.y); + var dist = Math.sqrt(distX * distX + distY * distY); - this._create(); + if ((closestDist === null || dist < closestDist) && dist < distMax) { + closestDist = dist; + closestDataPoint = dataPoint; + } + } + } + } - this.setOptions(options); - } - CurrentTime.prototype = new Component(); + return closestDataPoint; + }; /** - * Create the HTML DOM for the current time bar + * Display a tooltip for given data point + * @param {Object} dataPoint * @private */ - CurrentTime.prototype._create = function() { - var bar = document.createElement('div'); - bar.className = 'currenttime'; - bar.style.position = 'absolute'; - bar.style.top = '0px'; - bar.style.height = '100%'; - - this.bar = bar; - }; + Graph3d.prototype._showTooltip = function (dataPoint) { + var content, line, dot; - /** - * Destroy the CurrentTime bar - */ - CurrentTime.prototype.destroy = function () { - this.options.showCurrentTime = false; - this.redraw(); // will remove the bar from the DOM and stop refreshing + if (!this.tooltip) { + content = document.createElement('div'); + content.style.position = 'absolute'; + content.style.padding = '10px'; + content.style.border = '1px solid #4d4d4d'; + content.style.color = '#1a1a1a'; + content.style.background = 'rgba(255,255,255,0.7)'; + content.style.borderRadius = '2px'; + content.style.boxShadow = '5px 5px 10px rgba(128,128,128,0.5)'; - this.body = null; - }; + line = document.createElement('div'); + line.style.position = 'absolute'; + line.style.height = '40px'; + line.style.width = '0'; + line.style.borderLeft = '1px solid #4d4d4d'; - /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCurrentTime] - */ - CurrentTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCurrentTime'], this.options, options); - } - }; + dot = document.createElement('div'); + dot.style.position = 'absolute'; + dot.style.height = '0'; + dot.style.width = '0'; + dot.style.border = '5px solid #4d4d4d'; + dot.style.borderRadius = '5px'; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - CurrentTime.prototype.redraw = function() { - if (this.options.showCurrentTime) { - var parent = this.body.dom.backgroundVertical; - if (this.bar.parentNode != parent) { - // attach to the dom - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); + this.tooltip = { + dataPoint: null, + dom: { + content: content, + line: line, + dot: dot } - parent.appendChild(this.bar); - - this.start(); - } + }; + } + else { + content = this.tooltip.dom.content; + line = this.tooltip.dom.line; + dot = this.tooltip.dom.dot; + } - var now = new Date(); - var x = this.body.util.toScreen(now); + this._hideTooltip(); - this.bar.style.left = x + 'px'; - this.bar.title = 'Current time: ' + now; + this.tooltip.dataPoint = dataPoint; + if (typeof this.showTooltip === 'function') { + content.innerHTML = this.showTooltip(dataPoint.point); } else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } - this.stop(); + content.innerHTML = '' + + '' + + '' + + '' + + '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; } - return false; + content.style.left = '0'; + content.style.top = '0'; + this.frame.appendChild(content); + this.frame.appendChild(line); + this.frame.appendChild(dot); + + // calculate sizes + var contentWidth = content.offsetWidth; + var contentHeight = content.offsetHeight; + var lineHeight = line.offsetHeight; + var dotWidth = dot.offsetWidth; + var dotHeight = dot.offsetHeight; + + var left = dataPoint.screen.x - contentWidth / 2; + left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); + + line.style.left = dataPoint.screen.x + 'px'; + line.style.top = (dataPoint.screen.y - lineHeight) + 'px'; + content.style.left = left + 'px'; + content.style.top = (dataPoint.screen.y - lineHeight - contentHeight) + 'px'; + dot.style.left = (dataPoint.screen.x - dotWidth / 2) + 'px'; + dot.style.top = (dataPoint.screen.y - dotHeight / 2) + 'px'; }; /** - * Start auto refreshing the current time bar + * Hide the tooltip when displayed + * @private */ - CurrentTime.prototype.start = function() { - var me = this; - - function update () { - me.stop(); + Graph3d.prototype._hideTooltip = function () { + if (this.tooltip) { + this.tooltip.dataPoint = null; - // determine interval to refresh - var scale = me.body.range.conversion(me.body.domProps.center.width).scale; - var interval = 1 / scale / 10; - if (interval < 30) interval = 30; - if (interval > 1000) interval = 1000; + for (var prop in this.tooltip.dom) { + if (this.tooltip.dom.hasOwnProperty(prop)) { + var elem = this.tooltip.dom[prop]; + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + } + } + }; - me.redraw(); + /**--------------------------------------------------------------------------**/ - // start a timer to adjust for the new time - me.currentTimeTimer = setTimeout(update, interval); - } - update(); + /** + * Get the horizontal mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse x + */ + getMouseX = function(event) { + if ('clientX' in event) return event.clientX; + return event.targetTouches[0] && event.targetTouches[0].clientX || 0; }; /** - * Stop auto refreshing the current time bar + * Get the vertical mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse y */ - CurrentTime.prototype.stop = function() { - if (this.currentTimeTimer !== undefined) { - clearTimeout(this.currentTimeTimer); - delete this.currentTimeTimer; - } + getMouseY = function(event) { + if ('clientY' in event) return event.clientY; + return event.targetTouches[0] && event.targetTouches[0].clientY || 0; }; - module.exports = CurrentTime; + module.exports = Graph3d; /***/ }, -/* 20 */ +/* 10 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(41); - var util = __webpack_require__(1); - var Component = __webpack_require__(18); - + /** - * A custom time bar - * @param {{range: Range, dom: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCustomTime] - * @constructor CustomTime - * @extends Component + * Expose `Emitter`. */ - function CustomTime (body, options) { - this.body = body; + module.exports = Emitter; - // default options - this.defaultOptions = { - showCustomTime: false - }; - this.options = util.extend({}, this.defaultOptions); + /** + * Initialize a new `Emitter`. + * + * @api public + */ - this.customTime = new Date(); - this.eventParams = {}; // stores state parameters while dragging the bar + function Emitter(obj) { + if (obj) return mixin(obj); + }; - // create the DOM - this._create(); + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ - this.setOptions(options); + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; } - CustomTime.prototype = new Component(); - /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCustomTime] + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public */ - CustomTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCustomTime'], this.options, options); - } + + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; }; /** - * Create the DOM for the custom time - * @private + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public */ - CustomTime.prototype._create = function() { - var bar = document.createElement('div'); - bar.className = 'customtime'; - bar.style.position = 'absolute'; - bar.style.top = '0px'; - bar.style.height = '100%'; - this.bar = bar; - var drag = document.createElement('div'); - drag.style.position = 'relative'; - drag.style.top = '0px'; - drag.style.left = '-10px'; - drag.style.height = '100%'; - drag.style.width = '20px'; - bar.appendChild(drag); + Emitter.prototype.once = function(event, fn){ + var self = this; + this._callbacks = this._callbacks || {}; - // attach event listeners - this.hammer = Hammer(bar, { - prevent_default: true - }); - this.hammer.on('dragstart', this._onDragStart.bind(this)); - this.hammer.on('drag', this._onDrag.bind(this)); - this.hammer.on('dragend', this._onDragEnd.bind(this)); + function on() { + self.off(event, on); + fn.apply(this, arguments); + } + + on.fn = fn; + this.on(event, on); + return this; }; /** - * Destroy the CustomTime bar + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public */ - CustomTime.prototype.destroy = function () { - this.options.showCustomTime = false; - this.redraw(); // will remove the bar from the DOM - this.hammer.enable(false); - this.hammer = null; + Emitter.prototype.off = + Emitter.prototype.removeListener = + Emitter.prototype.removeAllListeners = + Emitter.prototype.removeEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; - this.body = null; + // all + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } + + // specific event + var callbacks = this._callbacks[event]; + if (!callbacks) return this; + + // remove all handlers + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; + } + + // remove specific handler + var cb; + for (var i = 0; i < callbacks.length; i++) { + cb = callbacks[i]; + if (cb === fn || cb.fn === fn) { + callbacks.splice(i, 1); + break; + } + } + return this; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} */ - CustomTime.prototype.redraw = function () { - if (this.options.showCustomTime) { - var parent = this.body.dom.backgroundVertical; - if (this.bar.parentNode != parent) { - // attach to the dom - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } - parent.appendChild(this.bar); - } - var x = this.body.util.toScreen(this.customTime); + Emitter.prototype.emit = function(event){ + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1) + , callbacks = this._callbacks[event]; - this.bar.style.left = x + 'px'; - this.bar.title = 'Time: ' + this.customTime; - } - else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); + if (callbacks) { + callbacks = callbacks.slice(0); + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); } } - return false; + return this; }; /** - * Set custom time. - * @param {Date} time + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public */ - CustomTime.prototype.setCustomTime = function(time) { - this.customTime = new Date(time.valueOf()); - this.redraw(); + + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; }; /** - * Retrieve the current custom time. - * @return {Date} customTime + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public */ - CustomTime.prototype.getCustomTime = function() { - return new Date(this.customTime.valueOf()); + + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; }; + +/***/ }, +/* 11 */ +/***/ function(module, exports, __webpack_require__) { + /** - * Start moving horizontally - * @param {Event} event - * @private + * @prototype Point3d + * @param {Number} [x] + * @param {Number} [y] + * @param {Number} [z] */ - CustomTime.prototype._onDragStart = function(event) { - this.eventParams.dragging = true; - this.eventParams.customTime = this.customTime; + function Point3d(x, y, z) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + this.z = z !== undefined ? z : 0; + }; - event.stopPropagation(); - event.preventDefault(); + /** + * Subtract the two provided points, returns a-b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a-b + */ + Point3d.subtract = function(a, b) { + var sub = new Point3d(); + sub.x = a.x - b.x; + sub.y = a.y - b.y; + sub.z = a.z - b.z; + return sub; }; /** - * Perform moving operating. - * @param {Event} event - * @private + * Add the two provided points, returns a+b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a+b */ - CustomTime.prototype._onDrag = function (event) { - if (!this.eventParams.dragging) return; + Point3d.add = function(a, b) { + var sum = new Point3d(); + sum.x = a.x + b.x; + sum.y = a.y + b.y; + sum.z = a.z + b.z; + return sum; + }; - var deltaX = event.gesture.deltaX, - x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, - time = this.body.util.toTime(x); + /** + * Calculate the average of two 3d points + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} The average, (a+b)/2 + */ + Point3d.avg = function(a, b) { + return new Point3d( + (a.x + b.x) / 2, + (a.y + b.y) / 2, + (a.z + b.z) / 2 + ); + }; - this.setCustomTime(time); + /** + * Calculate the cross product of the two provided points, returns axb + * Documentation: http://en.wikipedia.org/wiki/Cross_product + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} cross product axb + */ + Point3d.crossProduct = function(a, b) { + var crossproduct = new Point3d(); - // fire a timechange event - this.body.emitter.emit('timechange', { - time: new Date(this.customTime.valueOf()) - }); + crossproduct.x = a.y * b.z - a.z * b.y; + crossproduct.y = a.z * b.x - a.x * b.z; + crossproduct.z = a.x * b.y - a.y * b.x; - event.stopPropagation(); - event.preventDefault(); + return crossproduct; }; + /** - * Stop moving operating. - * @param {event} event - * @private + * Rtrieve the length of the vector (or the distance from this point to the origin + * @return {Number} length */ - CustomTime.prototype._onDragEnd = function (event) { - if (!this.eventParams.dragging) return; - - // fire a timechanged event - this.body.emitter.emit('timechanged', { - time: new Date(this.customTime.valueOf()) - }); - - event.stopPropagation(); - event.preventDefault(); + Point3d.prototype.length = function() { + return Math.sqrt( + this.x * this.x + + this.y * this.y + + this.z * this.z + ); }; - module.exports = CustomTime; + module.exports = Point3d; /***/ }, -/* 21 */ +/* 12 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(2); - var Component = __webpack_require__(18); - var DataStep = __webpack_require__(14); - /** - * A horizontal time axis - * @param {Object} [options] See DataAxis.setOptions for the available - * options. - * @constructor DataAxis - * @extends Component - * @param body + * @prototype Point2d + * @param {Number} [x] + * @param {Number} [y] */ - function DataAxis (body, options, svg) { - this.id = util.randomUUID(); - this.body = body; - - this.defaultOptions = { - orientation: 'left', // supported: 'left', 'right' - showMinorLabels: true, - showMajorLabels: true, - icons: true, - majorLinesOffset: 7, - minorLinesOffset: 4, - labelOffsetX: 10, - labelOffsetY: 2, - iconWidth: 20, - width: '40px', - visible: true - }; + Point2d = function (x, y) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + }; - this.linegraphSVG = svg; - this.props = {}; - this.DOMelements = { // dynamic elements - lines: {}, - labels: {} - }; + module.exports = Point2d; - this.dom = {}; - this.range = {start:0, end:0}; +/***/ }, +/* 13 */ +/***/ function(module, exports, __webpack_require__) { - this.options = util.extend({}, this.defaultOptions); - this.conversionFactor = 1; - - this.setOptions(options); - this.width = Number(('' + this.options.width).replace("px","")); - this.minWidth = this.width; - this.height = this.linegraphSVG.offsetHeight; - - this.stepPixels = 25; - this.stepPixelsForced = 25; - this.lineOffset = 0; - this.master = true; - this.svgElements = {}; - - - this.groups = {}; - this.amountOfGroups = 0; - - // create the HTML DOM - this._create(); - } - - DataAxis.prototype = new Component(); + var Point3d = __webpack_require__(11); + /** + * @class Camera + * The camera is mounted on a (virtual) camera arm. The camera arm can rotate + * The camera is always looking in the direction of the origin of the arm. + * This way, the camera always rotates around one fixed point, the location + * of the camera arm. + * + * Documentation: + * http://en.wikipedia.org/wiki/3D_projection + */ + Camera = function () { + this.armLocation = new Point3d(); + this.armRotation = {}; + this.armRotation.horizontal = 0; + this.armRotation.vertical = 0; + this.armLength = 1.7; + this.cameraLocation = new Point3d(); + this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); - DataAxis.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; - } - this.amountOfGroups += 1; + this.calculateCameraOrientation(); }; - DataAxis.prototype.updateGroup = function(label, graphOptions) { - this.groups[label] = graphOptions; - }; + /** + * Set the location (origin) of the arm + * @param {Number} x Normalized value of x + * @param {Number} y Normalized value of y + * @param {Number} z Normalized value of z + */ + Camera.prototype.setArmLocation = function(x, y, z) { + this.armLocation.x = x; + this.armLocation.y = y; + this.armLocation.z = z; - DataAxis.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; - } + this.calculateCameraOrientation(); }; + /** + * Set the rotation of the camera arm + * @param {Number} horizontal The horizontal rotation, between 0 and 2*PI. + * Optional, can be left undefined. + * @param {Number} vertical The vertical rotation, between 0 and 0.5*PI + * if vertical=0.5*PI, the graph is shown from the + * top. Optional, can be left undefined. + */ + Camera.prototype.setArmRotation = function(horizontal, vertical) { + if (horizontal !== undefined) { + this.armRotation.horizontal = horizontal; + } - DataAxis.prototype.setOptions = function (options) { - if (options) { - var redraw = false; - if (this.options.orientation != options.orientation && options.orientation !== undefined) { - redraw = true; - } - var fields = [ - 'orientation', - 'showMinorLabels', - 'showMajorLabels', - 'icons', - 'majorLinesOffset', - 'minorLinesOffset', - 'labelOffsetX', - 'labelOffsetY', - 'iconWidth', - 'width', - 'visible']; - util.selectiveExtend(fields, this.options, options); - - this.minWidth = Number(('' + this.options.width).replace("px","")); + if (vertical !== undefined) { + this.armRotation.vertical = vertical; + if (this.armRotation.vertical < 0) this.armRotation.vertical = 0; + if (this.armRotation.vertical > 0.5*Math.PI) this.armRotation.vertical = 0.5*Math.PI; + } - if (redraw == true && this.dom.frame) { - this.hide(); - this.show(); - } + if (horizontal !== undefined || vertical !== undefined) { + this.calculateCameraOrientation(); } }; - /** - * Create the HTML DOM for the DataAxis + * Retrieve the current arm rotation + * @return {object} An object with parameters horizontal and vertical */ - DataAxis.prototype._create = function() { - this.dom.frame = document.createElement('div'); - this.dom.frame.style.width = this.options.width; - this.dom.frame.style.height = this.height; - - this.dom.lineContainer = document.createElement('div'); - this.dom.lineContainer.style.width = '100%'; - this.dom.lineContainer.style.height = this.height; + Camera.prototype.getArmRotation = function() { + var rot = {}; + rot.horizontal = this.armRotation.horizontal; + rot.vertical = this.armRotation.vertical; - // create svg element for graph drawing. - this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.svg.style.position = "absolute"; - this.svg.style.top = '0px'; - this.svg.style.height = '100%'; - this.svg.style.width = '100%'; - this.svg.style.display = "block"; - this.dom.frame.appendChild(this.svg); + return rot; }; - DataAxis.prototype._redrawGroupIcons = function () { - DOMutil.prepareElements(this.svgElements); - - var x; - var iconWidth = this.options.iconWidth; - var iconHeight = 15; - var iconOffset = 4; - var y = iconOffset + 0.5 * iconHeight; + /** + * Set the (normalized) length of the camera arm. + * @param {Number} length A length between 0.71 and 5.0 + */ + Camera.prototype.setArmLength = function(length) { + if (length === undefined) + return; - if (this.options.orientation == 'left') { - x = iconOffset; - } - else { - x = this.width - iconWidth - iconOffset; - } + this.armLength = length; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + iconOffset; - } - } - } + // Radius must be larger than the corner of the graph, + // which has a distance of sqrt(0.5^2+0.5^2) = 0.71 from the center of the + // graph + if (this.armLength < 0.71) this.armLength = 0.71; + if (this.armLength > 5.0) this.armLength = 5.0; - DOMutil.cleanupElements(this.svgElements); + this.calculateCameraOrientation(); }; /** - * Create the HTML DOM for the DataAxis + * Retrieve the arm length + * @return {Number} length */ - DataAxis.prototype.show = function() { - if (!this.dom.frame.parentNode) { - if (this.options.orientation == 'left') { - this.body.dom.left.appendChild(this.dom.frame); - } - else { - this.body.dom.right.appendChild(this.dom.frame); - } - } - - if (!this.dom.lineContainer.parentNode) { - this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); - } + Camera.prototype.getArmLength = function() { + return this.armLength; }; /** - * Create the HTML DOM for the DataAxis + * Retrieve the camera location + * @return {Point3d} cameraLocation */ - DataAxis.prototype.hide = function() { - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } - - if (this.dom.lineContainer.parentNode) { - this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); - } + Camera.prototype.getCameraLocation = function() { + return this.cameraLocation; }; /** - * Set a range (start and end) - * @param end - * @param start - * @param end + * Retrieve the camera rotation + * @return {Point3d} cameraRotation */ - DataAxis.prototype.setRange = function (start, end) { - this.range.start = start; - this.range.end = end; + Camera.prototype.getCameraRotation = function() { + return this.cameraRotation; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Calculate the location and rotation of the camera based on the + * position and orientation of the camera arm */ - DataAxis.prototype.redraw = function () { - var changeCalled = false; - var activeGroups = 0; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - activeGroups++; - } - } - } - if (this.amountOfGroups == 0 || activeGroups == 0) { - this.hide(); - } - else { - this.show(); - this.height = Number(this.linegraphSVG.style.height.replace("px","")); - // svg offsetheight did not work in firefox and explorer... + Camera.prototype.calculateCameraOrientation = function() { + // calculate location of the camera + this.cameraLocation.x = this.armLocation.x - this.armLength * Math.sin(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.y = this.armLocation.y - this.armLength * Math.cos(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.z = this.armLocation.z + this.armLength * Math.sin(this.armRotation.vertical); - this.dom.lineContainer.style.height = this.height + 'px'; - this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; + // calculate rotation of the camera + this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; + this.cameraRotation.y = 0; + this.cameraRotation.z = -this.armRotation.horizontal; + }; - var props = this.props; - var frame = this.dom.frame; + module.exports = Camera; - // update classname - frame.className = 'dataaxis'; +/***/ }, +/* 14 */ +/***/ function(module, exports, __webpack_require__) { - // calculate character width and height - this._calculateCharSize(); - - var orientation = this.options.orientation; - 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.minorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; - props.minorLineHeight = 1; - props.majorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; - props.majorLineHeight = 1; - - // take frame offline while updating (is almost twice as fast) - if (orientation == 'left') { - frame.style.top = '0'; - frame.style.left = '0'; - frame.style.bottom = ''; - frame.style.width = this.width + 'px'; - frame.style.height = this.height + "px"; - } - else { // right - frame.style.top = ''; - frame.style.bottom = '0'; - frame.style.left = '0'; - frame.style.width = this.width + 'px'; - frame.style.height = this.height + "px"; - } - changeCalled = this._redrawLabels(); - if (this.options.icons == true) { - this._redrawGroupIcons(); - } - } - return changeCalled; - }; + var DataView = __webpack_require__(8); /** - * Repaint major and minor text labels and vertical grid lines - * @private + * @class Filter + * + * @param {DataSet} data The google data table + * @param {Number} column The index of the column to be filtered + * @param {Graph} graph The graph */ - DataAxis.prototype._redrawLabels = function () { - DOMutil.prepareElements(this.DOMelements.lines); - DOMutil.prepareElements(this.DOMelements.labels); + function Filter (data, column, graph) { + this.data = data; + this.column = column; + this.graph = graph; // the parent graph - var orientation = this.options['orientation']; + this.index = undefined; + this.value = undefined; - // calculate range and step (step such that we have space for 7 characters per label) - var minimumStep = this.master ? this.props.majorCharHeight || 10 : this.stepPixelsForced; - var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight); - this.step = step; - step.first(); - // get the distance in pixels for a step - var stepPixels = this.dom.frame.offsetHeight / ((step.marginRange / step.step) + 1); - this.stepPixels = stepPixels; + // read all distinct values and select the first one + this.values = graph.getDistinctValues(data.get(), this.column); - var amountOfSteps = this.height / stepPixels; - var stepDifference = 0; + // sort both numeric and string values correctly + this.values.sort(function (a, b) { + return a > b ? 1 : a < b ? -1 : 0; + }); - if (this.master == false) { - stepPixels = this.stepPixelsForced; - stepDifference = Math.round((this.height / stepPixels) - amountOfSteps); - for (var i = 0; i < 0.5 * stepDifference; i++) { - step.previous(); - } - amountOfSteps = this.height / stepPixels; + if (this.values.length > 0) { + this.selectValue(0); } + // create an array with the filtered datapoints. this will be loaded afterwards + this.dataPoints = []; - this.valueAtZero = step.marginEnd; - var marginStartPos = 0; + this.loaded = false; + this.onLoadCallback = undefined; - // do not draw the first label - var max = 1; - step.next(); + if (graph.animationPreload) { + this.loaded = false; + this.loadInBackground(); + } + else { + this.loaded = true; + } + }; - this.maxLabelSize = 0; - var y = 0; - while (max < Math.round(amountOfSteps)) { - y = Math.round(max * stepPixels); - marginStartPos = max * stepPixels; - var isMajor = step.isMajor(); + /** + * Return the label + * @return {string} label + */ + Filter.prototype.isLoaded = function() { + return this.loaded; + }; - if (this.options['showMinorLabels'] && isMajor == false || this.master == false && this.options['showMinorLabels'] == true) { - this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis minor', this.props.minorCharHeight); - } - if (isMajor && this.options['showMajorLabels'] && this.master == true || - this.options['showMinorLabels'] == false && this.master == false && isMajor == true) { - if (y >= 0) { - this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis major', this.props.majorCharHeight); - } - this._redrawLine(y, orientation, 'grid horizontal major', this.options.majorLinesOffset, this.props.majorLineWidth); - } - else { - this._redrawLine(y, orientation, 'grid horizontal minor', this.options.minorLinesOffset, this.props.minorLineWidth); - } + /** + * Return the loaded progress + * @return {Number} percentage between 0 and 100 + */ + Filter.prototype.getLoadedProgress = function() { + var len = this.values.length; - step.next(); - max++; + var i = 0; + while (this.dataPoints[i]) { + i++; } - this.conversionFactor = marginStartPos/((amountOfSteps-1) * step.step); - - var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; - // this will resize the yAxis to accomodate the labels. - if (this.maxLabelSize > (this.width - offset) && this.options.visible == true) { - this.width = this.maxLabelSize + offset; - this.options.width = this.width + "px"; - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - this.redraw(); - return true; - } - // this will resize the yAxis if it is too big for the labels. - else if (this.maxLabelSize < (this.width - offset) && this.options.visible == true && this.width > this.minWidth) { - this.width = Math.max(this.minWidth,this.maxLabelSize + offset); - this.options.width = this.width + "px"; - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - this.redraw(); - return true; - } - else { - DOMutil.cleanupElements(this.DOMelements.lines); - DOMutil.cleanupElements(this.DOMelements.labels); - return false; - } + return Math.round(i / len * 100); }; + /** - * Create a label for the axis at position x - * @private - * @param y - * @param text - * @param orientation - * @param className - * @param characterHeight + * Return the label + * @return {string} label */ - DataAxis.prototype._redrawLabel = function (y, text, orientation, className, characterHeight) { - // reuse redundant label - var label = DOMutil.getDOMElement('div',this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift(); - label.className = className; - label.innerHTML = text; - if (orientation == 'left') { - label.style.left = '-' + this.options.labelOffsetX + 'px'; - label.style.textAlign = "right"; - } - else { - label.style.right = '-' + this.options.labelOffsetX + 'px'; - label.style.textAlign = "left"; - } - - label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; + Filter.prototype.getLabel = function() { + return this.graph.filterLabel; + }; - text += ''; - var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); - if (this.maxLabelSize < text.length * largestWidth) { - this.maxLabelSize = text.length * largestWidth; - } + /** + * Return the columnIndex of the filter + * @return {Number} columnIndex + */ + Filter.prototype.getColumn = function() { + return this.column; }; /** - * Create a minor line for the axis at position y - * @param y - * @param orientation - * @param className - * @param offset - * @param width + * Return the currently selected value. Returns undefined if there is no selection + * @return {*} value */ - DataAxis.prototype._redrawLine = function (y, orientation, className, offset, width) { - if (this.master == true) { - var line = DOMutil.getDOMElement('div',this.DOMelements.lines, this.dom.lineContainer);//this.dom.redundant.lines.shift(); - line.className = className; - line.innerHTML = ''; + Filter.prototype.getSelectedValue = function() { + if (this.index === undefined) + return undefined; - if (orientation == 'left') { - line.style.left = (this.width - offset) + 'px'; - } - else { - line.style.right = (this.width - offset) + 'px'; - } + return this.values[this.index]; + }; - line.style.width = width + 'px'; - line.style.top = y + 'px'; - } + /** + * Retrieve all values of the filter + * @return {Array} values + */ + Filter.prototype.getValues = function() { + return this.values; }; + /** + * Retrieve one value of the filter + * @param {Number} index + * @return {*} value + */ + Filter.prototype.getValue = function(index) { + if (index >= this.values.length) + throw 'Error: index out of range'; - DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; // the -2 is to compensate for the borders + return this.values[index]; }; /** - * 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 + * Retrieve the (filtered) dataPoints for the currently selected filter index + * @param {Number} [index] (optional) + * @return {Array} dataPoints */ - DataAxis.prototype._calculateCharSize = function () { - // determine the char width and height on the minor axis - if (!('minorCharHeight' in this.props)) { - var textMinor = document.createTextNode('0'); - var measureCharMinor = document.createElement('DIV'); - measureCharMinor.className = 'yAxis minor measure'; - measureCharMinor.appendChild(textMinor); - this.dom.frame.appendChild(measureCharMinor); + Filter.prototype._getDataPoints = function(index) { + if (index === undefined) + index = this.index; - this.props.minorCharHeight = measureCharMinor.clientHeight; - this.props.minorCharWidth = measureCharMinor.clientWidth; + if (index === undefined) + return []; - this.dom.frame.removeChild(measureCharMinor); + var dataPoints; + if (this.dataPoints[index]) { + dataPoints = this.dataPoints[index]; } + else { + var f = {}; + f.column = this.column; + f.value = this.values[index]; - if (!('majorCharHeight' in this.props)) { - var textMajor = document.createTextNode('0'); - var measureCharMajor = document.createElement('DIV'); - measureCharMajor.className = 'yAxis major measure'; - measureCharMajor.appendChild(textMajor); - this.dom.frame.appendChild(measureCharMajor); - - this.props.majorCharHeight = measureCharMajor.clientHeight; - this.props.majorCharWidth = measureCharMajor.clientWidth; + var dataView = new DataView(this.data,{filter: function (item) {return (item[f.column] == f.value);}}).get(); + dataPoints = this.graph._getDataPoints(dataView); - this.dom.frame.removeChild(measureCharMajor); + this.dataPoints[index] = dataPoints; } - }; - /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate - */ - DataAxis.prototype.snap = function(date) { - return this.step.snap(date); + return dataPoints; }; - module.exports = DataAxis; - - -/***/ }, -/* 22 */ -/***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(2); /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * Set a callback function when the filter is fully loaded. */ - function GraphGroup (group, groupId, options, groupsUsingDefaultStyles) { - this.id = groupId; - var fields = ['sampling','style','sort','yAxisOrientation','barChart','drawPoints','shaded','catmullRom','slots'] - this.options = util.selectiveBridgeObject(fields,options); - this.usingDefaultStyle = group.className === undefined; - this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; - this.zeroPosition = 0; - this.update(group); - if (this.usingDefaultStyle == true) { - this.groupsUsingDefaultStyles[0] += 1; - } - this.itemsData = []; - this.visible = group.visible === undefined ? true : group.visible; - } - - GraphGroup.prototype.setItems = function(items) { - if (items != null) { - this.itemsData = items; - if (this.options.sort == true) { - this.itemsData.sort(function (a,b) {return a.x - b.x;}) - } - } - else { - this.itemsData = []; - } - }; - - GraphGroup.prototype.setZeroPosition = function(pos) { - this.zeroPosition = pos; + Filter.prototype.setOnLoadCallback = function(callback) { + this.onLoadCallback = callback; }; - GraphGroup.prototype.setOptions = function(options) { - if (options !== undefined) { - var fields = ['sampling','style','sort','yAxisOrientation','barChart','slots']; - util.selectiveDeepExtend(fields, this.options, options); - util.mergeOptions(this.options, options,'catmullRom'); - util.mergeOptions(this.options, options,'drawPoints'); - util.mergeOptions(this.options, options,'shaded'); + /** + * Add a value to the list with available values for this filter + * No double entries will be created. + * @param {Number} index + */ + Filter.prototype.selectValue = function(index) { + if (index >= this.values.length) + throw 'Error: index out of range'; - if (options.catmullRom) { - if (typeof options.catmullRom == 'object') { - if (options.catmullRom.parametrization) { - if (options.catmullRom.parametrization == 'uniform') { - this.options.catmullRom.alpha = 0; - } - else if (options.catmullRom.parametrization == 'chordal') { - this.options.catmullRom.alpha = 1.0; - } - else { - this.options.catmullRom.parametrization = 'centripetal'; - this.options.catmullRom.alpha = 0.5; - } - } - } - } - } + this.index = index; + this.value = this.values[index]; }; - GraphGroup.prototype.update = function(group) { - this.group = group; - this.content = group.content || 'graph'; - this.className = group.className || this.className || "graphGroup" + this.groupsUsingDefaultStyles[0] % 10; - this.visible = group.visible === undefined ? true : group.visible; - this.setOptions(group.options); - }; + /** + * Load all filtered rows in the background one by one + * Start this method without providing an index! + */ + Filter.prototype.loadInBackground = function(index) { + if (index === undefined) + index = 0; - GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { - var fillHeight = iconHeight * 0.5; - var path, fillPath; + var frame = this.graph.frame; - var outline = DOMutil.getSVGElement("rect", JSONcontainer, SVGcontainer); - outline.setAttributeNS(null, "x", x); - outline.setAttributeNS(null, "y", y - fillHeight); - outline.setAttributeNS(null, "width", iconWidth); - outline.setAttributeNS(null, "height", 2*fillHeight); - outline.setAttributeNS(null, "class", "outline"); + if (index < this.values.length) { + var dataPointsTemp = this._getDataPoints(index); + //this.graph.redrawInfo(); // TODO: not neat - if (this.options.style == 'line') { - path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); - path.setAttributeNS(null, "class", this.className); - path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + iconWidth) + ","+y+""); - if (this.options.shaded.enabled == true) { - fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); - if (this.options.shaded.orientation == 'top') { - fillPath.setAttributeNS(null, "d", "M"+x+", " + (y - fillHeight) + - "L"+x+","+y+" L"+ (x + iconWidth) + ","+y+" L"+ (x + iconWidth) + "," + (y - fillHeight)); - } - else { - fillPath.setAttributeNS(null, "d", "M"+x+","+y+" " + - "L"+x+"," + (y + fillHeight) + " " + - "L"+ (x + iconWidth) + "," + (y + fillHeight) + - "L"+ (x + iconWidth) + ","+y); - } - fillPath.setAttributeNS(null, "class", this.className + " iconFill"); + // create a progress box + if (frame.progress === undefined) { + frame.progress = document.createElement('DIV'); + frame.progress.style.position = 'absolute'; + frame.progress.style.color = 'gray'; + frame.appendChild(frame.progress); } + var progress = this.getLoadedProgress(); + frame.progress.innerHTML = 'Loading animation... ' + progress + '%'; + // TODO: this is no nice solution... + frame.progress.style.bottom = 60 + 'px'; // TODO: use height of slider + frame.progress.style.left = 10 + 'px'; - if (this.options.drawPoints.enabled == true) { - DOMutil.drawPoint(x + 0.5 * iconWidth,y, this, JSONcontainer, SVGcontainer); - } + var me = this; + setTimeout(function() {me.loadInBackground(index+1);}, 10); + this.loaded = false; } else { - var barWidth = Math.round(0.3 * iconWidth); - var bar1Height = Math.round(0.4 * iconHeight); - var bar2Height = Math.round(0.75 * iconHeight); + this.loaded = true; - var offset = Math.round((iconWidth - (2 * barWidth))/3); + // remove the progress box + if (frame.progress !== undefined) { + frame.removeChild(frame.progress); + frame.progress = undefined; + } - DOMutil.drawBar(x + 0.5*barWidth + offset , y + fillHeight - bar1Height - 1, barWidth, bar1Height, this.className + ' bar', JSONcontainer, SVGcontainer); - DOMutil.drawBar(x + 1.5*barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, this.className + ' bar', JSONcontainer, SVGcontainer); + if (this.onLoadCallback) + this.onLoadCallback(); } }; - /** - * - * @param iconWidth - * @param iconHeight - * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} - */ - GraphGroup.prototype.getLegend = function(iconWidth, iconHeight) { - var svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.drawIcon(0,0.5*iconHeight,[],svg,iconWidth,iconHeight); - return {icon: svg, label: this.content, orientation:this.options.yAxisOrientation}; - } - - module.exports = GraphGroup; + module.exports = Filter; /***/ }, -/* 23 */ +/* 15 */ /***/ function(module, exports, __webpack_require__) { var util = __webpack_require__(1); - var stack = __webpack_require__(16); - var ItemRange = __webpack_require__(31); /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * @constructor Slider + * + * An html slider control with start/stop/prev/next buttons + * @param {Element} container The element where the slider will be created + * @param {Object} options Available options: + * {boolean} visible If true (default) the + * slider is visible. */ - function Group (groupId, data, itemSet) { - this.groupId = groupId; - - this.itemSet = itemSet; + function Slider(container, options) { + if (container === undefined) { + throw 'Error: No container element defined'; + } + this.container = container; + this.visible = (options && options.visible != undefined) ? options.visible : true; - this.dom = {}; - this.props = { - label: { - width: 0, - height: 0 - } - }; - this.className = null; + if (this.visible) { + this.frame = document.createElement('DIV'); + //this.frame.style.backgroundColor = '#E5E5E5'; + this.frame.style.width = '100%'; + this.frame.style.position = 'relative'; + this.container.appendChild(this.frame); - this.items = {}; // items filtered by groupId of this group - this.visibleItems = []; // items currently visible in window - this.orderedItems = { // items sorted by start and by end - byStart: [], - byEnd: [] - }; + this.frame.prev = document.createElement('INPUT'); + this.frame.prev.type = 'BUTTON'; + this.frame.prev.value = 'Prev'; + this.frame.appendChild(this.frame.prev); - this._create(); + this.frame.play = document.createElement('INPUT'); + this.frame.play.type = 'BUTTON'; + this.frame.play.value = 'Play'; + this.frame.appendChild(this.frame.play); - this.setData(data); - } + this.frame.next = document.createElement('INPUT'); + this.frame.next.type = 'BUTTON'; + this.frame.next.value = 'Next'; + this.frame.appendChild(this.frame.next); - /** - * Create DOM elements for the group - * @private - */ - Group.prototype._create = function() { - var label = document.createElement('div'); - label.className = 'vlabel'; - this.dom.label = label; + this.frame.bar = document.createElement('INPUT'); + this.frame.bar.type = 'BUTTON'; + this.frame.bar.style.position = 'absolute'; + this.frame.bar.style.border = '1px solid red'; + this.frame.bar.style.width = '100px'; + this.frame.bar.style.height = '6px'; + this.frame.bar.style.borderRadius = '2px'; + this.frame.bar.style.MozBorderRadius = '2px'; + this.frame.bar.style.border = '1px solid #7F7F7F'; + this.frame.bar.style.backgroundColor = '#E5E5E5'; + this.frame.appendChild(this.frame.bar); - var inner = document.createElement('div'); - inner.className = 'inner'; - label.appendChild(inner); - this.dom.inner = inner; + this.frame.slide = document.createElement('INPUT'); + this.frame.slide.type = 'BUTTON'; + this.frame.slide.style.margin = '0px'; + this.frame.slide.value = ' '; + this.frame.slide.style.position = 'relative'; + this.frame.slide.style.left = '-100px'; + this.frame.appendChild(this.frame.slide); - var foreground = document.createElement('div'); - foreground.className = 'group'; - foreground['timeline-group'] = this; - this.dom.foreground = foreground; + // create events + var me = this; + this.frame.slide.onmousedown = function (event) {me._onMouseDown(event);}; + this.frame.prev.onclick = function (event) {me.prev(event);}; + this.frame.play.onclick = function (event) {me.togglePlay(event);}; + this.frame.next.onclick = function (event) {me.next(event);}; + } - this.dom.background = document.createElement('div'); - this.dom.background.className = 'group'; + this.onChangeCallback = undefined; - this.dom.axis = document.createElement('div'); - this.dom.axis.className = 'group'; + this.values = []; + this.index = undefined; - // create a hidden marker to detect when the Timelines container is attached - // to the DOM, or the style of a parent of the Timeline is changed from - // display:none is changed to visible. - this.dom.marker = document.createElement('div'); - this.dom.marker.style.visibility = 'hidden'; - this.dom.marker.innerHTML = '?'; - this.dom.background.appendChild(this.dom.marker); - }; + this.playTimeout = undefined; + this.playInterval = 1000; // milliseconds + this.playLoop = true; + } /** - * Set the group data for this group - * @param {Object} data Group data, can contain properties content and className + * Select the previous index */ - Group.prototype.setData = function(data) { - // update contents - var content = data && data.content; - if (content instanceof Element) { - this.dom.inner.appendChild(content); - } - else if (content !== undefined && content !== null) { - this.dom.inner.innerHTML = content; - } - else { - this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null - } - - // update title - this.dom.label.title = data && data.title || ''; - - if (!this.dom.inner.firstChild) { - util.addClassName(this.dom.inner, 'hidden'); - } - else { - util.removeClassName(this.dom.inner, 'hidden'); - } - - // update className - var className = data && data.className || null; - if (className != this.className) { - if (this.className) { - util.removeClassName(this.dom.label, className); - util.removeClassName(this.dom.foreground, className); - util.removeClassName(this.dom.background, className); - util.removeClassName(this.dom.axis, className); - } - util.addClassName(this.dom.label, className); - util.addClassName(this.dom.foreground, className); - util.addClassName(this.dom.background, className); - util.addClassName(this.dom.axis, className); + Slider.prototype.prev = function() { + var index = this.getIndex(); + if (index > 0) { + index--; + this.setIndex(index); } }; /** - * Get the width of the group label - * @return {number} width + * Select the next index */ - Group.prototype.getLabelWidth = function() { - return this.props.label.width; + Slider.prototype.next = function() { + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); + } }; - /** - * Repaint this group - * @param {{start: number, end: number}} range - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * @param {boolean} [restack=false] Force restacking of all items - * @return {boolean} Returns true if the group is resized + * Select the next index */ - Group.prototype.redraw = function(range, margin, restack) { - var resized = false; - - this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); - - // force recalculation of the height of the items when the marker height changed - // (due to the Timeline being attached to the DOM or changed from display:none to visible) - var markerHeight = this.dom.marker.clientHeight; - if (markerHeight != this.lastMarkerHeight) { - this.lastMarkerHeight = markerHeight; - - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); - - restack = true; - } - - // reposition visible items vertically - if (this.itemSet.options.stack) { // TODO: ugly way to access options... - stack.stack(this.visibleItems, margin, restack); - } - else { // no stacking - stack.nostack(this.visibleItems, margin); - } + Slider.prototype.playNext = function() { + var start = new Date(); - // recalculate the height of the group - var height; - var visibleItems = this.visibleItems; - if (visibleItems.length) { - var min = visibleItems[0].top; - var max = visibleItems[0].top + visibleItems[0].height; - util.forEach(visibleItems, function (item) { - min = Math.min(min, item.top); - max = Math.max(max, (item.top + item.height)); - }); - if (min > margin.axis) { - // there is an empty gap between the lowest item and the axis - var offset = min - margin.axis; - max -= offset; - util.forEach(visibleItems, function (item) { - item.top -= offset; - }); - } - height = max + margin.item.vertical / 2; + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); } - else { - height = margin.axis + margin.item.vertical; + else if (this.playLoop) { + // jump to the start + index = 0; + this.setIndex(index); } - height = Math.max(height, this.props.label.height); - - // calculate actual size and position - var foreground = this.dom.foreground; - this.top = foreground.offsetTop; - this.left = foreground.offsetLeft; - this.width = foreground.offsetWidth; - resized = util.updateProperty(this, 'height', height) || resized; - - // recalculate size of label - resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized; - resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized; - // apply new height - this.dom.background.style.height = height + 'px'; - this.dom.foreground.style.height = height + 'px'; - this.dom.label.style.height = height + 'px'; + var end = new Date(); + var diff = (end - start); - // update vertical position of items after they are re-stacked and the height of the group is calculated - for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { - var item = this.visibleItems[i]; - item.repositionY(); - } + // calculate how much time it to to set the index and to execute the callback + // function. + var interval = Math.max(this.playInterval - diff, 0); + // document.title = diff // TODO: cleanup - return resized; + var me = this; + this.playTimeout = setTimeout(function() {me.playNext();}, interval); }; /** - * Show this group: attach to the DOM + * Toggle start or stop playing */ - Group.prototype.show = function() { - if (!this.dom.label.parentNode) { - this.itemSet.dom.labelSet.appendChild(this.dom.label); + Slider.prototype.togglePlay = function() { + if (this.playTimeout === undefined) { + this.play(); + } else { + this.stop(); } + }; - if (!this.dom.foreground.parentNode) { - this.itemSet.dom.foreground.appendChild(this.dom.foreground); - } + /** + * Start playing + */ + Slider.prototype.play = function() { + // Test whether already playing + if (this.playTimeout) return; - if (!this.dom.background.parentNode) { - this.itemSet.dom.background.appendChild(this.dom.background); - } + this.playNext(); - if (!this.dom.axis.parentNode) { - this.itemSet.dom.axis.appendChild(this.dom.axis); + if (this.frame) { + this.frame.play.value = 'Stop'; } }; /** - * Hide this group: remove from the DOM + * Stop playing */ - Group.prototype.hide = function() { - var label = this.dom.label; - if (label.parentNode) { - label.parentNode.removeChild(label); - } + Slider.prototype.stop = function() { + clearInterval(this.playTimeout); + this.playTimeout = undefined; - var foreground = this.dom.foreground; - if (foreground.parentNode) { - foreground.parentNode.removeChild(foreground); + if (this.frame) { + this.frame.play.value = 'Play'; } - - var background = this.dom.background; - if (background.parentNode) { - background.parentNode.removeChild(background); - } - - var axis = this.dom.axis; - if (axis.parentNode) { - axis.parentNode.removeChild(axis); - } - }; + }; /** - * Add an item to the group - * @param {Item} item + * Set a callback function which will be triggered when the value of the + * slider bar has changed. */ - Group.prototype.add = function(item) { - this.items[item.id] = item; - item.setParent(this); - - if (this.visibleItems.indexOf(item) == -1) { - var range = this.itemSet.body.range; // TODO: not nice accessing the range like this - this._checkIfVisible(item, this.visibleItems, range); - } + Slider.prototype.setOnChangeCallback = function(callback) { + this.onChangeCallback = callback; }; /** - * Remove an item from the group - * @param {Item} item + * Set the interval for playing the list + * @param {Number} interval The interval in milliseconds */ - Group.prototype.remove = function(item) { - delete this.items[item.id]; - item.setParent(this.itemSet); - - // remove from visible items - var index = this.visibleItems.indexOf(item); - if (index != -1) this.visibleItems.splice(index, 1); - - // TODO: also remove from ordered items? + Slider.prototype.setPlayInterval = function(interval) { + this.playInterval = interval; }; /** - * Remove an item from the corresponding DataSet - * @param {Item} item + * Retrieve the current play interval + * @return {Number} interval The interval in milliseconds */ - Group.prototype.removeFromDataSet = function(item) { - this.itemSet.removeItem(item.id); + Slider.prototype.getPlayInterval = function(interval) { + return this.playInterval; }; /** - * Reorder the items + * Set looping on or off + * @pararm {boolean} doLoop If true, the slider will jump to the start when + * the end is passed, and will jump to the end + * when the start is passed. */ - Group.prototype.order = function() { - var array = util.toArray(this.items); - this.orderedItems.byStart = array; - this.orderedItems.byEnd = this._constructByEndArray(array); - - stack.orderByStart(this.orderedItems.byStart); - stack.orderByEnd(this.orderedItems.byEnd); + Slider.prototype.setPlayLoop = function(doLoop) { + this.playLoop = doLoop; }; + /** - * Create an array containing all items being a range (having an end date) - * @param {Item[]} array - * @returns {ItemRange[]} - * @private + * Execute the onchange callback function */ - Group.prototype._constructByEndArray = function(array) { - var endArray = []; - - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); - } + Slider.prototype.onChange = function() { + if (this.onChangeCallback !== undefined) { + this.onChangeCallback(); } - return endArray; }; /** - * Update the visible items - * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date - * @param {Item[]} visibleItems The previously visible items. - * @param {{start: number, end: number}} range Visible range - * @return {Item[]} visibleItems The new visible items. - * @private + * redraw the slider on the correct place */ - Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { - var initialPosByStart, - newVisibleItems = [], - i; - - // first check if the items that were in view previously are still in view. - // this handles the case for the ItemRange that is both before and after the current one. - if (visibleItems.length > 0) { - for (i = 0; i < visibleItems.length; i++) { - this._checkIfVisible(visibleItems[i], newVisibleItems, range); - } - } + Slider.prototype.redraw = function() { + if (this.frame) { + // resize the bar + this.frame.bar.style.top = (this.frame.clientHeight/2 - + this.frame.bar.offsetHeight/2) + 'px'; + this.frame.bar.style.width = (this.frame.clientWidth - + this.frame.prev.clientWidth - + this.frame.play.clientWidth - + this.frame.next.clientWidth - 30) + 'px'; - // If there were no visible items previously, use binarySearch to find a visible ItemPoint or ItemRange (based on startTime) - if (newVisibleItems.length == 0) { - initialPosByStart = util.binarySearch(orderedItems.byStart, range, 'data','start'); - } - else { - initialPosByStart = orderedItems.byStart.indexOf(newVisibleItems[0]); + // position the slider button + var left = this.indexToLeft(this.index); + this.frame.slide.style.left = (left) + 'px'; } + }; - // use visible search to find a visible ItemRange (only based on endTime) - var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); - - // if we found a initial ID to use, trace it up and down until we meet an invisible item. - if (initialPosByStart != -1) { - for (i = initialPosByStart; i >= 0; i--) { - if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} - } - for (i = initialPosByStart + 1; i < orderedItems.byStart.length; i++) { - if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} - } - } - // if we found a initial ID to use, trace it up and down until we meet an invisible item. - if (initialPosByEnd != -1) { - for (i = initialPosByEnd; i >= 0; i--) { - if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} - } - for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { - if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} - } - } + /** + * Set the list with values for the slider + * @param {Array} values A javascript array with values (any type) + */ + Slider.prototype.setValues = function(values) { + this.values = values; - return newVisibleItems; + if (this.values.length > 0) + this.setIndex(0); + else + this.index = undefined; }; - - /** - * this function checks if an item is invisible. If it is NOT we make it visible - * and add it to the global visible items. If it is, return true. - * - * @param {Item} item - * @param {Item[]} visibleItems - * @param {{start:number, end:number}} range - * @returns {boolean} - * @private + * Select a value by its index + * @param {Number} index */ - Group.prototype._checkIfInvisible = function(item, visibleItems, range) { - if (item.isVisible(range)) { - if (!item.displayed) item.show(); - item.repositionX(); - if (visibleItems.indexOf(item) == -1) { - visibleItems.push(item); - } - return false; + Slider.prototype.setIndex = function(index) { + if (index < this.values.length) { + this.index = index; + + this.redraw(); + this.onChange(); } else { - if (item.displayed) item.hide(); - return true; + throw 'Error: index out of range'; } }; /** - * this function is very similar to the _checkIfInvisible() but it does not - * return booleans, hides the item if it should not be seen and always adds to - * the visibleItems. - * this one is for brute forcing and hiding. - * - * @param {Item} item - * @param {Array} visibleItems - * @param {{start:number, end:number}} range - * @private + * retrieve the index of the currently selected vaue + * @return {Number} index */ - Group.prototype._checkIfVisible = function(item, visibleItems, range) { - if (item.isVisible(range)) { - if (!item.displayed) item.show(); - // reposition item horizontally - item.repositionX(); - visibleItems.push(item); - } - else { - if (item.displayed) item.hide(); - } + Slider.prototype.getIndex = function() { + return this.index; }; - module.exports = Group; - -/***/ }, -/* 24 */ -/***/ function(module, exports, __webpack_require__) { + /** + * retrieve the currently selected value + * @return {*} value + */ + Slider.prototype.get = function() { + return this.values[this.index]; + }; - var Hammer = __webpack_require__(41); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var Component = __webpack_require__(18); - var Group = __webpack_require__(23); - var ItemBox = __webpack_require__(29); - var ItemPoint = __webpack_require__(30); - var ItemRange = __webpack_require__(31); + Slider.prototype._onMouseDown = function(event) { + // only react on left mouse button down + var leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); + if (!leftButtonDown) return; - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + this.startClientX = event.clientX; + this.startSlideX = parseFloat(this.frame.slide.style.left); - /** - * An ItemSet holds a set of items and ranges which can be displayed in a - * range. The width is determined by the parent of the ItemSet, and the height - * is determined by the size of the items. - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body - * @param {Object} [options] See ItemSet.setOptions for the available options. - * @constructor ItemSet - * @extends Component - */ - function ItemSet(body, options) { - this.body = body; + this.frame.style.cursor = 'move'; - this.defaultOptions = { - type: null, // 'box', 'point', 'range' - orientation: 'bottom', // 'top' or 'bottom' - align: 'center', // alignment of box items - stack: true, - groupOrder: null, + // add event listeners to handle moving the contents + // we store the function onmousemove and onmouseup in the graph, so we can + // remove the eventlisteners lateron in the function mouseUp() + var me = this; + this.onmousemove = function (event) {me._onMouseMove(event);}; + this.onmouseup = function (event) {me._onMouseUp(event);}; + util.addEventListener(document, 'mousemove', this.onmousemove); + util.addEventListener(document, 'mouseup', this.onmouseup); + util.preventDefault(event); + }; - selectable: true, - editable: { - updateTime: false, - updateGroup: false, - add: false, - remove: false - }, - onAdd: function (item, callback) { - callback(item); - }, - onUpdate: function (item, callback) { - callback(item); - }, - onMove: function (item, callback) { - callback(item); - }, - onRemove: function (item, callback) { - callback(item); - }, + Slider.prototype.leftToIndex = function (left) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; + var x = left - 3; - margin: { - item: { - horizontal: 10, - vertical: 10 - }, - axis: 20 - }, - padding: 5 - }; + var index = Math.round(x / width * (this.values.length-1)); + if (index < 0) index = 0; + if (index > this.values.length-1) index = this.values.length-1; - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); + return index; + }; - // options for getting items from the DataSet with the correct type - this.itemOptions = { - type: {start: 'Date', end: 'Date'} - }; + Slider.prototype.indexToLeft = function (index) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; - this.conversion = { - toScreen: body.util.toScreen, - toTime: body.util.toTime - }; - this.dom = {}; - this.props = {}; - this.hammer = null; + var x = index / (this.values.length-1) * width; + var left = x + 3; - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + return left; + }; - // listeners for the DataSet of the items - this.itemListeners = { - 'add': function (event, params, senderId) { - me._onAdd(params.items); - }, - 'update': function (event, params, senderId) { - me._onUpdate(params.items); - }, - 'remove': function (event, params, senderId) { - me._onRemove(params.items); - } - }; - // listeners for the DataSet of the groups - this.groupListeners = { - 'add': function (event, params, senderId) { - me._onAddGroups(params.items); - }, - 'update': function (event, params, senderId) { - me._onUpdateGroups(params.items); - }, - 'remove': function (event, params, senderId) { - me._onRemoveGroups(params.items); - } - }; - this.items = {}; // object with an Item for every data item - this.groups = {}; // Group object for every group - this.groupIds = []; + Slider.prototype._onMouseMove = function (event) { + var diff = event.clientX - this.startClientX; + var x = this.startSlideX + diff; - this.selection = []; // list with the ids of all selected nodes - this.stackDirty = true; // if true, all items will be restacked on next redraw + var index = this.leftToIndex(x); - this.touchParams = {}; // stores properties while dragging - // create the HTML DOM + this.setIndex(index); - this._create(); + util.preventDefault(); + }; - this.setOptions(options); - } - ItemSet.prototype = new Component(); + Slider.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; - // available item types will be registered here - ItemSet.types = { - box: ItemBox, - range: ItemRange, - point: ItemPoint + // remove event listeners + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); + + util.preventDefault(); }; + module.exports = Slider; + + +/***/ }, +/* 16 */ +/***/ function(module, exports, __webpack_require__) { + /** - * Create the HTML DOM for the ItemSet + * @prototype StepNumber + * The class StepNumber is an iterator for Numbers. You provide a start and end + * value, and a best step size. StepNumber itself rounds to fixed values and + * a finds the step that best fits the provided step. + * + * If prettyStep is true, the step size is chosen as close as possible to the + * provided step, but being a round value like 1, 2, 5, 10, 20, 50, .... + * + * Example usage: + * var step = new StepNumber(0, 10, 2.5, true); + * step.start(); + * while (!step.end()) { + * alert(step.getCurrent()); + * step.next(); + * } + * + * Version: 1.0 + * + * @param {Number} start The start value + * @param {Number} end The end value + * @param {Number} step Optional. Step size. Must be a positive value. + * @param {boolean} prettyStep Optional. If true, the step size is rounded + * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) */ - ItemSet.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'itemset'; - frame['timeline-itemset'] = this; - this.dom.frame = frame; + function StepNumber(start, end, step, prettyStep) { + // set default values + this._start = 0; + this._end = 0; + this._step = 1; + this.prettyStep = true; + this.precision = 5; - // create background panel - var background = document.createElement('div'); - background.className = 'background'; - frame.appendChild(background); - this.dom.background = background; + this._current = 0; + this.setRange(start, end, step, prettyStep); + }; - // create foreground panel - var foreground = document.createElement('div'); - foreground.className = 'foreground'; - frame.appendChild(foreground); - this.dom.foreground = foreground; + /** + * Set a new range: start, end and step. + * + * @param {Number} start The start value + * @param {Number} end The end value + * @param {Number} step Optional. Step size. Must be a positive value. + * @param {boolean} prettyStep Optional. If true, the step size is rounded + * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + */ + StepNumber.prototype.setRange = function(start, end, step, prettyStep) { + this._start = start ? start : 0; + this._end = end ? end : 0; - // create axis panel - var axis = document.createElement('div'); - axis.className = 'axis'; - this.dom.axis = axis; + this.setStep(step, prettyStep); + }; - // create labelset - var labelSet = document.createElement('div'); - labelSet.className = 'labelset'; - this.dom.labelSet = labelSet; + /** + * Set a new step size + * @param {Number} step New step size. Must be a positive value + * @param {boolean} prettyStep Optional. If true, the provided step is rounded + * to a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + */ + StepNumber.prototype.setStep = function(step, prettyStep) { + if (step === undefined || step <= 0) + return; - // create ungrouped Group - this._updateUngrouped(); + if (prettyStep !== undefined) + this.prettyStep = prettyStep; - // attach event listeners - // Note: we bind to the centerContainer for the case where the height - // of the center container is larger than of the ItemSet, so we - // can click in the empty area to create a new item or deselect an item. - this.hammer = Hammer(this.body.dom.centerContainer, { - prevent_default: true - }); + if (this.prettyStep === true) + this._step = StepNumber.calculatePrettyStep(step); + else + this._step = step; + }; - // drag items when selected - this.hammer.on('touch', this._onTouch.bind(this)); - this.hammer.on('dragstart', this._onDragStart.bind(this)); - this.hammer.on('drag', this._onDrag.bind(this)); - this.hammer.on('dragend', this._onDragEnd.bind(this)); + /** + * Calculate a nice step size, closest to the desired step size. + * Returns a value in one of the ranges 1*10^n, 2*10^n, or 5*10^n, where n is an + * integer Number. For example 1, 2, 5, 10, 20, 50, etc... + * @param {Number} step Desired step size + * @return {Number} Nice step size + */ + StepNumber.calculatePrettyStep = function (step) { + var log10 = function (x) {return Math.log(x) / Math.LN10;}; - // single select (or unselect) when tapping an item - this.hammer.on('tap', this._onSelectItem.bind(this)); + // try three steps (multiple of 1, 2, or 5 + var step1 = Math.pow(10, Math.round(log10(step))), + step2 = 2 * Math.pow(10, Math.round(log10(step / 2))), + step5 = 5 * Math.pow(10, Math.round(log10(step / 5))); - // multi select when holding mouse/touch, or on ctrl+click - this.hammer.on('hold', this._onMultiSelectItem.bind(this)); + // choose the best step (closest to minimum step) + var prettyStep = step1; + if (Math.abs(step2 - step) <= Math.abs(prettyStep - step)) prettyStep = step2; + if (Math.abs(step5 - step) <= Math.abs(prettyStep - step)) prettyStep = step5; - // add item on doubletap - this.hammer.on('doubletap', this._onAddItem.bind(this)); + // for safety + if (prettyStep <= 0) { + prettyStep = 1; + } - // attach to the DOM - this.show(); + return prettyStep; }; /** - * Set options for the ItemSet. Existing options will be extended/overwritten. - * @param {Object} [options] The following options are available: - * {String} type - * Default type for the items. Choose from 'box' - * (default), 'point', or 'range'. The default - * Style can be overwritten by individual items. - * {String} align - * Alignment for the items, only applicable for - * ItemBox. Choose 'center' (default), 'left', or - * 'right'. - * {String} orientation - * Orientation of the item set. Choose 'top' or - * 'bottom' (default). - * {Function} groupOrder - * A sorting function for ordering groups - * {Boolean} stack - * If true (deafult), items will be stacked on - * top of each other. - * {Number} margin.axis - * Margin between the axis and the items in pixels. - * Default is 20. - * {Number} margin.item.horizontal - * Horizontal margin between items in pixels. - * Default is 10. - * {Number} margin.item.vertical - * Vertical Margin between items in pixels. - * Default is 10. - * {Number} margin.item - * Margin between items in pixels in both horizontal - * and vertical direction. Default is 10. - * {Number} margin - * Set margin for both axis and items in pixels. - * {Number} padding - * Padding of the contents of an item in pixels. - * Must correspond with the items css. Default is 5. - * {Boolean} selectable - * If true (default), items can be selected. - * {Boolean} editable - * Set all editable options to true or false - * {Boolean} editable.updateTime - * Allow dragging an item to an other moment in time - * {Boolean} editable.updateGroup - * Allow dragging an item to an other group - * {Boolean} editable.add - * Allow creating new items on double tap - * {Boolean} editable.remove - * Allow removing items by clicking the delete button - * top right of a selected item. - * {Function(item: Item, callback: Function)} onAdd - * Callback function triggered when an item is about to be added: - * when the user double taps an empty space in the Timeline. - * {Function(item: Item, callback: Function)} onUpdate - * Callback function fired when an item is about to be updated. - * This function typically has to show a dialog where the user - * change the item. If not implemented, nothing happens. - * {Function(item: Item, callback: Function)} onMove - * Fired when an item has been moved. If not implemented, - * the move action will be accepted. - * {Function(item: Item, callback: Function)} onRemove - * Fired when an item is about to be deleted. - * If not implemented, the item will be always removed. + * returns the current value of the step + * @return {Number} current value */ - ItemSet.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - var fields = ['type', 'align', 'orientation', 'padding', 'stack', 'selectable', 'groupOrder']; - util.selectiveExtend(fields, this.options, options); - - if ('margin' in options) { - if (typeof options.margin === 'number') { - this.options.margin.axis = options.margin; - this.options.margin.item.horizontal = options.margin; - this.options.margin.item.vertical = options.margin; - } - else if (typeof options.margin === 'object') { - util.selectiveExtend(['axis'], this.options.margin, options.margin); - if ('item' in options.margin) { - if (typeof options.margin.item === 'number') { - this.options.margin.item.horizontal = options.margin.item; - this.options.margin.item.vertical = options.margin.item; - } - else if (typeof options.margin.item === 'object') { - util.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item); - } - } - } - } - - if ('editable' in options) { - if (typeof options.editable === 'boolean') { - this.options.editable.updateTime = options.editable; - this.options.editable.updateGroup = options.editable; - this.options.editable.add = options.editable; - this.options.editable.remove = options.editable; - } - else if (typeof options.editable === 'object') { - util.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove'], this.options.editable, options.editable); - } - } - - // callback functions - var addCallback = (function (name) { - if (name in options) { - var fn = options[name]; - if (!(fn instanceof Function)) { - throw new Error('option ' + name + ' must be a function ' + name + '(item, callback)'); - } - this.options[name] = fn; - } - }).bind(this); - ['onAdd', 'onUpdate', 'onRemove', 'onMove'].forEach(addCallback); - - // force the itemSet to refresh: options like orientation and margins may be changed - this.markDirty(); - } + StepNumber.prototype.getCurrent = function () { + return parseFloat(this._current.toPrecision(this.precision)); }; /** - * Mark the ItemSet dirty so it will refresh everything with next redraw + * returns the current step size + * @return {Number} current step size */ - ItemSet.prototype.markDirty = function() { - this.groupIds = []; - this.stackDirty = true; + StepNumber.prototype.getStep = function () { + return this._step; }; /** - * Destroy the ItemSet + * Set the current value to the largest value smaller than start, which + * is a multiple of the step size */ - ItemSet.prototype.destroy = function() { - this.hide(); - this.setItems(null); - this.setGroups(null); - - this.hammer = null; - - this.body = null; - this.conversion = null; + StepNumber.prototype.start = function() { + this._current = this._start - this._start % this._step; }; /** - * Hide the component from the DOM + * Do a step, add the step size to the current value */ - ItemSet.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } - - // remove the axis with dots - if (this.dom.axis.parentNode) { - this.dom.axis.parentNode.removeChild(this.dom.axis); - } - - // remove the labelset containing all group labels - if (this.dom.labelSet.parentNode) { - this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); - } + StepNumber.prototype.next = function () { + this._current += this._step; }; /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Returns true whether the end is reached + * @return {boolean} True if the current value has passed the end value. */ - ItemSet.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); - } - - // show axis with dots - if (!this.dom.axis.parentNode) { - this.body.dom.backgroundVertical.appendChild(this.dom.axis); - } - - // show labelset containing labels - if (!this.dom.labelSet.parentNode) { - this.body.dom.left.appendChild(this.dom.labelSet); - } + StepNumber.prototype.end = function () { + return (this._current > this._end); }; - /** - * Set selected items by their id. Replaces the current selection - * Unknown id's are silently ignored. - * @param {Array} [ids] An array with zero or more id's of the items to be - * selected. If ids is an empty array, all items will be - * unselected. - */ - ItemSet.prototype.setSelection = function(ids) { - var i, ii, id, item; - - if (ids) { - if (!Array.isArray(ids)) { - throw new TypeError('Array expected'); - } + module.exports = StepNumber; - // unselect currently selected items - for (i = 0, ii = this.selection.length; i < ii; i++) { - id = this.selection[i]; - item = this.items[id]; - if (item) item.unselect(); - } - // select items - this.selection = []; - for (i = 0, ii = ids.length; i < ii; i++) { - id = ids[i]; - item = this.items[id]; - if (item) { - this.selection.push(id); - item.select(); - } - } - } - }; +/***/ }, +/* 17 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - ItemSet.prototype.getSelection = function() { - return this.selection.concat([]); - }; + var Emitter = __webpack_require__(10); + var Hammer = __webpack_require__(18); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var Range = __webpack_require__(20); + var Core = __webpack_require__(23); + var TimeAxis = __webpack_require__(24); + var CurrentTime = __webpack_require__(26); + var CustomTime = __webpack_require__(27); + var ItemSet = __webpack_require__(28); /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Timeline.setOptions for the available options. + * @constructor */ - ItemSet.prototype.getVisibleItems = function() { - var range = this.body.range.getRange(); - var left = this.body.util.toScreen(range.start); - var right = this.body.util.toScreen(range.end); - - var ids = []; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - var group = this.groups[groupId]; - var rawVisibleItems = group.visibleItems; - - // filter the "raw" set with visibleItems into a set which is really - // visible by pixels - for (var i = 0; i < rawVisibleItems.length; i++) { - var item = rawVisibleItems[i]; - // TODO: also check whether visible vertically - if ((item.left < right) && (item.left + item.width > left)) { - ids.push(item.id); - } - } + function Timeline (container, items, options) { + // mix the core properties in here + for (var coreProp in Core.prototype) { + if (Core.prototype.hasOwnProperty(coreProp) && !Timeline.prototype.hasOwnProperty(coreProp)) { + Timeline.prototype[coreProp] = Core.prototype[coreProp]; } } - return ids; - }; + if (!(this instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - /** - * Deselect a selected item - * @param {String | Number} id - * @private - */ - ItemSet.prototype._deselect = function(id) { - var selection = this.selection; - for (var i = 0, ii = selection.length; i < ii; i++) { - if (selection[i] == id) { // non-strict comparison! - selection.splice(i, 1); - break; - } - } - }; + var me = this; + this.defaultOptions = { + start: null, + end: null, - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - ItemSet.prototype.redraw = function() { - var margin = this.options.margin, - range = this.body.range, - asSize = util.option.asSize, - options = this.options, - orientation = options.orientation, - resized = false, - frame = this.dom.frame, - editable = options.editable.updateTime || options.editable.updateGroup; + autoResize: true, - // update class name - frame.className = 'itemset' + (editable ? ' editable' : ''); + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - // reorder the groups (if needed) - resized = this._orderGroups() || resized; + // Create the DOM, props, and emitter + this._create(container); - // check whether zoomed (in that case we need to re-stack everything) - // TODO: would be nicer to get this as a trigger from Range - var visibleInterval = range.end - range.start; - var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.props.width != this.props.lastWidth); - if (zoomed) this.stackDirty = true; - this.lastVisibleInterval = visibleInterval; - this.props.lastWidth = this.props.width; + // all components listed here will be repainted automatically + this.components = []; - // redraw all groups - var restack = this.stackDirty, - firstGroup = this._firstGroup(), - firstMargin = { - item: margin.item, - axis: margin.axis - }, - nonFirstMargin = { - item: margin.item, - axis: margin.item.vertical / 2 - }, - height = 0, - minHeight = margin.axis + margin.item.vertical; - util.forEach(this.groups, function (group) { - var groupMargin = (group == firstGroup) ? firstMargin : nonFirstMargin; - var groupResized = group.redraw(range, groupMargin, restack); - resized = groupResized || resized; - height += group.height; - }); - height = Math.max(height, minHeight); - this.stackDirty = false; + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + util: { + snap: null, // will be specified after TimeAxis is created + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime : me._toGlobalTime.bind(me) + } + }; - // update frame height - frame.style.height = asSize(height); + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - // calculate actual size and position - this.props.top = frame.offsetTop; - this.props.left = frame.offsetLeft; - this.props.width = frame.offsetWidth; - this.props.height = height; + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - // reposition axis - this.dom.axis.style.top = asSize((orientation == 'top') ? - (this.body.domProps.top.height + this.body.domProps.border.top) : - (this.body.domProps.top.height + this.body.domProps.centerContainer.height)); - this.dom.axis.style.left = this.body.domProps.border.left + 'px'; + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - // check if this component is resized - resized = this._isResized() || resized; + // custom time bar + // Note: time bar will be attached in this.setOptions when selected + this.customTime = new CustomTime(this.body); + this.components.push(this.customTime); - return resized; - }; + // item set + this.itemSet = new ItemSet(this.body); + this.components.push(this.itemSet); - /** - * Get the first group, aligned with the axis - * @return {Group | null} firstGroup - * @private - */ - ItemSet.prototype._firstGroup = function() { - var firstGroupIndex = (this.options.orientation == 'top') ? 0 : (this.groupIds.length - 1); - var firstGroupId = this.groupIds[firstGroupIndex]; - var firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED]; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - return firstGroup || null; - }; + // apply options + if (options) { + this.setOptions(options); + } + + // create itemset + if (items) { + this.setItems(items); + } + else { + this.redraw(); + } + } /** - * Create or delete the group holding all ungrouped items. This group is used when - * there are no groups specified. - * @protected + * Set options. Options will be passed to all components loaded in the Timeline. + * @param {Object} [options] + * {String} orientation + * Vertical orientation for the Timeline, + * can be 'bottom' (default) or 'top'. + * {String | Number} width + * Width for the timeline, a number in pixels or + * a css string like '1000px' or '75%'. '100%' by default. + * {String | Number} height + * Fixed height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. If undefined, + * The Timeline will automatically size such that + * its contents fit. + * {String | Number} minHeight + * Minimum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {String | Number} maxHeight + * Maximum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {Number | Date | String} start + * Start date for the visible window + * {Number | Date | String} end + * End date for the visible window */ - ItemSet.prototype._updateUngrouped = function() { - var ungrouped = this.groups[UNGROUPED]; + Timeline.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; + util.selectiveExtend(fields, this.options, options); - if (this.groupsData) { - // remove the group holding all ungrouped items - if (ungrouped) { - ungrouped.hide(); - delete this.groups[UNGROUPED]; - } + // enable/disable autoResize + this._initAutoResize(); } - else { - // create a group holding all (unfiltered) items - if (!ungrouped) { - var id = null; - var data = null; - ungrouped = new Group(id, data, this); - this.groups[UNGROUPED] = ungrouped; - for (var itemId in this.items) { - if (this.items.hasOwnProperty(itemId)) { - ungrouped.add(this.items[itemId]); - } - } + // propagate options to all components + this.components.forEach(function (component) { + component.setOptions(options); + }); - ungrouped.show(); - } + // TODO: remove deprecation error one day (deprecated since version 0.8.0) + if (options && options.order) { + throw new Error('Option order is deprecated. There is no replacement for this feature.'); } - }; - /** - * Get the element for the labelset - * @return {HTMLElement} labelSet - */ - ItemSet.prototype.getLabelSet = function() { - return this.dom.labelSet; + // redraw everything + this.redraw(); }; /** * Set items - * @param {vis.DataSet | null} items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - ItemSet.prototype.setItems = function(items) { - var me = this, - ids, - oldItemsData = this.itemsData; + Timeline.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - // replace the dataset + // convert to type DataSet when needed + var newDataSet; if (!items) { - this.itemsData = null; + newDataSet = null; } else if (items instanceof DataSet || items instanceof DataView) { - this.itemsData = items; + newDataSet = items; } else { - throw new TypeError('Data must be an instance of DataSet or DataView'); + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); } - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + // set items + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); + if (initialLoad && ('start' in this.options || 'end' in this.options)) { + this.fit(); + + var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; + var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; + + this.setWindow(start, end); } - - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); - - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); - - // update the group holding all ungrouped items - this._updateUngrouped(); - } - }; - - /** - * Get the current items - * @returns {vis.DataSet | null} - */ - ItemSet.prototype.getItems = function() { - return this.itemsData; - }; + }; /** * Set groups - * @param {vis.DataSet} groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - ItemSet.prototype.setGroups = function(groups) { - var me = this, - ids; - - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); - - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } - - // replace the dataset + Timeline.prototype.setGroups = function(groups) { + // convert to type DataSet when needed + var newDataSet; if (!groups) { - this.groupsData = null; + newDataSet = null; } else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; + newDataSet = groups; } else { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } - - if (this.groupsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.on(event, callback, id); - }); - - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); + // turn an array into a dataset + newDataSet = new DataSet(groups); } - // update the group holding all ungrouped items - this._updateUngrouped(); - - // update the order of all items in each group - this._order(); - - this.body.emitter.emit('change'); + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); }; /** - * Get the current groups - * @returns {vis.DataSet | null} groups + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {Array} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. */ - ItemSet.prototype.getGroups = function() { - return this.groupsData; + Timeline.prototype.setSelection = function(ids) { + this.itemSet && this.itemSet.setSelection(ids); }; /** - * Remove an item by its id - * @param {String | Number} id + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ - ItemSet.prototype.removeItem = function(id) { - var item = this.itemsData.get(id), - dataset = this.itemsData.getDataSet(); - - if (item) { - // confirm deletion - this.options.onRemove(item, function (item) { - if (item) { - // remove by id here, it is possible that an item has no id defined - // itself, so better not delete by the item itself - dataset.remove(id); - } - }); - } + Timeline.prototype.getSelection = function() { + return this.itemSet && this.itemSet.getSelection() || []; }; + /** - * Handle updated items - * @param {Number[]} ids - * @protected + * Get the data range of the item set. + * @returns {{min: Date, max: Date}} range A range with a start and end Date. + * When no minimum is found, min==null + * When no maximum is found, max==null */ - ItemSet.prototype._onUpdate = function(ids) { - var me = this; - - ids.forEach(function (id) { - var itemData = me.itemsData.get(id, me.itemOptions), - item = me.items[id], - type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); + Timeline.prototype.getItemRange = function() { + // calculate min from start filed + var dataset = this.itemsData.getDataSet(), + min = null, + max = null; - var constructor = ItemSet.types[type]; + if (dataset) { + // calculate the minimum value of the field 'start' + var minItem = dataset.min('start'); + min = minItem ? util.convert(minItem.start, 'Date').valueOf() : null; + // Note: we convert first to Date and then to number because else + // a conversion from ISODate to Number will fail - if (item) { - // update item - if (!constructor || !(item instanceof constructor)) { - // item type has changed, delete the item and recreate it - me._removeItem(item); - item = null; - } - else { - me._updateItem(item, itemData); - } + // calculate maximum value of fields 'start' and 'end' + var maxStartItem = dataset.max('start'); + if (maxStartItem) { + max = util.convert(maxStartItem.start, 'Date').valueOf(); } - - if (!item) { - // create item - if (constructor) { - item = new constructor(itemData, me.conversion, me.options); - item.id = id; // TODO: not so nice setting id afterwards - me._addItem(item); - } - else if (type == 'rangeoverflow') { - // TODO: deprecated since version 2.1.0 (or 3.0.0?). cleanup some day - throw new TypeError('Item type "rangeoverflow" is deprecated. Use css styling instead: ' + - '.vis.timeline .item.range .content {overflow: visible;}'); + var maxEndItem = dataset.max('end'); + if (maxEndItem) { + if (max == null) { + max = util.convert(maxEndItem.end, 'Date').valueOf(); } else { - throw new TypeError('Unknown item type "' + type + '"'); + max = Math.max(max, util.convert(maxEndItem.end, 'Date').valueOf()); } } - }); + } - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; }; - /** - * Handle added items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; - /** - * Handle removed items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onRemove = function(ids) { - var count = 0; - var me = this; - ids.forEach(function (id) { - var item = me.items[id]; - if (item) { - count++; - me._removeItem(item); - } - }); + module.exports = Timeline; - if (count) { - // update order - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + +/***/ }, +/* 18 */ +/***/ function(module, exports, __webpack_require__) { + + // Only load hammer.js when in a browser environment + // (loading hammer.js in a node.js environment gives errors) + if (typeof window !== 'undefined') { + module.exports = window['Hammer'] || __webpack_require__(19); + } + else { + module.exports = function () { + throw Error('hammer.js is only available in a browser, not in node.js.'); } - }; + } - /** - * Update the order of item in all groups - * @private - */ - ItemSet.prototype._order = function() { - // reorder the items in all groups - // TODO: optimization: only reorder groups affected by the changed items - util.forEach(this.groups, function (group) { - group.order(); - }); - }; - /** - * Handle updated groups - * @param {Number[]} ids - * @private - */ - ItemSet.prototype._onUpdateGroups = function(ids) { - this._onAddGroups(ids); - }; +/***/ }, +/* 19 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_RESULT__;/*! Hammer.JS - v1.1.3 - 2014-05-20 + * http://eightmedia.github.io/hammer.js + * + * Copyright (c) 2014 Jorik Tangelder ; + * Licensed under the MIT license */ + + (function(window, undefined) { + 'use strict'; /** - * Handle changed groups - * @param {Number[]} ids - * @private + * @main + * @module hammer + * + * @class Hammer + * @static */ - ItemSet.prototype._onAddGroups = function(ids) { - var me = this; - ids.forEach(function (id) { - var groupData = me.groupsData.get(id); - var group = me.groups[id]; - - if (!group) { - // check for reserved ids - if (id == UNGROUPED) { - throw new Error('Illegal group id. ' + id + ' is a reserved id.'); - } - - var groupOptions = Object.create(me.options); - util.extend(groupOptions, { - height: null - }); - - group = new Group(id, groupData, me); - me.groups[id] = group; - - // add items with this groupId to the new group - for (var itemId in me.items) { - if (me.items.hasOwnProperty(itemId)) { - var item = me.items[itemId]; - if (item.data.group == id) { - group.add(item); - } - } - } - - group.order(); - group.show(); - } - else { - // update group - group.setData(groupData); - } - }); - - this.body.emitter.emit('change'); + /** + * Hammer, use this to create instances + * ```` + * var hammertime = new Hammer(myElement); + * ```` + * + * @method Hammer + * @param {HTMLElement} element + * @param {Object} [options={}] + * @return {Hammer.Instance} + */ + var Hammer = function Hammer(element, options) { + return new Hammer.Instance(element, options || {}); }; /** - * Handle removed groups - * @param {Number[]} ids - * @private + * version, as defined in package.json + * the value will be set at each build + * @property VERSION + * @final + * @type {String} */ - ItemSet.prototype._onRemoveGroups = function(ids) { - var groups = this.groups; - ids.forEach(function (id) { - var group = groups[id]; - - if (group) { - group.hide(); - delete groups[id]; - } - }); - - this.markDirty(); - - this.body.emitter.emit('change'); - }; + Hammer.VERSION = '1.1.3'; /** - * Reorder the groups if needed - * @return {boolean} changed - * @private + * default settings. + * more settings are defined per gesture at `/gestures`. Each gesture can be disabled/enabled + * by setting it's name (like `swipe`) to false. + * You can set the defaults for all instances by changing this object before creating an instance. + * @example + * ```` + * Hammer.defaults.drag = false; + * Hammer.defaults.behavior.touchAction = 'pan-y'; + * delete Hammer.defaults.behavior.userSelect; + * ```` + * @property defaults + * @type {Object} */ - ItemSet.prototype._orderGroups = function () { - if (this.groupsData) { - // reorder the groups - var groupIds = this.groupsData.getIds({ - order: this.options.groupOrder - }); + Hammer.defaults = { + /** + * this setting object adds styles and attributes to the element to prevent the browser from doing + * its native behavior. The css properties are auto prefixed for the browsers when needed. + * @property defaults.behavior + * @type {Object} + */ + behavior: { + /** + * Disables text selection to improve the dragging gesture. When the value is `none` it also sets + * `onselectstart=false` for IE on the element. Mainly for desktop browsers. + * @property defaults.behavior.userSelect + * @type {String} + * @default 'none' + */ + userSelect: 'none', - var changed = !util.equalArray(groupIds, this.groupIds); - if (changed) { - // hide all groups, removes them from the DOM - var groups = this.groups; - groupIds.forEach(function (groupId) { - groups[groupId].hide(); - }); + /** + * Specifies whether and how a given region can be manipulated by the user (for instance, by panning or zooming). + * Used by Chrome 35> and IE10>. By default this makes the element blocking any touch event. + * @property defaults.behavior.touchAction + * @type {String} + * @default: 'pan-y' + */ + touchAction: 'pan-y', - // show the groups again, attach them to the DOM in correct order - groupIds.forEach(function (groupId) { - groups[groupId].show(); - }); + /** + * Disables the default callout shown when you touch and hold a touch target. + * On iOS, when you touch and hold a touch target such as a link, Safari displays + * a callout containing information about the link. This property allows you to disable that callout. + * @property defaults.behavior.touchCallout + * @type {String} + * @default 'none' + */ + touchCallout: 'none', - this.groupIds = groupIds; - } + /** + * Specifies whether zooming is enabled. Used by IE10> + * @property defaults.behavior.contentZooming + * @type {String} + * @default 'none' + */ + contentZooming: 'none', - return changed; - } - else { - return false; - } + /** + * Specifies that an entire element should be draggable instead of its contents. + * Mainly for desktop browsers. + * @property defaults.behavior.userDrag + * @type {String} + * @default 'none' + */ + userDrag: 'none', + + /** + * Overrides the highlight color shown when the user taps a link or a JavaScript + * clickable element in Safari on iPhone. This property obeys the alpha value, if specified. + * + * If you don't specify an alpha value, Safari on iPhone applies a default alpha value + * to the color. To disable tap highlighting, set the alpha value to 0 (invisible). + * If you set the alpha value to 1.0 (opaque), the element is not visible when tapped. + * @property defaults.behavior.tapHighlightColor + * @type {String} + * @default 'rgba(0,0,0,0)' + */ + tapHighlightColor: 'rgba(0,0,0,0)' + } }; /** - * Add a new item - * @param {Item} item - * @private + * hammer document where the base events are added at + * @property DOCUMENT + * @type {HTMLElement} + * @default window.document */ - ItemSet.prototype._addItem = function(item) { - this.items[item.id] = item; + Hammer.DOCUMENT = document; - // add to group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); - }; + /** + * detect support for pointer events + * @property HAS_POINTEREVENTS + * @type {Boolean} + */ + Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; /** - * Update an existing item - * @param {Item} item - * @param {Object} itemData - * @private + * detect support for touch events + * @property HAS_TOUCHEVENTS + * @type {Boolean} */ - ItemSet.prototype._updateItem = function(item, itemData) { - var oldGroupId = item.data.group; + Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); - item.data = itemData; - if (item.displayed) { - item.redraw(); - } + /** + * detect mobile browsers + * @property IS_MOBILE + * @type {Boolean} + */ + Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); - // update group - if (oldGroupId != item.data.group) { - var oldGroup = this.groups[oldGroupId]; - if (oldGroup) oldGroup.remove(item); + /** + * detect if we want to support mouseevents at all + * @property NO_MOUSEEVENTS + * @type {Boolean} + */ + Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); - } - }; + /** + * interval in which Hammer recalculates current velocity/direction/angle in ms + * @property CALCULATE_INTERVAL + * @type {Number} + * @default 25 + */ + Hammer.CALCULATE_INTERVAL = 25; /** - * Delete an item from the ItemSet: remove it from the DOM, from the map - * with items, and from the map with visible items, and from the selection - * @param {Item} item + * eventtypes per touchevent (start, move, end) are filled by `Event.determineEventTypes` on `setup` + * the object contains the DOM event names per type (`EVENT_START`, `EVENT_MOVE`, `EVENT_END`) + * @property EVENT_TYPES * @private + * @writeOnce + * @type {Object} */ - ItemSet.prototype._removeItem = function(item) { - // remove from DOM - item.hide(); - - // remove from items - delete this.items[item.id]; - - // remove from selection - var index = this.selection.indexOf(item.id); - if (index != -1) this.selection.splice(index, 1); - - // remove from group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.remove(item); - }; + var EVENT_TYPES = {}; /** - * Create an array containing all items being a range (having an end date) - * @param array - * @returns {Array} - * @private + * direction strings, for safe comparisons + * @property DIRECTION_DOWN|LEFT|UP|RIGHT + * @final + * @type {String} + * @default 'down' 'left' 'up' 'right' */ - ItemSet.prototype._constructByEndArray = function(array) { - var endArray = []; - - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); - } - } - return endArray; - }; + var DIRECTION_DOWN = Hammer.DIRECTION_DOWN = 'down'; + var DIRECTION_LEFT = Hammer.DIRECTION_LEFT = 'left'; + var DIRECTION_UP = Hammer.DIRECTION_UP = 'up'; + var DIRECTION_RIGHT = Hammer.DIRECTION_RIGHT = 'right'; /** - * Register the clicked item on touch, before dragStart is initiated. - * - * dragStart is initiated from a mousemove event, which can have left the item - * already resulting in an item == null - * - * @param {Event} event - * @private + * pointertype strings, for safe comparisons + * @property POINTER_MOUSE|TOUCH|PEN + * @final + * @type {String} + * @default 'mouse' 'touch' 'pen' */ - ItemSet.prototype._onTouch = function (event) { - // store the touched item, used in _onDragStart - this.touchParams.item = ItemSet.itemFromTarget(event); - }; + var POINTER_MOUSE = Hammer.POINTER_MOUSE = 'mouse'; + var POINTER_TOUCH = Hammer.POINTER_TOUCH = 'touch'; + var POINTER_PEN = Hammer.POINTER_PEN = 'pen'; /** - * Start dragging the selected events - * @param {Event} event - * @private + * eventtypes + * @property EVENT_START|MOVE|END|RELEASE|TOUCH + * @final + * @type {String} + * @default 'start' 'change' 'move' 'end' 'release' 'touch' */ - ItemSet.prototype._onDragStart = function (event) { - if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { - return; - } - - var item = this.touchParams.item || null, - me = this, - props; - - if (item && item.selected) { - var dragLeftItem = event.target.dragLeftItem; - var dragRightItem = event.target.dragRightItem; - - if (dragLeftItem) { - props = { - item: dragLeftItem - }; - - if (me.options.editable.updateTime) { - props.start = item.data.start.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } - - this.touchParams.itemProps = [props]; - } - else if (dragRightItem) { - props = { - item: dragRightItem - }; - - if (me.options.editable.updateTime) { - props.end = item.data.end.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } - - this.touchParams.itemProps = [props]; - } - else { - this.touchParams.itemProps = this.getSelection().map(function (id) { - var item = me.items[id]; - var props = { - item: item - }; + var EVENT_START = Hammer.EVENT_START = 'start'; + var EVENT_MOVE = Hammer.EVENT_MOVE = 'move'; + var EVENT_END = Hammer.EVENT_END = 'end'; + var EVENT_RELEASE = Hammer.EVENT_RELEASE = 'release'; + var EVENT_TOUCH = Hammer.EVENT_TOUCH = 'touch'; - if (me.options.editable.updateTime) { - if ('start' in item.data) props.start = item.data.start.valueOf(); - if ('end' in item.data) props.end = item.data.end.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } + /** + * if the window events are set... + * @property READY + * @writeOnce + * @type {Boolean} + * @default false + */ + Hammer.READY = false; - return props; - }); - } + /** + * plugins namespace + * @property plugins + * @type {Object} + */ + Hammer.plugins = Hammer.plugins || {}; - event.stopPropagation(); - } - }; + /** + * gestures namespace + * see `/gestures` for the definitions + * @property gestures + * @type {Object} + */ + Hammer.gestures = Hammer.gestures || {}; /** - * Drag selected items - * @param {Event} event + * setup events to detect gestures on the document + * this function is called when creating an new instance * @private */ - ItemSet.prototype._onDrag = function (event) { - if (this.touchParams.itemProps) { - var range = this.body.range, - snap = this.body.util.snap || null, - deltaX = event.gesture.deltaX, - scale = (this.props.width / (range.end - range.start)), - offset = deltaX / scale; - - // move - this.touchParams.itemProps.forEach(function (props) { - if ('start' in props) { - var start = new Date(props.start + offset); - props.item.data.start = snap ? snap(start) : start; - } + function setup() { + if(Hammer.READY) { + return; + } - if ('end' in props) { - var end = new Date(props.end + offset); - props.item.data.end = snap ? snap(end) : end; - } + // find what eventtypes we add listeners to + Event.determineEventTypes(); - if ('group' in props) { - // drag from one group to another - var group = ItemSet.groupFromTarget(event); - _moveToGroup(props.item, group); - } + // Register all gestures inside Hammer.gestures + Utils.each(Hammer.gestures, function(gesture) { + Detection.register(gesture); }); - // TODO: implement onMoving handler - - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); - - event.stopPropagation(); - } - }; - - /** - * Move an item to another group - * @param {Item} item - * @param {Group} group - * @private - */ - function _moveToGroup (item, group) { - if (group && group.groupId != item.data.group) { - var oldGroup = item.parent; - oldGroup.remove(item); - oldGroup.order(); - group.add(item); - group.order(); + // Add touch events on the document + Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); + Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); - item.data.group = group.groupId; - } + // Hammer is ready...! + Hammer.READY = true; } /** - * End of dragging selected items - * @param {Event} event - * @private + * @module hammer + * + * @class Utils + * @static */ - ItemSet.prototype._onDragEnd = function (event) { - if (this.touchParams.itemProps) { - // prepare a change set for the changed items - var changes = [], - me = this, - dataset = this.itemsData.getDataSet(); + var Utils = Hammer.utils = { + /** + * extend method, could also be used for cloning when `dest` is an empty object. + * changes the dest object + * @method extend + * @param {Object} dest + * @param {Object} src + * @param {Boolean} [merge=false] do a merge + * @return {Object} dest + */ + extend: function extend(dest, src, merge) { + for(var key in src) { + if(!src.hasOwnProperty(key) || (dest[key] !== undefined && merge)) { + continue; + } + dest[key] = src[key]; + } + return dest; + }, - var itemProps = this.touchParams.itemProps ; - this.touchParams.itemProps = null; - itemProps.forEach(function (props) { - var id = props.item.id, - itemData = me.itemsData.get(id, me.itemOptions); + /** + * simple addEventListener wrapper + * @method on + * @param {HTMLElement} element + * @param {String} type + * @param {Function} handler + */ + on: function on(element, type, handler) { + element.addEventListener(type, handler, false); + }, - var changed = false; - if ('start' in props.item.data) { - changed = (props.start != props.item.data.start.valueOf()); - itemData.start = util.convert(props.item.data.start, - dataset._options.type && dataset._options.type.start || 'Date'); - } - if ('end' in props.item.data) { - changed = changed || (props.end != props.item.data.end.valueOf()); - itemData.end = util.convert(props.item.data.end, - dataset._options.type && dataset._options.type.end || 'Date'); - } - if ('group' in props.item.data) { - changed = changed || (props.group != props.item.data.group); - itemData.group = props.item.data.group; - } + /** + * simple removeEventListener wrapper + * @method off + * @param {HTMLElement} element + * @param {String} type + * @param {Function} handler + */ + off: function off(element, type, handler) { + element.removeEventListener(type, handler, false); + }, - // only apply changes when start or end is actually changed - if (changed) { - me.options.onMove(itemData, function (itemData) { - if (itemData) { - // apply changes - itemData[dataset._fieldId] = id; // ensure the item contains its id (can be undefined) - changes.push(itemData); - } - else { - // restore original values - if ('start' in props) props.item.data.start = props.start; - if ('end' in props) props.item.data.end = props.end; - if ('group' in props && props.item.data.group != props.group) { - var group = me.groups[props.group]; - _moveToGroup(props.item, group); + /** + * forEach over arrays and objects + * @method each + * @param {Object|Array} obj + * @param {Function} iterator + * @param {any} iterator.item + * @param {Number} iterator.index + * @param {Object|Array} iterator.obj the source object + * @param {Object} context value to use as `this` in the iterator + */ + each: function each(obj, iterator, context) { + var i, len; + + // native forEach on arrays + if('forEach' in obj) { + obj.forEach(iterator, context); + // arrays + } else if(obj.length !== undefined) { + for(i = 0, len = obj.length; i < len; i++) { + if(iterator.call(context, obj[i], i, obj) === false) { + return; + } + } + // objects + } else { + for(i in obj) { + if(obj.hasOwnProperty(i) && + iterator.call(context, obj[i], i, obj) === false) { + return; + } } + } + }, - me.stackDirty = true; // force re-stacking of all items next redraw - me.body.emitter.emit('change'); - } - }); - } - }); + /** + * find if a string contains the string using indexOf + * @method inStr + * @param {String} src + * @param {String} find + * @return {Boolean} found + */ + inStr: function inStr(src, find) { + return src.indexOf(find) > -1; + }, - // apply the changes to the data (if there are changes) - if (changes.length) { - dataset.update(changes); - } + /** + * find if a array contains the object using indexOf or a simple polyfill + * @method inArray + * @param {String} src + * @param {String} find + * @return {Boolean|Number} false when not found, or the index + */ + inArray: function inArray(src, find) { + if(src.indexOf) { + var index = src.indexOf(find); + return (index === -1) ? false : index; + } else { + for(var i = 0, len = src.length; i < len; i++) { + if(src[i] === find) { + return i; + } + } + return false; + } + }, - event.stopPropagation(); - } - }; + /** + * convert an array-like object (`arguments`, `touchlist`) to an array + * @method toArray + * @param {Object} obj + * @return {Array} + */ + toArray: function toArray(obj) { + return Array.prototype.slice.call(obj, 0); + }, - /** - * Handle selecting/deselecting an item when tapping it - * @param {Event} event - * @private - */ - ItemSet.prototype._onSelectItem = function (event) { - if (!this.options.selectable) return; + /** + * find if a node is in the given parent + * @method hasParent + * @param {HTMLElement} node + * @param {HTMLElement} parent + * @return {Boolean} found + */ + hasParent: function hasParent(node, parent) { + while(node) { + if(node == parent) { + return true; + } + node = node.parentNode; + } + return false; + }, - var ctrlKey = event.gesture.srcEvent && event.gesture.srcEvent.ctrlKey; - var shiftKey = event.gesture.srcEvent && event.gesture.srcEvent.shiftKey; - if (ctrlKey || shiftKey) { - this._onMultiSelectItem(event); - return; - } + /** + * get the center of all the touches + * @method getCenter + * @param {Array} touches + * @return {Object} center contains `pageX`, `pageY`, `clientX` and `clientY` properties + */ + getCenter: function getCenter(touches) { + var pageX = [], + pageY = [], + clientX = [], + clientY = [], + min = Math.min, + max = Math.max; - var oldSelection = this.getSelection(); + // no need to loop when only one touch + if(touches.length === 1) { + return { + pageX: touches[0].pageX, + pageY: touches[0].pageY, + clientX: touches[0].clientX, + clientY: touches[0].clientY + }; + } - var item = ItemSet.itemFromTarget(event); - var selection = item ? [item.id] : []; - this.setSelection(selection); + Utils.each(touches, function(touch) { + pageX.push(touch.pageX); + pageY.push(touch.pageY); + clientX.push(touch.clientX); + clientY.push(touch.clientY); + }); - var newSelection = this.getSelection(); + return { + pageX: (min.apply(Math, pageX) + max.apply(Math, pageX)) / 2, + pageY: (min.apply(Math, pageY) + max.apply(Math, pageY)) / 2, + clientX: (min.apply(Math, clientX) + max.apply(Math, clientX)) / 2, + clientY: (min.apply(Math, clientY) + max.apply(Math, clientY)) / 2 + }; + }, - // emit a select event, - // except when old selection is empty and new selection is still empty - if (newSelection.length > 0 || oldSelection.length > 0) { - this.body.emitter.emit('select', { - items: this.getSelection() - }); - } + /** + * calculate the velocity between two points. unit is in px per ms. + * @method getVelocity + * @param {Number} deltaTime + * @param {Number} deltaX + * @param {Number} deltaY + * @return {Object} velocity `x` and `y` + */ + getVelocity: function getVelocity(deltaTime, deltaX, deltaY) { + return { + x: Math.abs(deltaX / deltaTime) || 0, + y: Math.abs(deltaY / deltaTime) || 0 + }; + }, - event.stopPropagation(); - }; + /** + * calculate the angle between two coordinates + * @method getAngle + * @param {Touch} touch1 + * @param {Touch} touch2 + * @return {Number} angle + */ + getAngle: function getAngle(touch1, touch2) { + var x = touch2.clientX - touch1.clientX, + y = touch2.clientY - touch1.clientY; - /** - * Handle creation and updates of an item on double tap - * @param event - * @private - */ - ItemSet.prototype._onAddItem = function (event) { - if (!this.options.selectable) return; - if (!this.options.editable.add) return; + return Math.atan2(y, x) * 180 / Math.PI; + }, - var me = this, - snap = this.body.util.snap || null, - item = ItemSet.itemFromTarget(event); + /** + * do a small comparision to get the direction between two touches. + * @method getDirection + * @param {Touch} touch1 + * @param {Touch} touch2 + * @return {String} direction matches `DIRECTION_LEFT|RIGHT|UP|DOWN` + */ + getDirection: function getDirection(touch1, touch2) { + var x = Math.abs(touch1.clientX - touch2.clientX), + y = Math.abs(touch1.clientY - touch2.clientY); - if (item) { - // update item + if(x >= y) { + return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; + }, - // execute async handler to update the item (or cancel it) - var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset - this.options.onUpdate(itemData, function (itemData) { - if (itemData) { - me.itemsData.update(itemData); - } - }); - } - else { - // add item - var xAbs = util.getAbsoluteLeft(this.dom.frame); - var x = event.gesture.center.pageX - xAbs; - var start = this.body.util.toTime(x); - var newItem = { - start: snap ? snap(start) : start, - content: 'new item' - }; + /** + * calculate the distance between two touches + * @method getDistance + * @param {Touch}touch1 + * @param {Touch} touch2 + * @return {Number} distance + */ + getDistance: function getDistance(touch1, touch2) { + var x = touch2.clientX - touch1.clientX, + y = touch2.clientY - touch1.clientY; - // when default type is a range, add a default end date to the new item - if (this.options.type === 'range') { - var end = this.body.util.toTime(x + this.props.width / 5); - newItem.end = snap ? snap(end) : end; - } + return Math.sqrt((x * x) + (y * y)); + }, - newItem[this.itemsData.fieldId] = util.randomUUID(); + /** + * calculate the scale factor between two touchLists + * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out + * @method getScale + * @param {Array} start array of touches + * @param {Array} end array of touches + * @return {Number} scale + */ + getScale: function getScale(start, end) { + // need two fingers... + if(start.length >= 2 && end.length >= 2) { + return this.getDistance(end[0], end[1]) / this.getDistance(start[0], start[1]); + } + return 1; + }, - var group = ItemSet.groupFromTarget(event); - if (group) { - newItem.group = group.groupId; - } + /** + * calculate the rotation degrees between two touchLists + * @method getRotation + * @param {Array} start array of touches + * @param {Array} end array of touches + * @return {Number} rotation + */ + getRotation: function getRotation(start, end) { + // need two fingers + if(start.length >= 2 && end.length >= 2) { + return this.getAngle(end[1], end[0]) - this.getAngle(start[1], start[0]); + } + return 0; + }, - // execute async handler to customize (or cancel) adding an item - this.options.onAdd(newItem, function (item) { - if (item) { - me.itemsData.add(newItem); - // TODO: need to trigger a redraw? - } - }); - } - }; + /** + * find out if the direction is vertical * + * @method isVertical + * @param {String} direction matches `DIRECTION_UP|DOWN` + * @return {Boolean} is_vertical + */ + isVertical: function isVertical(direction) { + return direction == DIRECTION_UP || direction == DIRECTION_DOWN; + }, - /** - * Handle selecting/deselecting multiple items when holding an item - * @param {Event} event - * @private - */ - ItemSet.prototype._onMultiSelectItem = function (event) { - if (!this.options.selectable) return; + /** + * set css properties with their prefixes + * @param {HTMLElement} element + * @param {String} prop + * @param {String} value + * @param {Boolean} [toggle=true] + * @return {Boolean} + */ + setPrefixedCss: function setPrefixedCss(element, prop, value, toggle) { + var prefixes = ['', 'Webkit', 'Moz', 'O', 'ms']; + prop = Utils.toCamelCase(prop); - var selection, - item = ItemSet.itemFromTarget(event); + for(var i = 0; i < prefixes.length; i++) { + var p = prop; + // prefixes + if(prefixes[i]) { + p = prefixes[i] + p.slice(0, 1).toUpperCase() + p.slice(1); + } - if (item) { - // multi select items - selection = this.getSelection(); // current selection - var index = selection.indexOf(item.id); - if (index == -1) { - // item is not yet selected -> select it - selection.push(item.id); - } - else { - // item is already selected -> deselect it - selection.splice(index, 1); - } - this.setSelection(selection); + // test the style + if(p in element.style) { + element.style[p] = (toggle == null || toggle) && value || ''; + break; + } + } + }, - this.body.emitter.emit('select', { - items: this.getSelection() - }); + /** + * toggle browser default behavior by setting css properties. + * `userSelect='none'` also sets `element.onselectstart` to false + * `userDrag='none'` also sets `element.ondragstart` to false + * + * @method toggleBehavior + * @param {HtmlElement} element + * @param {Object} props + * @param {Boolean} [toggle=true] + */ + toggleBehavior: function toggleBehavior(element, props, toggle) { + if(!props || !element || !element.style) { + return; + } - event.stopPropagation(); - } - }; + // set the css properties + Utils.each(props, function(value, prop) { + Utils.setPrefixedCss(element, prop, value, toggle); + }); - /** - * Find an item from an event target: - * searches for the attribute 'timeline-item' in the event target's element tree - * @param {Event} event - * @return {Item | null} item - */ - ItemSet.itemFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-item')) { - return target['timeline-item']; - } - target = target.parentNode; - } + var falseFn = toggle && function() { + return false; + }; - return null; - }; + // also the disable onselectstart + if(props.userSelect == 'none') { + element.onselectstart = falseFn; + } + // and disable ondragstart + if(props.userDrag == 'none') { + element.ondragstart = falseFn; + } + }, - /** - * Find the Group from an event target: - * searches for the attribute 'timeline-group' in the event target's element tree - * @param {Event} event - * @return {Group | null} group - */ - ItemSet.groupFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-group')) { - return target['timeline-group']; + /** + * convert a string with underscores to camelCase + * so prevent_default becomes preventDefault + * @param {String} str + * @return {String} camelCaseStr + */ + toCamelCase: function toCamelCase(str) { + return str.replace(/[_-]([a-z])/g, function(s) { + return s[1].toUpperCase(); + }); } - target = target.parentNode; - } - - return null; }; + /** - * Find the ItemSet from an event target: - * searches for the attribute 'timeline-itemset' in the event target's element tree - * @param {Event} event - * @return {ItemSet | null} item + * @module hammer */ - ItemSet.itemSetFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-itemset')) { - return target['timeline-itemset']; - } - target = target.parentNode; - } - - return null; - }; + /** + * @class Event + * @static + */ + var Event = Hammer.event = { + /** + * when touch events have been fired, this is true + * this is used to stop mouse events + * @property prevent_mouseevents + * @private + * @type {Boolean} + */ + preventMouseEvents: false, - module.exports = ItemSet; + /** + * if EVENT_START has been fired + * @property started + * @private + * @type {Boolean} + */ + started: false, + /** + * when the mouse is hold down, this is true + * @property should_detect + * @private + * @type {Boolean} + */ + shouldDetect: false, -/***/ }, -/* 25 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(2); - var Component = __webpack_require__(18); + /** + * simple event binder with a hook and support for multiple types + * @method on + * @param {HTMLElement} element + * @param {String} type + * @param {Function} handler + * @param {Function} [hook] + * @param {Object} hook.type + */ + on: function on(element, type, handler, hook) { + var types = type.split(' '); + Utils.each(types, function(type) { + Utils.on(element, type, handler); + hook && hook(type); + }); + }, - /** - * Legend for Graph2d - */ - function Legend(body, options, side) { - this.body = body; - this.defaultOptions = { - enabled: true, - icons: true, - iconSize: 20, - iconSpacing: 6, - left: { - visible: true, - position: 'top-left' // top/bottom - left,center,right + /** + * simple event unbinder with a hook and support for multiple types + * @method off + * @param {HTMLElement} element + * @param {String} type + * @param {Function} handler + * @param {Function} [hook] + * @param {Object} hook.type + */ + off: function off(element, type, handler, hook) { + var types = type.split(' '); + Utils.each(types, function(type) { + Utils.off(element, type, handler); + hook && hook(type); + }); }, - right: { - visible: true, - position: 'top-left' // top/bottom - left,center,right - } - } - this.side = side; - this.options = util.extend({},this.defaultOptions); - this.svgElements = {}; - this.dom = {}; - this.groups = {}; - this.amountOfGroups = 0; - this._create(); + /** + * the core touch event handler. + * this finds out if we should to detect gestures + * @method onTouch + * @param {HTMLElement} element + * @param {String} eventType matches `EVENT_START|MOVE|END` + * @param {Function} handler + * @return onTouchHandler {Function} the core event handler + */ + onTouch: function onTouch(element, eventType, handler) { + var self = this; - this.setOptions(options); - } + var onTouchHandler = function onTouchHandler(ev) { + var srcType = ev.type.toLowerCase(), + isPointer = Hammer.HAS_POINTEREVENTS, + isMouse = Utils.inStr(srcType, 'mouse'), + triggerType; - Legend.prototype = new Component(); + // if we are in a mouseevent, but there has been a touchevent triggered in this session + // we want to do nothing. simply break out of the event. + if(isMouse && self.preventMouseEvents) { + return; + // mousebutton must be down + } else if(isMouse && eventType == EVENT_START && ev.button === 0) { + self.preventMouseEvents = false; + self.shouldDetect = true; + } else if(isPointer && eventType == EVENT_START) { + self.shouldDetect = (ev.buttons === 1 || PointerEvent.matchType(POINTER_TOUCH, ev)); + // just a valid start event, but no mouse + } else if(!isMouse && eventType == EVENT_START) { + self.preventMouseEvents = true; + self.shouldDetect = true; + } - Legend.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; - } - this.amountOfGroups += 1; - }; + // update the pointer event before entering the detection + if(isPointer && eventType != EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } - Legend.prototype.updateGroup = function(label, graphOptions) { - this.groups[label] = graphOptions; - }; + // we are in a touch/down state, so allowed detection of gestures + if(self.shouldDetect) { + triggerType = self.doDetect.call(self, ev, eventType, element, handler); + } - Legend.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; - } - }; + // ...and we are done with the detection + // so reset everything to start each detection totally fresh + if(triggerType == EVENT_END) { + self.preventMouseEvents = false; + self.shouldDetect = false; + PointerEvent.reset(); + // update the pointerevent object after the detection + } - Legend.prototype._create = function() { - this.dom.frame = document.createElement('div'); - this.dom.frame.className = 'legend'; - this.dom.frame.style.position = "absolute"; - this.dom.frame.style.top = "10px"; - this.dom.frame.style.display = "block"; + if(isPointer && eventType == EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } + }; - this.dom.textArea = document.createElement('div'); - this.dom.textArea.className = 'legendText'; - this.dom.textArea.style.position = "relative"; - this.dom.textArea.style.top = "0px"; + this.on(element, EVENT_TYPES[eventType], onTouchHandler); + return onTouchHandler; + }, - this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.svg.style.position = 'absolute'; - this.svg.style.top = 0 +'px'; - this.svg.style.width = this.options.iconSize + 5 + 'px'; + /** + * the core detection method + * this finds out what hammer-touch-events to trigger + * @method doDetect + * @param {Object} ev + * @param {String} eventType matches `EVENT_START|MOVE|END` + * @param {HTMLElement} element + * @param {Function} handler + * @return {String} triggerType matches `EVENT_START|MOVE|END` + */ + doDetect: function doDetect(ev, eventType, element, handler) { + var touchList = this.getTouchList(ev, eventType); + var touchListLength = touchList.length; + var triggerType = eventType; + var triggerChange = touchList.trigger; // used by fakeMultitouch plugin + var changedLength = touchListLength; - this.dom.frame.appendChild(this.svg); - this.dom.frame.appendChild(this.dom.textArea); - }; + // at each touchstart-like event we want also want to trigger a TOUCH event... + if(eventType == EVENT_START) { + triggerChange = EVENT_TOUCH; + // ...the same for a touchend-like event + } else if(eventType == EVENT_END) { + triggerChange = EVENT_RELEASE; - /** - * Hide the component from the DOM - */ - Legend.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } - }; + // keep track of how many touches have been removed + changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + } - /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed - */ - Legend.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); - } - }; + // after there are still touches on the screen, + // we just want to trigger a MOVE event. so change the START or END to a MOVE + // but only after detection has been started, the first time we actualy want a START + if(changedLength > 0 && this.started) { + triggerType = EVENT_MOVE; + } - Legend.prototype.setOptions = function(options) { - var fields = ['enabled','orientation','icons','left','right']; - util.selectiveDeepExtend(fields, this.options, options); - }; + // detection has been started, we keep track of this, see above + this.started = true; - Legend.prototype.redraw = function() { - var activeGroups = 0; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - activeGroups++; - } - } - } + // generate some event data, some basic information + var evData = this.collectEventData(element, triggerType, touchList, ev); - if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { - this.hide(); - } - else { - this.show(); - if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'bottom-left') { - this.dom.frame.style.left = '4px'; - this.dom.frame.style.textAlign = "left"; - this.dom.textArea.style.textAlign = "left"; - this.dom.textArea.style.left = (this.options.iconSize + 15) + 'px'; - this.dom.textArea.style.right = ''; - this.svg.style.left = 0 +'px'; - this.svg.style.right = ''; - } - else { - this.dom.frame.style.right = '4px'; - this.dom.frame.style.textAlign = "right"; - this.dom.textArea.style.textAlign = "right"; - this.dom.textArea.style.right = (this.options.iconSize + 15) + 'px'; - this.dom.textArea.style.left = ''; - this.svg.style.right = 0 +'px'; - this.svg.style.left = ''; - } + // trigger the triggerType event before the change (TOUCH, RELEASE) events + // but the END event should be at last + if(eventType != EVENT_END) { + handler.call(Detection, evData); + } - if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { - this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; - this.dom.frame.style.bottom = ''; - } - else { - this.dom.frame.style.bottom = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; - this.dom.frame.style.top = ''; - } + // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed + if(triggerChange) { + evData.changedLength = changedLength; + evData.eventType = triggerChange; - if (this.options.icons == false) { - this.dom.frame.style.width = this.dom.textArea.offsetWidth + 10 + 'px'; - this.dom.textArea.style.right = ''; - this.dom.textArea.style.left = ''; - this.svg.style.width = '0px'; - } - else { - this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px' - this.drawLegendIcons(); - } + handler.call(Detection, evData); - var content = ''; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - content += this.groups[groupId].content + '
'; + evData.eventType = triggerType; + delete evData.changedLength; } - } - } - this.dom.textArea.innerHTML = content; - this.dom.textArea.style.lineHeight = ((0.75 * this.options.iconSize) + this.options.iconSpacing) + 'px'; - } - }; - - Legend.prototype.drawLegendIcons = function() { - if (this.dom.frame.parentNode) { - DOMutil.prepareElements(this.svgElements); - var padding = window.getComputedStyle(this.dom.frame).paddingTop; - var iconOffset = Number(padding.replace('px','')); - var x = iconOffset; - var iconWidth = this.options.iconSize; - var iconHeight = 0.75 * this.options.iconSize; - var y = iconOffset + 0.5 * iconHeight + 3; - this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; + // trigger the END event + if(triggerType == EVENT_END) { + handler.call(Detection, evData); - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - if (this.groups[groupId].visible == true) { - this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); - y += iconHeight + this.options.iconSpacing; + // ...and we are done with the detection + // so reset everything to start each detection totally fresh + this.started = false; } - } - } - DOMutil.cleanupElements(this.svgElements); - } - }; + return triggerType; + }, - module.exports = Legend; + /** + * we have different events for each device/browser + * determine what we need and set them in the EVENT_TYPES constant + * the `onTouch` method is bind to these properties. + * @method determineEventTypes + * @return {Object} events + */ + determineEventTypes: function determineEventTypes() { + var types; + if(Hammer.HAS_POINTEREVENTS) { + if(window.PointerEvent) { + types = [ + 'pointerdown', + 'pointermove', + 'pointerup pointercancel lostpointercapture' + ]; + } else { + types = [ + 'MSPointerDown', + 'MSPointerMove', + 'MSPointerUp MSPointerCancel MSLostPointerCapture' + ]; + } + } else if(Hammer.NO_MOUSEEVENTS) { + types = [ + 'touchstart', + 'touchmove', + 'touchend touchcancel' + ]; + } else { + types = [ + 'touchstart mousedown', + 'touchmove mousemove', + 'touchend touchcancel mouseup' + ]; + } + EVENT_TYPES[EVENT_START] = types[0]; + EVENT_TYPES[EVENT_MOVE] = types[1]; + EVENT_TYPES[EVENT_END] = types[2]; + return EVENT_TYPES; + }, -/***/ }, -/* 26 */ -/***/ function(module, exports, __webpack_require__) { + /** + * create touchList depending on the event + * @method getTouchList + * @param {Object} ev + * @param {String} eventType + * @return {Array} touches + */ + getTouchList: function getTouchList(ev, eventType) { + // get the fake pointerEvent touchlist + if(Hammer.HAS_POINTEREVENTS) { + return PointerEvent.getTouchList(); + } - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(2); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var Component = __webpack_require__(18); - var DataAxis = __webpack_require__(21); - var GraphGroup = __webpack_require__(22); - var Legend = __webpack_require__(25); + // get the touchlist + if(ev.touches) { + if(eventType == EVENT_MOVE) { + return ev.touches; + } - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + var identifiers = []; + var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); + var touchList = []; - /** - * This is the constructor of the LineGraph. It requires a Timeline body and options. - * - * @param body - * @param options - * @constructor - */ - function LineGraph(body, options) { - this.id = util.randomUUID(); - this.body = body; + Utils.each(concat, function(touch) { + if(Utils.inArray(identifiers, touch.identifier) === false) { + touchList.push(touch); + } + identifiers.push(touch.identifier); + }); - this.defaultOptions = { - yAxisOrientation: 'left', - defaultGroup: 'default', - sort: true, - sampling: true, - graphHeight: '400px', - shaded: { - enabled: false, - orientation: 'bottom' // top, bottom - }, - style: 'line', // line, bar - barChart: { - width: 50, - allowOverlap: true, - align: 'center' // left, center, right - }, - catmullRom: { - enabled: true, - parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) - alpha: 0.5 - }, - drawPoints: { - enabled: true, - size: 6, - style: 'square' // square, circle - }, - dataAxis: { - showMinorLabels: true, - showMajorLabels: true, - icons: false, - width: '40px', - visible: true + return touchList; + } + + // make fake touchList from mouse position + ev.identifier = 1; + return [ev]; }, - legend: { - enabled: false, - icons: true, - left: { - visible: true, - position: 'top-left' // top/bottom - left,right - }, - right: { - visible: true, - position: 'top-right' // top/bottom - left,right - } - } - }; - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); - this.dom = {}; - this.props = {}; - this.hammer = null; - this.groups = {}; + /** + * collect basic event data + * @method collectEventData + * @param {HTMLElement} element + * @param {String} eventType matches `EVENT_START|MOVE|END` + * @param {Array} touches + * @param {Object} ev + * @return {Object} ev + */ + collectEventData: function collectEventData(element, eventType, touches, ev) { + // find out pointerType + var pointerType = POINTER_TOUCH; + if(Utils.inStr(ev.type, 'mouse') || PointerEvent.matchType(POINTER_MOUSE, ev)) { + pointerType = POINTER_MOUSE; + } else if(PointerEvent.matchType(POINTER_PEN, ev)) { + pointerType = POINTER_PEN; + } - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + return { + center: Utils.getCenter(touches), + timeStamp: Date.now(), + target: ev.target, + touches: touches, + eventType: eventType, + pointerType: pointerType, + srcEvent: ev, - // listeners for the DataSet of the items - this.itemListeners = { - 'add': function (event, params, senderId) { - me._onAdd(params.items); - }, - 'update': function (event, params, senderId) { - me._onUpdate(params.items); - }, - 'remove': function (event, params, senderId) { - me._onRemove(params.items); + /** + * prevent the browser default actions + * mostly used to disable scrolling of the browser + */ + preventDefault: function() { + var srcEvent = this.srcEvent; + srcEvent.preventManipulation && srcEvent.preventManipulation(); + srcEvent.preventDefault && srcEvent.preventDefault(); + }, + + /** + * stop bubbling the event up to its parents + */ + stopPropagation: function() { + this.srcEvent.stopPropagation(); + }, + + /** + * immediately stop gesture detection + * might be useful after a swipe was detected + * @return {*} + */ + stopDetect: function() { + return Detection.stopDetect(); + } + }; } - }; + }; - // listeners for the DataSet of the groups - this.groupListeners = { - 'add': function (event, params, senderId) { - me._onAddGroups(params.items); + + /** + * @module hammer + * + * @class PointerEvent + * @static + */ + var PointerEvent = Hammer.PointerEvent = { + /** + * holds all pointers, by `identifier` + * @property pointers + * @type {Object} + */ + pointers: {}, + + /** + * get the pointers as an array + * @method getTouchList + * @return {Array} touchlist + */ + getTouchList: function getTouchList() { + var touchlist = []; + // we can use forEach since pointerEvents only is in IE10 + Utils.each(this.pointers, function(pointer) { + touchlist.push(pointer); + }); + return touchlist; }, - 'update': function (event, params, senderId) { - me._onUpdateGroups(params.items); + + /** + * update the position of a pointer + * @method updatePointer + * @param {String} eventType matches `EVENT_START|MOVE|END` + * @param {Object} pointerEvent + */ + updatePointer: function updatePointer(eventType, pointerEvent) { + if(eventType == EVENT_END || (eventType != EVENT_END && pointerEvent.buttons !== 1)) { + delete this.pointers[pointerEvent.pointerId]; + } else { + pointerEvent.identifier = pointerEvent.pointerId; + this.pointers[pointerEvent.pointerId] = pointerEvent; + } }, - 'remove': function (event, params, senderId) { - me._onRemoveGroups(params.items); - } - }; - this.items = {}; // object with an Item for every data item - this.selection = []; // list with the ids of all selected nodes - this.lastStart = this.body.range.start; - this.touchParams = {}; // stores properties while dragging + /** + * check if ev matches pointertype + * @method matchType + * @param {String} pointerType matches `POINTER_MOUSE|TOUCH|PEN` + * @param {PointerEvent} ev + */ + matchType: function matchType(pointerType, ev) { + if(!ev.pointerType) { + return false; + } - this.svgElements = {}; - this.setOptions(options); - this.groupsUsingDefaultStyles = [0]; + var pt = ev.pointerType, + types = {}; - this.body.emitter.on("rangechange",function() { - if (me.lastStart != 0) { - var offset = me.body.range.start - me.lastStart; - var range = me.body.range.end - me.body.range.start; - if (me.width != 0) { - var rangePerPixelInv = me.width/range; - var xOffset = offset * rangePerPixelInv; - me.svg.style.left = (-me.width - xOffset) + "px"; - } - } - }); - this.body.emitter.on("rangechanged", function() { - me.lastStart = me.body.range.start; - me.svg.style.left = util.option.asSize(-me.width); - me._updateGraph.apply(me); - }); + types[POINTER_MOUSE] = (pt === (ev.MSPOINTER_TYPE_MOUSE || POINTER_MOUSE)); + types[POINTER_TOUCH] = (pt === (ev.MSPOINTER_TYPE_TOUCH || POINTER_TOUCH)); + types[POINTER_PEN] = (pt === (ev.MSPOINTER_TYPE_PEN || POINTER_PEN)); + return types[pointerType]; + }, - // create the HTML DOM - this._create(); - this.body.emitter.emit("change"); - } + /** + * reset the stored pointers + * @method reset + */ + reset: function resetList() { + this.pointers = {}; + } + }; - LineGraph.prototype = new Component(); /** - * Create the HTML DOM for the ItemSet + * @module hammer + * + * @class Detection + * @static */ - LineGraph.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'LineGraph'; - this.dom.frame = frame; + var Detection = Hammer.detection = { + // contains all registred Hammer.gestures in the correct order + gestures: [], - // create svg element for graph drawing. - this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); - this.svg.style.position = "relative"; - this.svg.style.height = ('' + this.options.graphHeight).replace("px",'') + 'px'; - this.svg.style.display = "block"; - frame.appendChild(this.svg); + // data of the current Hammer.gesture detection session + current: null, - // data axis - this.options.dataAxis.orientation = 'left'; - this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); + // the previous Hammer.gesture session data + // is a full clone of the previous gesture.current object + previous: null, - this.options.dataAxis.orientation = 'right'; - this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); - delete this.options.dataAxis.orientation; + // when this becomes true, no gestures are fired + stopped: false, - // legends - this.legendLeft = new Legend(this.body, this.options.legend, 'left'); - this.legendRight = new Legend(this.body, this.options.legend, 'right'); + /** + * start Hammer.gesture detection + * @method startDetect + * @param {Hammer.Instance} inst + * @param {Object} eventData + */ + startDetect: function startDetect(inst, eventData) { + // already busy with a Hammer.gesture detection on an element + if(this.current) { + return; + } - this.show(); - }; + this.stopped = false; - /** - * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. - * @param options - */ - LineGraph.prototype.setOptions = function(options) { - if (options) { - var fields = ['sampling','defaultGroup','graphHeight','yAxisOrientation','style','barChart','dataAxis','sort']; - util.selectiveDeepExtend(fields, this.options, options); - util.mergeOptions(this.options, options,'catmullRom'); - util.mergeOptions(this.options, options,'drawPoints'); - util.mergeOptions(this.options, options,'shaded'); - util.mergeOptions(this.options, options,'legend'); + // holds current session + this.current = { + inst: inst, // reference to HammerInstance we're working for + startEvent: Utils.extend({}, eventData), // start eventData for distances, timing etc + lastEvent: false, // last eventData + lastCalcEvent: false, // last eventData for calculations. + futureCalcEvent: false, // last eventData for calculations. + lastCalcData: {}, // last lastCalcData + name: '' // current gesture we're in/detected, can be 'tap', 'hold' etc + }; - if (options.catmullRom) { - if (typeof options.catmullRom == 'object') { - if (options.catmullRom.parametrization) { - if (options.catmullRom.parametrization == 'uniform') { - this.options.catmullRom.alpha = 0; - } - else if (options.catmullRom.parametrization == 'chordal') { - this.options.catmullRom.alpha = 1.0; - } - else { - this.options.catmullRom.parametrization = 'centripetal'; - this.options.catmullRom.alpha = 0.5; - } + this.detect(eventData); + }, + + /** + * Hammer.gesture detection + * @method detect + * @param {Object} eventData + * @return {any} + */ + detect: function detect(eventData) { + if(!this.current || this.stopped) { + return; } - } - } - if (this.yAxisLeft) { - if (options.dataAxis !== undefined) { - this.yAxisLeft.setOptions(this.options.dataAxis); - this.yAxisRight.setOptions(this.options.dataAxis); - } - } + // extend event data with calculations about scale, distance etc + eventData = this.extendEventData(eventData); - if (this.legendLeft) { - if (options.legend !== undefined) { - this.legendLeft.setOptions(this.options.legend); - this.legendRight.setOptions(this.options.legend); - } - } + // hammer instance and instance options + var inst = this.current.inst, + instOptions = inst.options; - if (this.groups.hasOwnProperty(UNGROUPED)) { - this.groups[UNGROUPED].setOptions(options); - } - } - if (this.dom.frame) { - this._updateGraph(); - } - }; + // call Hammer.gesture handlers + Utils.each(this.gestures, function triggerGesture(gesture) { + // only when the instance options have enabled this gesture + if(!this.stopped && inst.enabled && instOptions[gesture.name]) { + gesture.handler.call(gesture, eventData, inst); + } + }, this); - /** - * Hide the component from the DOM - */ - LineGraph.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } - }; + // store as previous event event + if(this.current) { + this.current.lastEvent = eventData; + } - /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed - */ - LineGraph.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); - } - }; + if(eventData.eventType == EVENT_END) { + this.stopDetect(); + } + return eventData; + }, - /** - * Set items - * @param {vis.DataSet | null} items - */ - LineGraph.prototype.setItems = function(items) { - var me = this, - ids, - oldItemsData = this.itemsData; + /** + * clear the Hammer.gesture vars + * this is called on endDetect, but can also be used when a final Hammer.gesture has been detected + * to stop other Hammer.gestures from being fired + * @method stopDetect + */ + stopDetect: function stopDetect() { + // clone current data to the store as the previous gesture + // used for the double tap gesture, since this is an other gesture detect session + this.previous = Utils.extend({}, this.current); - // replace the dataset - if (!items) { - this.itemsData = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - this.itemsData = items; - } - else { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } + // reset the current + this.current = null; + this.stopped = true; + }, - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + /** + * calculate velocity, angle and direction + * @method getVelocityData + * @param {Object} ev + * @param {Object} center + * @param {Number} deltaTime + * @param {Number} deltaX + * @param {Number} deltaY + */ + getCalculatedData: function getCalculatedData(ev, center, deltaTime, deltaX, deltaY) { + var cur = this.current, + recalc = false, + calcEv = cur.lastCalcEvent, + calcData = cur.lastCalcData; - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); - } + if(calcEv && ev.timeStamp - calcEv.timeStamp > Hammer.CALCULATE_INTERVAL) { + center = calcEv.center; + deltaTime = ev.timeStamp - calcEv.timeStamp; + deltaX = ev.center.clientX - calcEv.center.clientX; + deltaY = ev.center.clientY - calcEv.center.clientY; + recalc = true; + } - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); + if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { + cur.futureCalcEvent = ev; + } - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); - } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); - }; + if(!cur.lastCalcEvent || recalc) { + calcData.velocity = Utils.getVelocity(deltaTime, deltaX, deltaY); + calcData.angle = Utils.getAngle(center, ev.center); + calcData.direction = Utils.getDirection(center, ev.center); - /** - * Set groups - * @param {vis.DataSet} groups - */ - LineGraph.prototype.setGroups = function(groups) { - var me = this, - ids; + cur.lastCalcEvent = cur.futureCalcEvent || ev; + cur.futureCalcEvent = ev; + } - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + ev.velocityX = calcData.velocity.x; + ev.velocityY = calcData.velocity.y; + ev.interimAngle = calcData.angle; + ev.interimDirection = calcData.direction; + }, - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } + /** + * extend eventData for Hammer.gestures + * @method extendEventData + * @param {Object} ev + * @return {Object} ev + */ + extendEventData: function extendEventData(ev) { + var cur = this.current, + startEv = cur.startEvent, + lastEv = cur.lastEvent || startEv; - // replace the dataset - if (!groups) { - this.groupsData = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; - } - else { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } + // update the start touchlist to calculate the scale/rotation + if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { + startEv.touches = []; + Utils.each(ev.touches, function(touch) { + startEv.touches.push({ + clientX: touch.clientX, + clientY: touch.clientY + }); + }); + } - if (this.groupsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.on(event, callback, id); - }); + var deltaTime = ev.timeStamp - startEv.timeStamp, + deltaX = ev.center.clientX - startEv.center.clientX, + deltaY = ev.center.clientY - startEv.center.clientY; - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); - } - this._onUpdate(); - }; + this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + Utils.extend(ev, { + startEvent: startEv, + deltaTime: deltaTime, + deltaX: deltaX, + deltaY: deltaY, - LineGraph.prototype._onUpdate = function(ids) { - this._updateUngrouped(); - this._updateAllGroupData(); - this._updateGraph(); - this.redraw(); - }; - LineGraph.prototype._onAdd = function (ids) {this._onUpdate(ids);}; - LineGraph.prototype._onRemove = function (ids) {this._onUpdate(ids);}; - LineGraph.prototype._onUpdateGroups = function (groupIds) { - for (var i = 0; i < groupIds.length; i++) { - var group = this.groupsData.get(groupIds[i]); - this._updateGroup(group, groupIds[i]); - } + distance: Utils.getDistance(startEv.center, ev.center), + angle: Utils.getAngle(startEv.center, ev.center), + direction: Utils.getDirection(startEv.center, ev.center), + scale: Utils.getScale(startEv.touches, ev.touches), + rotation: Utils.getRotation(startEv.touches, ev.touches) + }); - this._updateGraph(); - this.redraw(); - }; - LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; + return ev; + }, - LineGraph.prototype._onRemoveGroups = function (groupIds) { - for (var i = 0; i < groupIds.length; i++) { - if (!this.groups.hasOwnProperty(groupIds[i])) { - if (this.groups[groupIds[i]].options.yAxisOrientation == 'right') { - this.yAxisRight.removeGroup(groupIds[i]); - this.legendRight.removeGroup(groupIds[i]); - this.legendRight.redraw(); - } - else { - this.yAxisLeft.removeGroup(groupIds[i]); - this.legendLeft.removeGroup(groupIds[i]); - this.legendLeft.redraw(); - } - delete this.groups[groupIds[i]]; + /** + * register new gesture + * @method register + * @param {Object} gesture object, see `gestures/` for documentation + * @return {Array} gestures + */ + register: function register(gesture) { + // add an enable gesture options if there is no given + var options = gesture.defaults || {}; + if(options[gesture.name] === undefined) { + options[gesture.name] = true; + } + + // extend Hammer default options with the Hammer.gesture options + Utils.extend(Hammer.defaults, options, true); + + // set its index + gesture.index = gesture.index || 1000; + + // add Hammer.gesture to the list + this.gestures.push(gesture); + + // sort the list by index + this.gestures.sort(function(a, b) { + if(a.index < b.index) { + return -1; + } + if(a.index > b.index) { + return 1; + } + return 0; + }); + + return this.gestures; } - } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); }; + /** - * update a group object - * - * @param group - * @param groupId - * @private + * @module hammer */ - LineGraph.prototype._updateGroup = function (group, groupId) { - if (!this.groups.hasOwnProperty(groupId)) { - this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles); - if (this.groups[groupId].options.yAxisOrientation == 'right') { - this.yAxisRight.addGroup(groupId, this.groups[groupId]); - this.legendRight.addGroup(groupId, this.groups[groupId]); - } - else { - this.yAxisLeft.addGroup(groupId, this.groups[groupId]); - this.legendLeft.addGroup(groupId, this.groups[groupId]); - } - } - else { - this.groups[groupId].update(group); - if (this.groups[groupId].options.yAxisOrientation == 'right') { - this.yAxisRight.updateGroup(groupId, this.groups[groupId]); - this.legendRight.updateGroup(groupId, this.groups[groupId]); - } - else { - this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); - this.legendLeft.updateGroup(groupId, this.groups[groupId]); - } - } - this.legendLeft.redraw(); - this.legendRight.redraw(); - }; - - LineGraph.prototype._updateAllGroupData = function () { - if (this.itemsData != null) { - var groupsContent = {}; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupsContent[groupId] = []; - } - } - for (var itemId in this.itemsData._data) { - if (this.itemsData._data.hasOwnProperty(itemId)) { - var item = this.itemsData._data[itemId]; - item.x = util.convert(item.x,"Date"); - groupsContent[item.group].push(item); - } - } - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - this.groups[groupId].setItems(groupsContent[groupId]); - } - } - } - }; /** - * Create or delete the group holding all ungrouped items. This group is used when - * there are no groups specified. This anonymous group is called 'graph'. - * @protected + * create new hammer instance + * all methods should return the instance itself, so it is chainable. + * + * @class Instance + * @constructor + * @param {HTMLElement} element + * @param {Object} [options={}] options are merged with `Hammer.defaults` + * @return {Hammer.Instance} */ - LineGraph.prototype._updateUngrouped = function() { - if (this.itemsData != null) { - // var t0 = new Date(); - var group = {id: UNGROUPED, content: this.options.defaultGroup}; - this._updateGroup(group, UNGROUPED); - var ungroupedCounter = 0; - if (this.itemsData) { - for (var itemId in this.itemsData._data) { - if (this.itemsData._data.hasOwnProperty(itemId)) { - var item = this.itemsData._data[itemId]; - if (item != undefined) { - if (item.hasOwnProperty('group')) { - if (item.group === undefined) { - item.group = UNGROUPED; - } - } - else { - item.group = UNGROUPED; - } - ungroupedCounter = item.group == UNGROUPED ? ungroupedCounter + 1 : ungroupedCounter; - } - } - } - } - - // much much slower - // var datapoints = this.itemsData.get({ - // filter: function (item) {return item.group === undefined;}, - // showInternalIds:true - // }); - // if (datapoints.length > 0) { - // var updateQuery = []; - // for (var i = 0; i < datapoints.length; i++) { - // updateQuery.push({id:datapoints[i].id, group: UNGROUPED}); - // } - // this.itemsData.update(updateQuery, true); - // } - // var t1 = new Date(); - // var pointInUNGROUPED = this.itemsData.get({filter: function (item) {return item.group == UNGROUPED;}}); - if (ungroupedCounter == 0) { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); - } - // console.log("getting amount ungrouped",new Date() - t1); - // console.log("putting in ungrouped",new Date() - t0); - } - else { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); - } + Hammer.Instance = function(element, options) { + var self = this; - this.legendLeft.redraw(); - this.legendRight.redraw(); - }; + // setup HammerJS window events and register all gestures + // this also sets up the default options + setup(); + /** + * @property element + * @type {HTMLElement} + */ + this.element = element; - /** - * Redraw the component, mandatory function - * @return {boolean} Returns true if the component is resized - */ - LineGraph.prototype.redraw = function() { - var resized = false; + /** + * @property enabled + * @type {Boolean} + * @protected + */ + this.enabled = true; - this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; - if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { - resized = true; - } - // check if this component is resized - resized = this._isResized() || resized; - // check whether zoomed (in that case we need to re-stack everything) - var visibleInterval = this.body.range.end - this.body.range.start; - var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.width != this.lastWidth); - this.lastVisibleInterval = visibleInterval; - this.lastWidth = this.width; + /** + * options, merged with the defaults + * options with an _ are converted to camelCase + * @property options + * @type {Object} + */ + Utils.each(options, function(value, name) { + delete options[name]; + options[Utils.toCamelCase(name)] = value; + }); - // calculate actual size and position - this.width = this.dom.frame.offsetWidth; + this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); - // the svg element is three times as big as the width, this allows for fully dragging left and right - // without reloading the graph. the controls for this are bound to events in the constructor - if (resized == true) { - this.svg.style.width = util.option.asSize(3*this.width); - this.svg.style.left = util.option.asSize(-this.width); - } - if (zoomed == true) { - this._updateGraph(); - } + // add some css to the element to prevent the browser from doing its native behavoir + if(this.options.behavior) { + Utils.toggleBehavior(this.element, this.options.behavior, true); + } - this.legendLeft.redraw(); - this.legendRight.redraw(); + /** + * event start handler on the element to start the detection + * @property eventStartHandler + * @type {Object} + */ + this.eventStartHandler = Event.onTouch(element, EVENT_START, function(ev) { + if(self.enabled && ev.eventType == EVENT_START) { + Detection.startDetect(self, ev); + } else if(ev.eventType == EVENT_TOUCH) { + Detection.detect(ev); + } + }); - return resized; + /** + * keep a list of user event handlers which needs to be removed when calling 'dispose' + * @property eventHandlers + * @type {Array} + */ + this.eventHandlers = []; }; - /** - * Update and redraw the graph. - * - */ - LineGraph.prototype._updateGraph = function () { - // reset the svg elements - DOMutil.prepareElements(this.svgElements); - - if (this.width != 0 && this.itemsData != null) { - var group, groupData, preprocessedGroup, i; - var preprocessedGroupData = []; - var processedGroupData = []; - var groupRanges = []; - var changeCalled = false; + Hammer.Instance.prototype = { + /** + * bind events to the instance + * @method on + * @chainable + * @param {String} gestures multiple gestures by splitting with a space + * @param {Function} handler + * @param {Object} handler.ev event object + */ + on: function onEvent(gestures, handler) { + var self = this; + Event.on(self.element, gestures, handler, function(type) { + self.eventHandlers.push({ gesture: type, handler: handler }); + }); + return self; + }, - // getting group Ids - var groupIds = []; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupIds.push(groupId); - } - } + /** + * unbind events to the instance + * @method off + * @chainable + * @param {String} gestures + * @param {Function} handler + */ + off: function offEvent(gestures, handler) { + var self = this; - // this is the range of the SVG canvas - var minDate = this.body.util.toGlobalTime(- this.body.domProps.root.width); - var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width); + Event.off(self.element, gestures, handler, function(type) { + var index = Utils.inArray({ gesture: type, handler: handler }); + if(index !== false) { + self.eventHandlers.splice(index, 1); + } + }); + return self; + }, - // first select and preprocess the data from the datasets. - // the groups have their preselection of data, we now loop over this data to see - // what data we need to draw. Sorted data is much faster. - // more optimization is possible by doing the sampling before and using the binary search - // to find the end date to determine the increment. - if (groupIds.length > 0) { - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.visible == true) { - groupData = []; - // optimization for sorted data - if (group.options.sort == true) { - var guess = Math.max(0,util.binarySearchGeneric(group.itemsData, minDate, 'x', 'before')); - - for (var j = guess; j < group.itemsData.length; j++) { - var item = group.itemsData[j]; - if (item !== undefined) { - if (item.x > maxDate) { - groupData.push(item); - break; - } - else { - groupData.push(item); - } - } - } - } - else { - for (var j = 0; j < group.itemsData.length; j++) { - var item = group.itemsData[j]; - if (item !== undefined) { - if (item.x > minDate && item.x < maxDate) { - groupData.push(item); - } - } - } - } - // preprocess, split into ranges and data - if (groupData.length > 0) { - preprocessedGroup = this._preprocessData(groupData, group); - groupRanges.push({min: preprocessedGroup.min, max: preprocessedGroup.max}); - preprocessedGroupData.push(preprocessedGroup.data); - } - else { - groupRanges.push({}); - preprocessedGroupData.push([]); - } - } - else { - groupRanges.push({}); - preprocessedGroupData.push([]); + /** + * trigger gesture event + * @method trigger + * @chainable + * @param {String} gesture + * @param {Object} [eventData] + */ + trigger: function triggerEvent(gesture, eventData) { + // optional + if(!eventData) { + eventData = {}; } - } - - // update the Y axis first, we use this data to draw at the correct Y points - // changeCalled is required to clean the SVG on a change emit. - changeCalled = this._updateYAxis(groupIds, groupRanges); - if (changeCalled == true) { - DOMutil.cleanupElements(this.svgElements); - this.body.emitter.emit("change"); - return; - } - // with the yAxis scaled correctly, use this to get the Y values of the points. - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - processedGroupData.push(this._convertYvalues(preprocessedGroupData[i],group)) - } + // create DOM event + var event = Hammer.DOCUMENT.createEvent('Event'); + event.initEvent(gesture, true, true); + event.gesture = eventData; - // draw the groups - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.visible == true) { - if (group.options.style == 'line') { - this._drawLineGraph(processedGroupData[i], group); - } - else { - this._drawBarGraph (processedGroupData[i], group); - } + // trigger on the target if it is in the instance element, + // this is for event delegation tricks + var element = this.element; + if(Utils.hasParent(eventData.target, element)) { + element = eventData.target; } - } - } - } - // cleanup unused svg elements - DOMutil.cleanupElements(this.svgElements); - }; + element.dispatchEvent(event); + return this; + }, - /** - * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. - * @param {array} groupIds - * @private - */ - LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { - var changeCalled = false; - var yAxisLeftUsed = false; - var yAxisRightUsed = false; - var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal; - var orientation = 'left'; + /** + * enable of disable hammer.js detection + * @method enable + * @chainable + * @param {Boolean} state + */ + enable: function enable(state) { + this.enabled = state; + return this; + }, - // if groups are present - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - orientation = 'left'; - var group = this.groups[groupIds[i]]; - if (group.visible == true) { - if (group.options.yAxisOrientation == 'right') { - orientation = 'right'; - } + /** + * dispose this hammer instance + * @method dispose + * @return {Null} + */ + dispose: function dispose() { + var i, eh; - minVal = groupRanges[i].min; - maxVal = groupRanges[i].max; + // undo all changes made by stop_browser_behavior + Utils.toggleBehavior(this.element, this.options.behavior, false); - if (orientation == 'left') { - yAxisLeftUsed = true; - minLeft = minLeft > minVal ? minVal : minLeft; - maxLeft = maxLeft < maxVal ? maxVal : maxLeft; - } - else { - yAxisRightUsed = true; - minRight = minRight > minVal ? minVal : minRight; - maxRight = maxRight < maxVal ? maxVal : maxRight; + // unbind all custom event handlers + for(i = -1; (eh = this.eventHandlers[++i]);) { + Utils.off(this.element, eh.gesture, eh.handler); } - } - } - if (yAxisLeftUsed == true) { - this.yAxisLeft.setRange(minLeft, maxLeft); - } - if (yAxisRightUsed == true) { - this.yAxisRight.setRange(minRight, maxRight); - } - } - - changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; - changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; - - if (yAxisRightUsed == true && yAxisLeftUsed == true) { - this.yAxisLeft.drawIcons = true; - this.yAxisRight.drawIcons = true; - } - else { - this.yAxisLeft.drawIcons = false; - this.yAxisRight.drawIcons = false; - } - this.yAxisRight.master = !yAxisLeftUsed; + this.eventHandlers = []; - if (this.yAxisRight.master == false) { - if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} - else {this.yAxisLeft.lineOffset = 0;} + // unbind the start event listener + Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); - changeCalled = this.yAxisLeft.redraw() || changeCalled; - this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; - changeCalled = this.yAxisRight.redraw() || changeCalled; - } - else { - changeCalled = this.yAxisRight.redraw() || changeCalled; - } - return changeCalled; + return null; + } }; + /** - * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function + * @module gestures + */ + /** + * Move with x fingers (default 1) around on the page. + * Preventing the default browser behavior is a good way to improve feel and working. + * ```` + * hammertime.on("drag", function(ev) { + * console.log(ev); + * ev.gesture.preventDefault(); + * }); + * ```` * - * @param {boolean} axisUsed - * @returns {boolean} - * @private - * @param axis + * @class Drag + * @static + */ + /** + * @event drag + * @param {Object} ev + */ + /** + * @event dragstart + * @param {Object} ev + */ + /** + * @event dragend + * @param {Object} ev + */ + /** + * @event drapleft + * @param {Object} ev + */ + /** + * @event dragright + * @param {Object} ev + */ + /** + * @event dragup + * @param {Object} ev + */ + /** + * @event dragdown + * @param {Object} ev */ - LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { - var changed = false; - if (axisUsed == false) { - if (axis.dom.frame.parentNode) { - axis.hide(); - changed = true; - } - } - else { - if (!axis.dom.frame.parentNode) { - axis.show(); - changed = true; - } - } - return changed; - }; - /** - * draw a bar graph - * @param datapoints - * @param group + * @param {String} name */ - LineGraph.prototype._drawBarGraph = function (dataset, group) { - if (dataset != null) { - if (dataset.length > 0) { - var coreDistance; - var minWidth = 0.1 * group.options.barChart.width; - var offset = 0; - - // check for intersections - var intersections = {}; + (function(name) { + var triggered = false; - for (var i = 0; i < dataset.length; i++) { - if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - dataset[i].x);} - if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - dataset[i].x));} - if (coreDistance == 0) { - if (intersections[dataset[i].x] === undefined) { - intersections[dataset[i].x] = {amount:0, resolved:0}; - } - intersections[dataset[i].x].amount += 1; - } - } + function dragGesture(ev, inst) { + var cur = Detection.current; - // plot the bargraph - var key; - for (var i = 0; i < dataset.length; i++) { - key = dataset[i].x; - if (intersections[key] === undefined) { - if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - key);} - if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - key));} - var drawData = this._getSafeDrawData(coreDistance, group, minWidth); + // max touches + if(inst.options.dragMaxTouches > 0 && + ev.touches.length > inst.options.dragMaxTouches) { + return; } - else { - var nextKey = i + (intersections[key].amount - intersections[key].resolved); - var prevKey = i - (intersections[key].resolved + 1); - if (nextKey < dataset.length) {coreDistance = Math.abs(dataset[nextKey].x - key);} - if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[prevKey].x - key));} - var drawData = this._getSafeDrawData(coreDistance, group, minWidth); - intersections[key].resolved += 1; - if (group.options.barChart.allowOverlap == false) { - drawData.width = drawData.width / intersections[key].amount; - drawData.offset += (intersections[key].resolved) * drawData.width - (0.5*drawData.width * (intersections[key].amount+1)); - if (group.options.barChart.align == 'left') {offset -= 0.5*drawData.width;} - else if (group.options.barChart.align == 'right') {offset += 0.5*drawData.width;} - } - } - DOMutil.drawBar(dataset[i].x + drawData.offset, dataset[i].y, drawData.width, group.zeroPosition - dataset[i].y, group.className + ' bar', this.svgElements, this.svg); + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - // draw points - if (group.options.drawPoints.enabled == true) { - DOMutil.drawPoint(dataset[i].x + drawData.offset, dataset[i].y, group, this.svgElements, this.svg); - } - } - } - } - }; + case EVENT_MOVE: + // when the distance we moved is too small we skip this gesture + // or we can be already in dragging + if(ev.distance < inst.options.dragMinDistance && + cur.name != name) { + return; + } - LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { - var width, offset; - if (coreDistance < group.options.barChart.width && coreDistance > 0) { - width = coreDistance < minWidth ? minWidth : coreDistance; + var startCenter = cur.startEvent.center; - offset = 0; // recalculate offset with the new width; - if (group.options.slots) { // recalculate the shared width and offset if these options are set. - width = (width / group.options.slots.total); - offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); - } - if (group.options.barChart.align == 'left') {offset -= 0.5*coreDistance;} - else if (group.options.barChart.align == 'right') {offset += 0.5*coreDistance;} - } - else { - // no collisions, plot with default settings - width = group.options.barChart.width; - offset = 0; - if (group.options.slots) { - // if the groups are sharing the same points, this allows them to be plotted side by side - width = width / group.options.slots.total; - offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); - } - if (group.options.barChart.align == 'left') {offset -= 0.5*group.options.barChart.width;} - else if (group.options.barChart.align == 'right') {offset += 0.5*group.options.barChart.width;} - } + // we are dragging! + if(cur.name != name) { + cur.name = name; + if(inst.options.dragDistanceCorrection && ev.distance > 0) { + // When a drag is triggered, set the event center to dragMinDistance pixels from the original event center. + // Without this correction, the dragged distance would jumpstart at dragMinDistance pixels instead of at 0. + // It might be useful to save the original start point somewhere + var factor = Math.abs(inst.options.dragMinDistance / ev.distance); + startCenter.pageX += ev.deltaX * factor; + startCenter.pageY += ev.deltaY * factor; + startCenter.clientX += ev.deltaX * factor; + startCenter.clientY += ev.deltaY * factor; - return {width: width, offset: offset}; - } + // recalculate event data using new start point + ev = Detection.extendEventData(ev); + } + } + // lock drag to axis? + if(cur.lastEvent.dragLockToAxis || + ( inst.options.dragLockToAxis && + inst.options.dragLockMinDistance <= ev.distance + )) { + ev.dragLockToAxis = true; + } - /** - * draw a line graph - * - * @param datapoints - * @param group - */ - LineGraph.prototype._drawLineGraph = function (dataset, group) { - if (dataset != null) { - if (dataset.length > 0) { - var path, d; - var svgHeight = Number(this.svg.style.height.replace("px","")); - path = DOMutil.getSVGElement('path', this.svgElements, this.svg); - path.setAttributeNS(null, "class", group.className); + // keep direction on the axis that the drag gesture started on + var lastDirection = cur.lastEvent.direction; + if(ev.dragLockToAxis && lastDirection !== ev.direction) { + if(Utils.isVertical(lastDirection)) { + ev.direction = (ev.deltaY < 0) ? DIRECTION_UP : DIRECTION_DOWN; + } else { + ev.direction = (ev.deltaX < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + } - // construct path from dataset - if (group.options.catmullRom.enabled == true) { - d = this._catmullRom(dataset, group); - } - else { - d = this._linear(dataset); - } + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } - // append with points for fill and finalize the path - if (group.options.shaded.enabled == true) { - var fillPath = DOMutil.getSVGElement('path',this.svgElements, this.svg); - var dFill; - if (group.options.shaded.orientation == 'top') { - dFill = "M" + dataset[0].x + "," + 0 + " " + d + "L" + dataset[dataset.length - 1].x + "," + 0; - } - else { - dFill = "M" + dataset[0].x + "," + svgHeight + " " + d + "L" + dataset[dataset.length - 1].x + "," + svgHeight; - } - fillPath.setAttributeNS(null, "class", group.className + " fill"); - fillPath.setAttributeNS(null, "d", dFill); - } - // copy properties to path for drawing. - path.setAttributeNS(null, "d", "M" + d); + // trigger events + inst.trigger(name, ev); + inst.trigger(name + ev.direction, ev); - // draw points - if (group.options.drawPoints.enabled == true) { - this._drawPoints(dataset, group, this.svgElements, this.svg); - } - } - } - }; + var isVertical = Utils.isVertical(ev.direction); - /** - * draw the data points - * - * @param dataset - * @param JSONcontainer - * @param svg - * @param group - */ - LineGraph.prototype._drawPoints = function (dataset, group, JSONcontainer, svg, offset) { - if (offset === undefined) {offset = 0;} - for (var i = 0; i < dataset.length; i++) { - DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, JSONcontainer, svg); - } - }; + // block the browser events + if((inst.options.dragBlockVertical && isVertical) || + (inst.options.dragBlockHorizontal && !isVertical)) { + ev.preventDefault(); + } + break; + case EVENT_RELEASE: + if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; + case EVENT_END: + triggered = false; + break; + } + } - /** - * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the - * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for - * the yAxis. - * - * @param datapoints - * @returns {Array} - * @private - */ - LineGraph.prototype._preprocessData = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; + Hammer.gestures.Drag = { + name: name, + index: 50, + handler: dragGesture, + defaults: { + /** + * minimal movement that have to be made before the drag event gets triggered + * @property dragMinDistance + * @type {Number} + * @default 10 + */ + dragMinDistance: 10, - var increment = 1; - var amountOfPoints = datapoints.length; + /** + * Set dragDistanceCorrection to true to make the starting point of the drag + * be calculated from where the drag was triggered, not from where the touch started. + * Useful to avoid a jerk-starting drag, which can make fine-adjustments + * through dragging difficult, and be visually unappealing. + * @property dragDistanceCorrection + * @type {Boolean} + * @default true + */ + dragDistanceCorrection: true, - var yMin = datapoints[0].y; - var yMax = datapoints[0].y; + /** + * set 0 for unlimited, but this can conflict with transform + * @property dragMaxTouches + * @type {Number} + * @default 1 + */ + dragMaxTouches: 1, - // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop - // of width changing of the yAxis. - if (group.options.sampling == true) { - var xDistance = this.body.util.toGlobalScreen(datapoints[datapoints.length-1].x) - this.body.util.toGlobalScreen(datapoints[0].x); - var pointsPerPixel = amountOfPoints/xDistance; - increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1,Math.round(pointsPerPixel))); - } + /** + * prevent default browser behavior when dragging occurs + * be careful with it, it makes the element a blocking element + * when you are using the drag gesture, it is a good practice to set this true + * @property dragBlockHorizontal + * @type {Boolean} + * @default false + */ + dragBlockHorizontal: false, - for (var i = 0; i < amountOfPoints; i += increment) { - xValue = toScreen(datapoints[i].x) + this.width - 1; - yValue = datapoints[i].y; - extractedData.push({x: xValue, y: yValue}); - yMin = yMin > yValue ? yValue : yMin; - yMax = yMax < yValue ? yValue : yMax; - } + /** + * same as `dragBlockHorizontal`, but for vertical movement + * @property dragBlockVertical + * @type {Boolean} + * @default false + */ + dragBlockVertical: false, - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return {min: yMin, max: yMax, data: extractedData}; - }; + /** + * dragLockToAxis keeps the drag gesture on the axis that it started on, + * It disallows vertical directions if the initial direction was horizontal, and vice versa. + * @property dragLockToAxis + * @type {Boolean} + * @default false + */ + dragLockToAxis: false, + + /** + * drag lock only kicks in when distance > dragLockMinDistance + * This way, locking occurs only when the distance has become large enough to reliably determine the direction + * @property dragLockMinDistance + * @type {Number} + * @default 25 + */ + dragLockMinDistance: 25 + } + }; + })('drag'); /** - * This uses the DataAxis object to generate the correct Y coordinate on the SVG window. It uses the - * util function toScreen to get the x coordinate from the timestamp. + * @module gestures + */ + /** + * trigger a simple gesture event, so you can do anything in your handler. + * only usable if you know what your doing... * - * @param datapoints - * @param options - * @returns {Array} - * @private + * @class Gesture + * @static */ - LineGraph.prototype._convertYvalues = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var axis = this.yAxisLeft; - var svgHeight = Number(this.svg.style.height.replace("px","")); - - if (group.options.yAxisOrientation == 'right') { - axis = this.yAxisRight; - } - - for (var i = 0; i < datapoints.length; i++) { - xValue = datapoints[i].x; - yValue = Math.round(axis.convertValue(datapoints[i].y)); - extractedData.push({x: xValue, y: yValue}); - } - - group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); - - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return extractedData; - }; - - /** - * This uses an uniform parametrization of the CatmullRom algorithm: - * "On the Parameterization of Catmull-Rom Curves" by Cem Yuksel et al. - * @param data - * @returns {string} - * @private + * @event gesture + * @param {Object} ev */ - LineGraph.prototype._catmullRomUniform = function(data) { - // catmull rom - var p0, p1, p2, p3, bp1, bp2; - var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; - var normalization = 1/6; - var length = data.length; - for (var i = 0; i < length - 1; i++) { - - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; - - - // Catmull-Rom to Cubic Bezier conversion matrix - // 0 1 0 0 - // -1/6 1 1/6 0 - // 0 1/6 1 -1/6 - // 0 0 1 0 - - // bp0 = { x: p1.x, y: p1.y }; - bp1 = { x: ((-p0.x + 6*p1.x + p2.x) *normalization), y: ((-p0.y + 6*p1.y + p2.y) *normalization)}; - bp2 = { x: (( p1.x + 6*p2.x - p3.x) *normalization), y: (( p1.y + 6*p2.y - p3.y) *normalization)}; - // bp0 = { x: p2.x, y: p2.y }; - - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; - } - - return d; + Hammer.gestures.Gesture = { + name: 'gesture', + index: 1337, + handler: function releaseGesture(ev, inst) { + inst.trigger(this.name, ev); + } }; /** - * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. - * By default, the centripetal parameterization is used because this gives the nicest results. - * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. + * @module gestures + */ + /** + * Touch stays at the same place for x time * - * One optimization can be used to reuse distances since this is a sliding window approach. - * @param data - * @returns {string} - * @private + * @class Hold + * @static + */ + /** + * @event hold + * @param {Object} ev */ - LineGraph.prototype._catmullRom = function(data, group) { - var alpha = group.options.catmullRom.alpha; - if (alpha == 0 || alpha === undefined) { - return this._catmullRomUniform(data); - } - else { - var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; - var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; - var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; - var length = data.length; - for (var i = 0; i < length - 1; i++) { - - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; - - d1 = Math.sqrt(Math.pow(p0.x - p1.x,2) + Math.pow(p0.y - p1.y,2)); - d2 = Math.sqrt(Math.pow(p1.x - p2.x,2) + Math.pow(p1.y - p2.y,2)); - d3 = Math.sqrt(Math.pow(p2.x - p3.x,2) + Math.pow(p2.y - p3.y,2)); - // Catmull-Rom to Cubic Bezier conversion matrix - // - // A = 2d1^2a + 3d1^a * d2^a + d3^2a - // B = 2d3^2a + 3d3^a * d2^a + d2^2a - // - // [ 0 1 0 0 ] - // [ -d2^2a/N A/N d1^2a/N 0 ] - // [ 0 d3^2a/M B/M -d2^2a/M ] - // [ 0 0 1 0 ] + /** + * @param {String} name + */ + (function(name) { + var timer; - // [ 0 1 0 0 ] - // [ -d2pow2a/N A/N d1pow2a/N 0 ] - // [ 0 d3pow2a/M B/M -d2pow2a/M ] - // [ 0 0 1 0 ] + function holdGesture(ev, inst) { + var options = inst.options, + current = Detection.current; - d3powA = Math.pow(d3, alpha); - d3pow2A = Math.pow(d3,2*alpha); - d2powA = Math.pow(d2, alpha); - d2pow2A = Math.pow(d2,2*alpha); - d1powA = Math.pow(d1, alpha); - d1pow2A = Math.pow(d1,2*alpha); + switch(ev.eventType) { + case EVENT_START: + clearTimeout(timer); - A = 2*d1pow2A + 3*d1powA * d2powA + d2pow2A; - B = 2*d3pow2A + 3*d3powA * d2powA + d2pow2A; - N = 3*d1powA * (d1powA + d2powA); - if (N > 0) {N = 1 / N;} - M = 3*d3powA * (d3powA + d2powA); - if (M > 0) {M = 1 / M;} + // set the gesture so we can check in the timeout if it still is + current.name = name; - bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), - y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; + // set timer and if after the timeout it still is hold, + // we trigger the hold event + timer = setTimeout(function() { + if(current && current.name == name) { + inst.trigger(name, ev); + } + }, options.holdTimeout); + break; - bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), - y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; + case EVENT_MOVE: + if(ev.distance > options.holdThreshold) { + clearTimeout(timer); + } + break; - if (bp1.x == 0 && bp1.y == 0) {bp1 = p1;} - if (bp2.x == 0 && bp2.y == 0) {bp2 = p2;} - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; + case EVENT_RELEASE: + clearTimeout(timer); + break; + } } - return d; - } - }; + Hammer.gestures.Hold = { + name: name, + index: 10, + defaults: { + /** + * @property holdTimeout + * @type {Number} + * @default 500 + */ + holdTimeout: 500, - /** - * this generates the SVG path for a linear drawing between datapoints. - * @param data - * @returns {string} - * @private + /** + * movement allowed while holding + * @property holdThreshold + * @type {Number} + * @default 2 + */ + holdThreshold: 2 + }, + handler: holdGesture + }; + })('hold'); + + /** + * @module gestures */ - LineGraph.prototype._linear = function(data) { - // linear - var d = ""; - for (var i = 0; i < data.length; i++) { - if (i == 0) { - d += data[i].x + "," + data[i].y; - } - else { - d += " " + data[i].x + "," + data[i].y; + /** + * when a touch is being released from the page + * + * @class Release + * @static + */ + /** + * @event release + * @param {Object} ev + */ + Hammer.gestures.Release = { + name: 'release', + index: Infinity, + handler: function releaseGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + inst.trigger(this.name, ev); + } } - } - return d; }; - module.exports = LineGraph; - - -/***/ }, -/* 27 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var Component = __webpack_require__(18); - var TimeStep = __webpack_require__(17); - /** - * 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 + * @module gestures */ - function TimeAxis (body, options) { - this.dom = { - foreground: null, - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [], - redundant: { - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [] - } - }; - this.props = { - range: { - start: 0, - end: 0, - minimumStep: 0 - }, - lineTop: 0 - }; + /** + * triggers swipe events when the end velocity is above the threshold + * for best usage, set `preventDefault` (on the drag gesture) to `true` + * ```` + * hammertime.on("dragleft swipeleft", function(ev) { + * console.log(ev); + * ev.gesture.preventDefault(); + * }); + * ```` + * + * @class Swipe + * @static + */ + /** + * @event swipe + * @param {Object} ev + */ + /** + * @event swipeleft + * @param {Object} ev + */ + /** + * @event swiperight + * @param {Object} ev + */ + /** + * @event swipeup + * @param {Object} ev + */ + /** + * @event swipedown + * @param {Object} ev + */ + Hammer.gestures.Swipe = { + name: 'swipe', + index: 40, + defaults: { + /** + * @property swipeMinTouches + * @type {Number} + * @default 1 + */ + swipeMinTouches: 1, - this.defaultOptions = { - orientation: 'bottom', // supported: 'top', 'bottom' - // TODO: implement timeaxis orientations 'left' and 'right' - showMinorLabels: true, - showMajorLabels: true - }; - this.options = util.extend({}, this.defaultOptions); + /** + * @property swipeMaxTouches + * @type {Number} + * @default 1 + */ + swipeMaxTouches: 1, - this.body = body; + /** + * horizontal swipe velocity + * @property swipeVelocityX + * @type {Number} + * @default 0.6 + */ + swipeVelocityX: 0.6, - // create the HTML DOM - this._create(); + /** + * vertical swipe velocity + * @property swipeVelocityY + * @type {Number} + * @default 0.6 + */ + swipeVelocityY: 0.6 + }, - this.setOptions(options); - } + handler: function swipeGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + var touches = ev.touches.length, + options = inst.options; - TimeAxis.prototype = new Component(); + // max touches + if(touches < options.swipeMinTouches || + touches > options.swipeMaxTouches) { + return; + } - /** - * 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(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); - } + // when the distance we moved is too small we skip this gesture + // or we can be already in dragging + if(ev.velocityX > options.swipeVelocityX || + ev.velocityY > options.swipeVelocityY) { + // trigger swipe events + inst.trigger(this.name, ev); + inst.trigger(this.name + ev.direction, ev); + } + } + } }; /** - * Create the HTML DOM for the TimeAxis + * @module gestures */ - 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 + * Single tap and a double tap on a place + * + * @class Tap + * @static + */ + /** + * @event tap + * @param {Object} ev + */ + /** + * @event doubletap + * @param {Object} ev */ - 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 + * @param {String} name */ - TimeAxis.prototype.redraw = function () { - var options = this.options, - props = this.props, - foreground = this.dom.foreground, - background = this.dom.background; + (function(name) { + var hasMoved = false; - // 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); + function tapGesture(ev, inst) { + var options = inst.options, + current = Detection.current, + prev = Detection.previous, + sincePrev, + didDoubleTap; - // calculate character width and height - this._calculateCharSize(); + switch(ev.eventType) { + case EVENT_START: + hasMoved = false; + break; - // TODO: recalculate sizes only needed when parent is resized or options is changed - var orientation = this.options.orientation, - showMinorLabels = this.options.showMinorLabels, - showMajorLabels = this.options.showMajorLabels; + case EVENT_MOVE: + hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); + break; - // 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; + case EVENT_END: + if(!Utils.inStr(ev.srcEvent.type, 'cancel') && ev.deltaTime < options.tapMaxTime && !hasMoved) { + // previous gesture, for the double tap since these are two different gesture detections + sincePrev = prev && prev.lastEvent && ev.timeStamp - prev.lastEvent.timeStamp; + didDoubleTap = false; - 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 + // check if double tap + if(prev && prev.name == name && + (sincePrev && sincePrev < options.doubleTapInterval) && + ev.distance < options.doubleTapDistance) { + inst.trigger('doubletap', ev); + didDoubleTap = true; + } - // 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); + // do a single tap + if(!didDoubleTap || options.tapAlways) { + current.name = name; + inst.trigger(current.name, ev); + } + } + break; + } + } - foreground.style.height = this.props.height + 'px'; + Hammer.gestures.Tap = { + name: name, + index: 100, + handler: tapGesture, + defaults: { + /** + * max time of a tap, this is for the slow tappers + * @property tapMaxTime + * @type {Number} + * @default 250 + */ + tapMaxTime: 250, - this._repaintLabels(); + /** + * max distance of movement of a tap, this is for the slow tappers + * @property tapMaxDistance + * @type {Number} + * @default 10 + */ + tapMaxDistance: 10, - // 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) - } + /** + * always trigger the `tap` event, even while double-tapping + * @property tapAlways + * @type {Boolean} + * @default true + */ + tapAlways: true, - return this._isResized() || parentChanged; - }; + /** + * max distance between two taps + * @property doubleTapDistance + * @type {Number} + * @default 20 + */ + doubleTapDistance: 20, + + /** + * max time between two taps + * @property doubleTapInterval + * @type {Number} + * @default 300 + */ + doubleTapInterval: 300 + } + }; + })('tap'); /** - * Repaint major and minor text labels and vertical grid lines - * @private + * @module gestures */ - 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'), - end = util.convert(this.body.range.end, 'Number'), - minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() - -this.body.util.toTime(0).valueOf(); - var step = new TimeStep(new Date(start), new Date(end), minimumStep); - 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.majorLines = dom.majorLines; - dom.redundant.majorTexts = dom.majorTexts; - dom.redundant.minorLines = dom.minorLines; - dom.redundant.minorTexts = dom.minorTexts; - dom.majorLines = []; - dom.majorTexts = []; - dom.minorLines = []; - dom.minorTexts = []; - - step.first(); - var xFirstMajorLabel = undefined; - var max = 0; - while (step.hasNext() && max < 1000) { - max++; - var cur = step.getCurrent(), - x = this.body.util.toScreen(cur), - isMajor = step.isMajor(); - - // TODO: lines must have a width, such that we can create css backgrounds - - if (this.options.showMinorLabels) { - this._repaintMinorText(x, step.getLabelMinor(), orientation); - } + /** + * when a touch is being touched at the page + * + * @class Touch + * @static + */ + /** + * @event touch + * @param {Object} ev + */ + Hammer.gestures.Touch = { + name: 'touch', + index: -Infinity, + defaults: { + /** + * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, + * but it improves gestures like transforming and dragging. + * be careful with using this, it can be very annoying for users to be stuck on the page + * @property preventDefault + * @type {Boolean} + * @default false + */ + preventDefault: false, - if (isMajor && this.options.showMajorLabels) { - if (x > 0) { - if (xFirstMajorLabel == undefined) { - xFirstMajorLabel = x; + /** + * disable mouse events, so only touch (or pen!) input triggers events + * @property preventMouse + * @type {Boolean} + * @default false + */ + preventMouse: false + }, + handler: function touchGesture(ev, inst) { + if(inst.options.preventMouse && ev.pointerType == POINTER_MOUSE) { + ev.stopDetect(); + return; } - this._repaintMajorText(x, step.getLabelMajor(), orientation); - } - this._repaintMajorLine(x, orientation); - } - else { - this._repaintMinorLine(x, orientation); - } - - 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); - } - } + if(inst.options.preventDefault) { + ev.preventDefault(); + } - // 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); - } + if(ev.eventType == EVENT_TOUCH) { + inst.trigger('touch', ev); + } } - }); }; /** - * Create a minor label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @private + * @module gestures */ - TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { - // 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); - label.className = 'text minor'; - 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.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) - * @private + * User want to scale or rotate with 2 fingers + * Preventing the default browser behavior is a good way to improve feel and working. This can be done with the + * `preventDefault` option. + * + * @class Transform + * @static + */ + /** + * @event transform + * @param {Object} ev + */ + /** + * @event transformstart + * @param {Object} ev + */ + /** + * @event transformend + * @param {Object} ev + */ + /** + * @event pinchin + * @param {Object} ev + */ + /** + * @event pinchout + * @param {Object} ev + */ + /** + * @event rotate + * @param {Object} ev */ - TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { - // reuse redundant label - var label = this.dom.redundant.majorTexts.shift(); - - if (!label) { - // create label - var content = document.createTextNode(text); - label = document.createElement('div'); - label.className = 'text major'; - label.appendChild(content); - this.dom.foreground.appendChild(label); - } - this.dom.majorTexts.push(label); - - label.childNodes[0].nodeValue = text; - //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) - * @private + * @param {String} name */ - TimeAxis.prototype._repaintMinorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.minorLines.shift(); + (function(name) { + var triggered = false; - if (!line) { - // create vertical line - line = document.createElement('div'); - line.className = 'grid vertical minor'; - this.dom.background.appendChild(line); - } - this.dom.minorLines.push(line); + function transformGesture(ev, inst) { + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - 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'; - }; + case EVENT_MOVE: + // at least multitouch + if(ev.touches.length < 2) { + return; + } - /** - * Create a Major line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMajorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.majorLines.shift(); + var scaleThreshold = Math.abs(1 - ev.scale); + var rotationThreshold = Math.abs(ev.rotation); - if (!line) { - // create vertical line - line = document.createElement('DIV'); - line.className = 'grid vertical major'; - this.dom.background.appendChild(line); - } - this.dom.majorLines.push(line); + // when the distance we moved is too small we skip this gesture + // or we can be already in dragging + if(scaleThreshold < inst.options.transformMinScale && + rotationThreshold < inst.options.transformMinRotation) { + return; + } - 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'; - }; + // we are transforming! + Detection.current.name = name; - /** - * 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. + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } - // 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'; + inst.trigger(name, ev); // basic transform event - 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; + // trigger rotate event + if(rotationThreshold > inst.options.transformMinRotation) { + inst.trigger('rotate', ev); + } - // 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 minor measure'; - this.dom.measureCharMajor.style.position = 'absolute'; + // trigger pinch event + if(scaleThreshold > inst.options.transformMinScale) { + inst.trigger('pinch', ev); + inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); + } + break; - 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; - }; + case EVENT_RELEASE: + if(triggered && ev.changedLength < 2) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; + } + } + + Hammer.gestures.Transform = { + name: name, + index: 45, + defaults: { + /** + * minimal scale factor, no scale is 1, zoomin is to 0 and zoomout until higher then 1 + * @property transformMinScale + * @type {Number} + * @default 0.01 + */ + transformMinScale: 0.01, + + /** + * rotation in degrees + * @property transformMinRotation + * @type {Number} + * @default 1 + */ + transformMinRotation: 1 + }, + + handler: transformGesture + }; + })('transform'); /** - * Snap a date to a rounded value. - * The snap intervals are dependent on the current scale and step. - * @param {Date} date the date to be snapped. - * @return {Date} snappedDate + * @module hammer */ - TimeAxis.prototype.snap = function(date) { - return this.step.snap(date); - }; - module.exports = TimeAxis; + // AMD export + if(true) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = (function() { + return Hammer; + }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + // commonjs export + } else if(typeof module !== 'undefined' && module.exports) { + module.exports = Hammer; + // browser export + } else { + window.Hammer = Hammer; + } + })(window); /***/ }, -/* 28 */ +/* 20 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(41); + var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(21); + var moment = __webpack_require__(2); + var Component = __webpack_require__(22); /** - * @constructor Item - * @param {Object} data Object containing (optional) parameters type, - * start, end, content, group, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} options Configuration options - * // TODO: describe available options + * @constructor Range + * A Range controls a numeric range with a start and end value. + * The Range adjusts the range based on mouse events or programmatic changes, + * and triggers events when the range is changing or has been changed. + * @param {{dom: Object, domProps: Object, emitter: Emitter}} body + * @param {Object} [options] See description at Range.setOptions */ - function Item (data, conversion, options) { - this.id = null; - this.parent = null; - this.data = data; - this.dom = null; - this.conversion = conversion || {}; - this.options = options || {}; - - this.selected = false; - this.displayed = false; - this.dirty = true; + function Range(body, options) { + var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); + this.start = now.clone().add('days', -3).valueOf(); // Number + this.end = now.clone().add('days', 4).valueOf(); // Number - this.top = null; - this.left = null; - this.width = null; - this.height = null; - } + this.body = body; - /** - * Select current item - */ - Item.prototype.select = function() { - this.selected = true; - if (this.displayed) this.redraw(); - }; + // default options + this.defaultOptions = { + start: null, + end: null, + direction: 'horizontal', // 'horizontal' or 'vertical' + moveable: true, + zoomable: true, + min: null, + max: null, + zoomMin: 10, // milliseconds + zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000 // milliseconds + }; + this.options = util.extend({}, this.defaultOptions); - /** - * Unselect current item - */ - Item.prototype.unselect = function() { - this.selected = false; - if (this.displayed) this.redraw(); - }; + this.props = { + touch: {} + }; + + // drag listeners for dragging + this.body.emitter.on('dragstart', this._onDragStart.bind(this)); + this.body.emitter.on('drag', this._onDrag.bind(this)); + this.body.emitter.on('dragend', this._onDragEnd.bind(this)); + + // ignore dragging when holding + this.body.emitter.on('hold', this._onHold.bind(this)); + + // mouse wheel for zooming + this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); + this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF + + // pinch to zoom + this.body.emitter.on('touch', this._onTouch.bind(this)); + this.body.emitter.on('pinch', this._onPinch.bind(this)); + + this.setOptions(options); + } + + Range.prototype = new Component(); /** - * Set a parent for the item - * @param {ItemSet | Group} parent + * Set options for the range controller + * @param {Object} options Available options: + * {Number | Date | String} start Start date for the range + * {Number | Date | String} end End date for the range + * {Number} min Minimum value for start + * {Number} max Maximum value for end + * {Number} zoomMin Set a minimum value for + * (end - start). + * {Number} zoomMax Set a maximum value for + * (end - start). + * {Boolean} moveable Enable moving of the range + * by dragging. True by default + * {Boolean} zoomable Enable zooming of the range + * by pinching/scrolling. True by default */ - Item.prototype.setParent = function(parent) { - if (this.displayed) { - this.hide(); - this.parent = parent; - if (this.parent) { - this.show(); + Range.prototype.setOptions = function (options) { + if (options) { + // copy the options that we know + var fields = ['direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable']; + util.selectiveExtend(fields, this.options, options); + + if ('start' in options || 'end' in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); } } - else { - this.parent = parent; - } }; /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Test whether direction has a valid value + * @param {String} direction 'horizontal' or 'vertical' */ - Item.prototype.isVisible = function(range) { - // Should be implemented by Item implementations - return false; - }; + function validateDirection (direction) { + if (direction != 'horizontal' && direction != 'vertical') { + throw new TypeError('Unknown direction "' + direction + '". ' + + 'Choose "horizontal" or "vertical".'); + } + } /** - * Show the Item in the DOM (when not already visible) - * @return {Boolean} changed + * Set a new start and end range + * @param {Number} [start] + * @param {Number} [end] */ - Item.prototype.show = function() { - return false; + Range.prototype.setRange = function(start, end) { + var changed = this._applyRange(start, end); + if (changed) { + var params = { + start: new Date(this.start), + end: new Date(this.end) + }; + this.body.emitter.emit('rangechange', params); + this.body.emitter.emit('rangechanged', params); + } }; /** - * Hide the Item from the DOM (when visible) + * Set a new start and end range. This method is the same as setRange, but + * does not trigger a range change and range changed event, and it returns + * true when the range is changed + * @param {Number} [start] + * @param {Number} [end] * @return {Boolean} changed + * @private */ - Item.prototype.hide = function() { - return false; - }; - - /** - * Repaint the item - */ - Item.prototype.redraw = function() { - // should be implemented by the item - }; + Range.prototype._applyRange = function(start, end) { + var newStart = (start != null) ? util.convert(start, 'Date').valueOf() : this.start, + newEnd = (end != null) ? util.convert(end, 'Date').valueOf() : this.end, + max = (this.options.max != null) ? util.convert(this.options.max, 'Date').valueOf() : null, + min = (this.options.min != null) ? util.convert(this.options.min, 'Date').valueOf() : null, + diff; - /** - * Reposition the Item horizontally - */ - Item.prototype.repositionX = function() { - // should be implemented by the item - }; + // check for valid number + if (isNaN(newStart) || newStart === null) { + throw new Error('Invalid start "' + start + '"'); + } + if (isNaN(newEnd) || newEnd === null) { + throw new Error('Invalid end "' + end + '"'); + } - /** - * Reposition the Item vertically - */ - Item.prototype.repositionY = function() { - // should be implemented by the item - }; + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; + } - /** - * Repaint a delete button on the top right of the item when the item is selected - * @param {HTMLElement} anchor - * @protected - */ - Item.prototype._repaintDeleteButton = function (anchor) { - if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { - // create and show button - var me = this; + // prevent start < min + if (min !== null) { + if (newStart < min) { + diff = (min - newStart); + newStart += diff; + newEnd += diff; - var deleteButton = document.createElement('div'); - deleteButton.className = 'delete'; - deleteButton.title = 'Delete this item'; + // prevent end > max + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } + } - Hammer(deleteButton, { - preventDefault: true - }).on('tap', function (event) { - me.parent.removeFromDataSet(me); - event.stopPropagation(); - }); + // prevent end > max + if (max !== null) { + if (newEnd > max) { + diff = (newEnd - max); + newStart -= diff; + newEnd -= diff; - anchor.appendChild(deleteButton); - this.dom.deleteButton = deleteButton; + // prevent start < min + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } } - else if (!this.selected && this.dom.deleteButton) { - // remove button - if (this.dom.deleteButton.parentNode) { - this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton); + + // prevent (end-start) < zoomMin + if (this.options.zoomMin !== null) { + var zoomMin = parseFloat(this.options.zoomMin); + if (zoomMin < 0) { + zoomMin = 0; + } + if ((newEnd - newStart) < zoomMin) { + if ((this.end - this.start) === zoomMin) { + // ignore this action, we are already zoomed to the minimum + newStart = this.start; + newEnd = this.end; + } + else { + // zoom to the minimum + diff = (zoomMin - (newEnd - newStart)); + newStart -= diff / 2; + newEnd += diff / 2; + } } - this.dom.deleteButton = null; } - }; - module.exports = Item; + // prevent (end-start) > zoomMax + if (this.options.zoomMax !== null) { + var zoomMax = parseFloat(this.options.zoomMax); + if (zoomMax < 0) { + zoomMax = 0; + } + if ((newEnd - newStart) > zoomMax) { + if ((this.end - this.start) === zoomMax) { + // ignore this action, we are already zoomed to the maximum + newStart = this.start; + newEnd = this.end; + } + else { + // zoom to the maximum + diff = ((newEnd - newStart) - zoomMax); + newStart += diff / 2; + newEnd -= diff / 2; + } + } + } + var changed = (this.start != newStart || this.end != newEnd); -/***/ }, -/* 29 */ -/***/ function(module, exports, __webpack_require__) { + this.start = newStart; + this.end = newEnd; - var Item = __webpack_require__(28); + return changed; + }; /** - * @constructor ItemBox - * @extends Item - * @param {Object} data Object containing parameters start - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe available options + * Retrieve the current range. + * @return {Object} An object with start and end properties */ - function ItemBox (data, conversion, options) { - this.props = { - dot: { - width: 0, - height: 0 - }, - line: { - width: 0, - height: 0 - } + Range.prototype.getRange = function() { + return { + start: this.start, + end: this.end }; - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); - } - } - - Item.call(this, data, conversion, options); - } - - ItemBox.prototype = new Item (null, null, null); + }; /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Calculate the conversion offset and scale for current range, based on + * the provided width + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion */ - ItemBox.prototype.isVisible = function(range) { - // determine visibility - // TODO: account for the real width of the item. Right now we just add 1/4 to the window - var interval = (range.end - range.start) / 4; - return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); + Range.prototype.conversion = function (width) { + return Range.conversion(this.start, this.end, width); }; /** - * Repaint the item + * Static method to calculate the conversion offset and scale for a range, + * based on the provided start, end, and width + * @param {Number} start + * @param {Number} end + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion */ - ItemBox.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; - - // create main box - dom.box = document.createElement('DIV'); - - // contents box (inside the background box). used for making margins - dom.content = document.createElement('DIV'); - dom.content.className = 'content'; - dom.box.appendChild(dom.content); - - // line to axis - dom.line = document.createElement('DIV'); - dom.line.className = 'line'; - - // dot on axis - dom.dot = document.createElement('DIV'); - dom.dot.className = 'dot'; - - // attach this item as attribute - dom.box['timeline-item'] = this; - } - - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.box.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); - foreground.appendChild(dom.box); - } - if (!dom.line.parentNode) { - var background = this.parent.dom.background; - if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); - background.appendChild(dom.line); - } - if (!dom.dot.parentNode) { - var axis = this.parent.dom.axis; - if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); - axis.appendChild(dom.dot); - } - this.displayed = true; - - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; - } - else { - throw new Error('Property "content" missing in item ' + this.data.id); + Range.conversion = function (start, end, width) { + if (width != 0 && (end - start != 0)) { + return { + offset: start, + scale: width / (end - start) } - - this.dirty = true; } - - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; + else { + return { + offset: 0, + scale: 1 + }; } + }; - // update class - var className = (this.data.className? ' ' + this.data.className : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.box.className = 'item box' + className; - dom.line.className = 'item line' + className; - dom.dot.className = 'item dot' + className; + /** + * Start dragging horizontally or vertically + * @param {Event} event + * @private + */ + Range.prototype._onDragStart = function(event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - this.dirty = true; - } + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; - // recalculate size - if (this.dirty) { - this.props.dot.height = dom.dot.offsetHeight; - this.props.dot.width = dom.dot.offsetWidth; - this.props.line.width = dom.line.offsetWidth; - this.width = dom.box.offsetWidth; - this.height = dom.box.offsetHeight; + this.props.touch.start = this.start; + this.props.touch.end = this.end; - this.dirty = false; + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; } - - this._repaintDeleteButton(dom.box); }; /** - * Show the item in the DOM (when not already displayed). The items DOM will - * be created when needed. + * Perform dragging operation + * @param {Event} event + * @private */ - ItemBox.prototype.show = function() { - if (!this.displayed) { - this.redraw(); - } + Range.prototype._onDrag = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; + var direction = this.options.direction; + validateDirection(direction); + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + var delta = (direction == 'horizontal') ? event.gesture.deltaX : event.gesture.deltaY, + interval = (this.props.touch.end - this.props.touch.start), + width = (direction == 'horizontal') ? this.body.domProps.center.width : this.body.domProps.center.height, + diffRange = -delta / width * interval; + this._applyRange(this.props.touch.start + diffRange, this.props.touch.end + diffRange); + this.body.emitter.emit('rangechange', { + start: new Date(this.start), + end: new Date(this.end) + }); }; /** - * Hide the item from the DOM (when visible) + * Stop dragging operation + * @param {event} event + * @private */ - ItemBox.prototype.hide = function() { - if (this.displayed) { - var dom = this.dom; - - if (dom.box.parentNode) dom.box.parentNode.removeChild(dom.box); - if (dom.line.parentNode) dom.line.parentNode.removeChild(dom.line); - if (dom.dot.parentNode) dom.dot.parentNode.removeChild(dom.dot); + Range.prototype._onDragEnd = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - this.top = null; - this.left = null; + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; - this.displayed = false; + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'auto'; } + + // fire a rangechanged event + this.body.emitter.emit('rangechanged', { + start: new Date(this.start), + end: new Date(this.end) + }); }; /** - * Reposition the item horizontally - * @Override + * Event handler for mouse wheel event, used to zoom + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {Event} event + * @private */ - ItemBox.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start), - align = this.options.align, - left, - box = this.dom.box, - line = this.dom.line, - dot = this.dom.dot; + Range.prototype._onMouseWheel = function(event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - // calculate left position of the box - if (align == 'right') { - this.left = start - this.width; + // retrieve delta + var delta = 0; + if (event.wheelDelta) { /* IE/Opera. */ + delta = event.wheelDelta / 120; + } else if (event.detail) { /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail / 3; } - else if (align == 'left') { - this.left = start; - } - else { - // default or 'center' - this.left = start - this.width / 2; + + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + // perform the zoom action. Delta is normally 1 or -1 + + // adjust a negative delta such that zooming in with delta 0.1 + // equals zooming out with a delta -0.1 + var scale; + if (delta < 0) { + scale = 1 - (delta / 5); + } + else { + scale = 1 / (1 + (delta / 5)) ; + } + + // calculate center, the date to zoom around + var gesture = hammerUtil.fakeGesture(this, event), + pointer = getPointer(gesture.center, this.body.dom.center), + pointerDate = this._pointerToDate(pointer); + + this.zoom(scale, pointerDate); } - // reposition box - box.style.left = this.left + 'px'; + // Prevent default actions caused by mouse wheel + // (else the page and timeline both zoom and scroll) + event.preventDefault(); + }; - // reposition line - line.style.left = (start - this.props.line.width / 2) + 'px'; + /** + * Start of a touch gesture + * @private + */ + Range.prototype._onTouch = function (event) { + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.allowDragging = true; + this.props.touch.center = null; + }; - // reposition dot - dot.style.left = (start - this.props.dot.width / 2) + 'px'; + /** + * On start of a hold gesture + * @private + */ + Range.prototype._onHold = function () { + this.props.touch.allowDragging = false; }; /** - * Reposition the item vertically - * @Override + * Handle pinch event + * @param {Event} event + * @private */ - ItemBox.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box, - line = this.dom.line, - dot = this.dom.dot; + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - if (orientation == 'top') { - box.style.top = (this.top || 0) + 'px'; + this.props.touch.allowDragging = false; - line.style.top = '0'; - line.style.height = (this.parent.top + this.top + 1) + 'px'; - line.style.bottom = ''; - } - else { // orientation 'bottom' - var itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty - var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + if (event.gesture.touches.length > 1) { + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); + } - box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; - line.style.top = (itemSetHeight - lineHeight) + 'px'; - line.style.bottom = '0'; - } + var scale = 1 / event.gesture.scale, + initDate = this._pointerToDate(this.props.touch.center); - dot.style.top = (-this.props.dot.height / 2) + 'px'; - }; + // calculate new start and end + var newStart = parseInt(initDate + (this.props.touch.start - initDate) * scale); + var newEnd = parseInt(initDate + (this.props.touch.end - initDate) * scale); - module.exports = ItemBox; + // apply new range + this.setRange(newStart, newEnd); + } + }; + /** + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date + * @private + */ + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; -/***/ }, -/* 30 */ -/***/ function(module, exports, __webpack_require__) { + validateDirection(direction); - var Item = __webpack_require__(28); + if (direction == 'horizontal') { + var width = this.body.domProps.center.width; + conversion = this.conversion(width); + return pointer.x / conversion.scale + conversion.offset; + } + else { + var height = this.body.domProps.center.height; + conversion = this.conversion(height); + return pointer.y / conversion.scale + conversion.offset; + } + }; /** - * @constructor ItemPoint - * @extends Item - * @param {Object} data Object containing parameters start - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe available options + * Get the pointer location relative to the location of the dom element + * @param {{pageX: Number, pageY: Number}} touch + * @param {Element} element HTML DOM element + * @return {{x: Number, y: Number}} pointer + * @private */ - function ItemPoint (data, conversion, options) { - this.props = { - dot: { - top: 0, - width: 0, - height: 0 - }, - content: { - height: 0, - marginLeft: 0 - } + function getPointer (touch, element) { + return { + x: touch.pageX - util.getAbsoluteLeft(element), + y: touch.pageY - util.getAbsoluteTop(element) }; + } - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); - } + /** + * Zoom the range the given scale in or out. Start and end date will + * be adjusted, and the timeline will be redrawn. You can optionally give a + * date around which to zoom. + * For example, try scale = 0.9 or 1.1 + * @param {Number} scale Scaling factor. Values above 1 will zoom out, + * values below 1 will zoom in. + * @param {Number} [center] Value representing a date around which will + * be zoomed. + */ + Range.prototype.zoom = function(scale, center) { + // if centerDate is not provided, take it half between start Date and end Date + if (center == null) { + center = (this.start + this.end) / 2; } - Item.call(this, data, conversion, options); - } + // calculate new start and end + var newStart = center + (this.start - center) * scale; + var newEnd = center + (this.end - center) * scale; - ItemPoint.prototype = new Item (null, null, null); + this.setRange(newStart, newEnd); + }; /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Move the range with a given delta to the left or right. Start and end + * value will be adjusted. For example, try delta = 0.1 or -0.1 + * @param {Number} delta Moving amount. Positive value will move right, + * negative value will move left */ - ItemPoint.prototype.isVisible = function(range) { - // determine visibility - // TODO: account for the real width of the item. Right now we just add 1/4 to the window - var interval = (range.end - range.start) / 4; - return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); + Range.prototype.move = function(delta) { + // zoom start Date and end Date relative to the centerDate + var diff = (this.end - this.start); + + // apply new values + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; + + // TODO: reckon with min and max range + + this.start = newStart; + this.end = newEnd; }; /** - * Repaint the item + * Move the range to a new center point + * @param {Number} moveTo New center point of the range */ - ItemPoint.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + Range.prototype.moveTo = function(moveTo) { + var center = (this.start + this.end) / 2; - // background box - dom.point = document.createElement('div'); - // className is updated in redraw() + var diff = center - moveTo; - // contents box, right from the dot - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.point.appendChild(dom.content); + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; - // dot at start - dom.dot = document.createElement('div'); - dom.point.appendChild(dom.dot); + this.setRange(newStart, newEnd); + }; - // attach this item as attribute - dom.point['timeline-item'] = this; - } + module.exports = Range; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.point.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) { - throw new Error('Cannot redraw time axis: parent has no foreground container element'); - } - foreground.appendChild(dom.point); - } - this.displayed = true; - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; - } - else { - throw new Error('Property "content" missing in item ' + this.data.id); - } +/***/ }, +/* 21 */ +/***/ function(module, exports, __webpack_require__) { - this.dirty = true; - } + var Hammer = __webpack_require__(18); - // update title - if (this.data.title != this.title) { - dom.point.title = this.data.title; - this.title = this.data.title; - } + /** + * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent + * @param {Element} element + * @param {Event} event + */ + exports.fakeGesture = function(element, event) { + var eventType = null; - // update class - var className = (this.data.className? ' ' + this.data.className : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.point.className = 'item point' + className; - dom.dot.className = 'item dot' + className; + // for hammer.js 1.0.5 + // var gesture = Hammer.event.collectEventData(this, eventType, event); - this.dirty = true; - } + // for hammer.js 1.0.6+ + var touches = Hammer.event.getTouchList(event, eventType); + var gesture = Hammer.event.collectEventData(this, eventType, touches, event); - // recalculate size - if (this.dirty) { - this.width = dom.point.offsetWidth; - this.height = dom.point.offsetHeight; - this.props.dot.width = dom.dot.offsetWidth; - this.props.dot.height = dom.dot.offsetHeight; - this.props.content.height = dom.content.offsetHeight; + // on IE in standards mode, no touches are recognized by hammer.js, + // resulting in NaN values for center.pageX and center.pageY + if (isNaN(gesture.center.pageX)) { + gesture.center.pageX = event.pageX; + } + if (isNaN(gesture.center.pageY)) { + gesture.center.pageY = event.pageY; + } - // resize contents - dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; - //dom.content.style.marginRight = ... + 'px'; // TODO: margin right + return gesture; + }; - dom.dot.style.top = ((this.height - this.props.dot.height) / 2) + 'px'; - dom.dot.style.left = (this.props.dot.width / 2) + 'px'; - this.dirty = false; - } +/***/ }, +/* 22 */ +/***/ function(module, exports, __webpack_require__) { - this._repaintDeleteButton(dom.point); - }; + /** + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] + */ + function Component (body, options) { + this.options = null; + this.props = null; + } /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options */ - ItemPoint.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + Component.prototype.setOptions = function(options) { + if (options) { + util.extend(this.options, options); } }; /** - * Hide the item from the DOM (when visible) + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - ItemPoint.prototype.hide = function() { - if (this.displayed) { - if (this.dom.point.parentNode) { - this.dom.point.parentNode.removeChild(this.dom.point); - } - - this.top = null; - this.left = null; - - this.displayed = false; - } + Component.prototype.redraw = function() { + // should be implemented by the component + return false; }; /** - * Reposition the item horizontally - * @Override + * Destroy the component. Cleanup DOM and event listeners */ - ItemPoint.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start); - - this.left = start - this.props.dot.width; - - // reposition point - this.dom.point.style.left = this.left + 'px'; + Component.prototype.destroy = function() { + // should be implemented by the component }; /** - * Reposition the item vertically - * @Override + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected */ - ItemPoint.prototype.repositionY = function() { - var orientation = this.options.orientation, - point = this.dom.point; + Component.prototype._isResized = function() { + var resized = (this.props._previousWidth !== this.props.width || + this.props._previousHeight !== this.props.height); - if (orientation == 'top') { - point.style.top = this.top + 'px'; - } - else { - point.style.top = (this.parent.height - this.top - this.height) + 'px'; - } + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; + + return resized; }; - module.exports = ItemPoint; + module.exports = Component; /***/ }, -/* 31 */ +/* 23 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(41); - var Item = __webpack_require__(28); + var Emitter = __webpack_require__(10); + var Hammer = __webpack_require__(18); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var Range = __webpack_require__(20); + var TimeAxis = __webpack_require__(24); + var CurrentTime = __webpack_require__(26); + var CustomTime = __webpack_require__(27); + var ItemSet = __webpack_require__(28); /** - * @constructor ItemRange - * @extends Item - * @param {Object} data Object containing parameters start, end - * content, className. - * @param {{toScreen: function, toTime: function}} conversion - * Conversion functions from time to screen and vice versa - * @param {Object} [options] Configuration options - * // TODO: describe options + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Core.setOptions for the available options. + * @constructor */ - function ItemRange (data, conversion, options) { - this.props = { - content: { - width: 0 - } - }; - this.overflow = false; // if contents can overflow (css styling), this flag is set to true - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data.id); - } - if (data.end == undefined) { - throw new Error('Property "end" missing in item ' + data.id); - } - } - - Item.call(this, data, conversion, options); - } - - ItemRange.prototype = new Item (null, null, null); + function Core () {} - ItemRange.prototype.baseClassName = 'item range'; + // turn Core into an event emitter + Emitter(Core.prototype); /** - * Check whether this item is visible inside given range - * @returns {{start: Number, end: Number}} range with a timestamp for start and end - * @returns {boolean} True if visible + * Create the main DOM for the Core: a root panel containing left, right, + * top, bottom, content, and background panel. + * @param {Element} container The container element where the Core will + * be attached. + * @private */ - ItemRange.prototype.isVisible = function(range) { - // determine visibility - return (this.data.start < range.end) && (this.data.end > range.start); - }; + Core.prototype._create = function (container) { + this.dom = {}; - /** - * Repaint the item - */ - ItemRange.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + this.dom.root = document.createElement('div'); + this.dom.background = document.createElement('div'); + this.dom.backgroundVertical = document.createElement('div'); + this.dom.backgroundHorizontal = document.createElement('div'); + this.dom.centerContainer = document.createElement('div'); + this.dom.leftContainer = document.createElement('div'); + this.dom.rightContainer = document.createElement('div'); + this.dom.center = document.createElement('div'); + this.dom.left = document.createElement('div'); + this.dom.right = document.createElement('div'); + this.dom.top = document.createElement('div'); + this.dom.bottom = document.createElement('div'); + this.dom.shadowTop = document.createElement('div'); + this.dom.shadowBottom = document.createElement('div'); + this.dom.shadowTopLeft = document.createElement('div'); + this.dom.shadowBottomLeft = document.createElement('div'); + this.dom.shadowTopRight = document.createElement('div'); + this.dom.shadowBottomRight = document.createElement('div'); - // background box - dom.box = document.createElement('div'); - // className is updated in redraw() + this.dom.background.className = 'vispanel background'; + this.dom.backgroundVertical.className = 'vispanel background vertical'; + this.dom.backgroundHorizontal.className = 'vispanel background horizontal'; + this.dom.centerContainer.className = 'vispanel center'; + this.dom.leftContainer.className = 'vispanel left'; + this.dom.rightContainer.className = 'vispanel right'; + this.dom.top.className = 'vispanel top'; + this.dom.bottom.className = 'vispanel bottom'; + this.dom.left.className = 'content'; + this.dom.center.className = 'content'; + this.dom.right.className = 'content'; + this.dom.shadowTop.className = 'shadow top'; + this.dom.shadowBottom.className = 'shadow bottom'; + this.dom.shadowTopLeft.className = 'shadow top'; + this.dom.shadowBottomLeft.className = 'shadow bottom'; + this.dom.shadowTopRight.className = 'shadow top'; + this.dom.shadowBottomRight.className = 'shadow bottom'; - // contents box - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.box.appendChild(dom.content); + this.dom.root.appendChild(this.dom.background); + this.dom.root.appendChild(this.dom.backgroundVertical); + this.dom.root.appendChild(this.dom.backgroundHorizontal); + this.dom.root.appendChild(this.dom.centerContainer); + this.dom.root.appendChild(this.dom.leftContainer); + this.dom.root.appendChild(this.dom.rightContainer); + this.dom.root.appendChild(this.dom.top); + this.dom.root.appendChild(this.dom.bottom); - // attach this item as attribute - dom.box['timeline-item'] = this; - } + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.box.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) { - throw new Error('Cannot redraw time axis: parent has no foreground container element'); - } - foreground.appendChild(dom.box); - } - this.displayed = true; + this.dom.centerContainer.appendChild(this.dom.shadowTop); + this.dom.centerContainer.appendChild(this.dom.shadowBottom); + this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); + this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); + this.dom.rightContainer.appendChild(this.dom.shadowTopRight); + this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; - } - else { - throw new Error('Property "content" missing in item ' + this.data.id); - } + this.on('rangechange', this.redraw.bind(this)); + this.on('change', this.redraw.bind(this)); + this.on('touch', this._onTouch.bind(this)); + this.on('pinch', this._onPinch.bind(this)); + this.on('dragstart', this._onDragStart.bind(this)); + this.on('drag', this._onDrag.bind(this)); - this.dirty = true; - } + // create event listeners for all interesting events, these events will be + // emitted via emitter + this.hammer = Hammer(this.dom.root, { + prevent_default: true + }); + this.listeners = {}; - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; - } + var me = this; + var events = [ + 'touch', 'pinch', + 'tap', 'doubletap', 'hold', + 'dragstart', 'drag', 'dragend', + 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (event) { + var listener = function () { + var args = [event].concat(Array.prototype.slice.call(arguments, 0)); + me.emit.apply(me, args); + }; + me.hammer.on(event, listener); + me.listeners[event] = listener; + }); - // update class - var className = (this.data.className ? (' ' + this.data.className) : '') + - (this.selected ? ' selected' : ''); - if (this.className != className) { - this.className = className; - dom.box.className = this.baseClassName + className; + // size properties of each of the panels + this.props = { + root: {}, + background: {}, + centerContainer: {}, + leftContainer: {}, + rightContainer: {}, + center: {}, + left: {}, + right: {}, + top: {}, + bottom: {}, + border: {}, + scrollTop: 0, + scrollTopMin: 0 + }; + this.touch = {}; // store state information needed for touch events - this.dirty = true; - } + // attach the root panel to the provided container + if (!container) throw new Error('No container provided'); + container.appendChild(this.dom.root); + }; - // recalculate size - if (this.dirty) { - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; + /** + * Destroy the Core, clean up all DOM elements and event listeners. + */ + Core.prototype.destroy = function () { + // unbind datasets + this.clear(); - this.props.content.width = this.dom.content.offsetWidth; - this.height = this.dom.box.offsetHeight; + // remove all event listeners + this.off(); - this.dirty = false; + // stop checking for changed size + this._stopAutoResize(); + + // remove from DOM + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); } + this.dom = null; - this._repaintDeleteButton(dom.box); - this._repaintDragLeft(); - this._repaintDragRight(); + // cleanup hammer touch events + for (var event in this.listeners) { + if (this.listeners.hasOwnProperty(event)) { + delete this.listeners[event]; + } + } + this.listeners = null; + this.hammer = null; + + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + component.destroy(); + }); + + this.body = null; }; + /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Set a custom time bar + * @param {Date} time */ - ItemRange.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + Core.prototype.setCustomTime = function (time) { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } + + this.customTime.setCustomTime(time); }; /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed + * Retrieve the current custom time. + * @return {Date} customTime */ - ItemRange.prototype.hide = function() { - if (this.displayed) { - var box = this.dom.box; - - if (box.parentNode) { - box.parentNode.removeChild(box); - } - - this.top = null; - this.left = null; - - this.displayed = false; + Core.prototype.getCustomTime = function() { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } + + return this.customTime.getCustomTime(); }; + /** - * Reposition the item horizontally - * @Override + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - ItemRange.prototype.repositionX = function() { - var props = this.props, - parentWidth = this.parent.width, - start = this.conversion.toScreen(this.data.start), - end = this.conversion.toScreen(this.data.end), - padding = this.options.padding, - contentLeft; + Core.prototype.getVisibleItems = function() { + return this.itemSet && this.itemSet.getVisibleItems() || []; + }; - // limit the width of the this, as browsers cannot draw very wide divs - if (start < -parentWidth) { - start = -parentWidth; - } - if (end > 2 * parentWidth) { - end = 2 * parentWidth; - } - var boxWidth = Math.max(end - start, 1); - if (this.overflow) { - // when range exceeds left of the window, position the contents at the left of the visible area - contentLeft = Math.max(-start, 0); - this.left = start; - this.width = boxWidth + this.props.content.width; - // Note: The calculation of width is an optimistic calculation, giving - // a width which will not change when moving the Timeline - // So no restacking needed, which is nicer for the eye; + /** + * Clear the Core. By Default, items, groups and options are cleared. + * Example usage: + * + * timeline.clear(); // clear items, groups, and options + * timeline.clear({options: true}); // clear options only + * + * @param {Object} [what] Optionally specify what to clear. By default: + * {items: true, groups: true, options: true} + */ + Core.prototype.clear = function(what) { + // clear items + if (!what || what.items) { + this.setItems(null); } - else { // no overflow - // when range exceeds left of the window, position the contents at the left of the visible area - if (start < 0) { - contentLeft = Math.min(-start, - (end - start - props.content.width - 2 * padding)); - // TODO: remove the need for options.padding. it's terrible. - } - else { - contentLeft = 0; - } - this.left = start; - this.width = boxWidth; + // clear groups + if (!what || what.groups) { + this.setGroups(null); } - this.dom.box.style.left = this.left + 'px'; - this.dom.box.style.width = boxWidth + 'px'; - this.dom.content.style.left = contentLeft + 'px'; - }; - - /** - * Reposition the item vertically - * @Override - */ - ItemRange.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box; + // clear options of timeline and of each of the components + if (!what || what.options) { + this.components.forEach(function (component) { + component.setOptions(component.defaultOptions); + }); - if (orientation == 'top') { - box.style.top = this.top + 'px'; - } - else { - box.style.top = (this.parent.height - this.top - this.height) + 'px'; + this.setOptions(this.defaultOptions); // this will also do a redraw } }; /** - * Repaint a drag area on the left side of the range when the range is selected - * @protected + * Set Core window such that it fits all items */ - ItemRange.prototype._repaintDragLeft = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { - // create and show drag area - var dragLeft = document.createElement('div'); - dragLeft.className = 'drag-left'; - dragLeft.dragLeftItem = this; - - // TODO: this should be redundant? - Hammer(dragLeft, { - preventDefault: true - }).on('drag', function () { - //console.log('drag left') - }); + Core.prototype.fit = function() { + // apply the data range as range + var dataRange = this.getItemRange(); - this.dom.box.appendChild(dragLeft); - this.dom.dragLeft = dragLeft; - } - else if (!this.selected && this.dom.dragLeft) { - // delete drag area - if (this.dom.dragLeft.parentNode) { - this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft); + // add 5% space on both sides + var start = dataRange.min; + var end = dataRange.max; + if (start != null && end != null) { + var interval = (end.valueOf() - start.valueOf()); + if (interval <= 0) { + // prevent an empty interval + interval = 24 * 60 * 60 * 1000; // 1 day } - this.dom.dragLeft = null; + start = new Date(start.valueOf() - interval * 0.05); + end = new Date(end.valueOf() + interval * 0.05); + } + + // skip range set if there is no start and end date + if (start === null && end === null) { + return; } + + this.range.setRange(start, end); }; + /** - * Repaint a drag area on the right side of the range when the range is selected - * @protected + * Set the visible window. Both parameters are optional, you can change only + * start or only end. Syntax: + * + * TimeLine.setWindow(start, end) + * TimeLine.setWindow(range) + * + * Where start and end can be a Date, number, or string, and range is an + * object with properties start and end. + * + * @param {Date | Number | String | Object} [start] Start date of visible window + * @param {Date | Number | String} [end] End date of visible window */ - ItemRange.prototype._repaintDragRight = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { - // create and show drag area - var dragRight = document.createElement('div'); - dragRight.className = 'drag-right'; - dragRight.dragRightItem = this; - - // TODO: this should be redundant? - Hammer(dragRight, { - preventDefault: true - }).on('drag', function () { - //console.log('drag right') - }); - - this.dom.box.appendChild(dragRight); - this.dom.dragRight = dragRight; + Core.prototype.setWindow = function(start, end) { + if (arguments.length == 1) { + var range = arguments[0]; + this.range.setRange(range.start, range.end); } - else if (!this.selected && this.dom.dragRight) { - // delete drag area - if (this.dom.dragRight.parentNode) { - this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); - } - this.dom.dragRight = null; + else { + this.range.setRange(start, end); } }; - module.exports = ItemRange; + /** + * Get the visible window + * @return {{start: Date, end: Date}} Visible range + */ + Core.prototype.getWindow = function() { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; + }; + /** + * Force a redraw of the Core. Can be useful to manually redraw when + * option autoResize=false + */ + Core.prototype.redraw = function() { + var resized = false, + options = this.options, + props = this.props, + dom = this.dom; -/***/ }, -/* 32 */ -/***/ function(module, exports, __webpack_require__) { + if (!dom) return; // when destroyed - var Emitter = __webpack_require__(46); - var Hammer = __webpack_require__(41); - var mousetrap = __webpack_require__(49); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(43); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var dotparser = __webpack_require__(38); - var gephiParser = __webpack_require__(39); - var Groups = __webpack_require__(34); - var Images = __webpack_require__(35); - var Node = __webpack_require__(36); - var Edge = __webpack_require__(33); - var Popup = __webpack_require__(37); - var MixinLoader = __webpack_require__(45); + // update class names + dom.root.className = 'vis timeline root ' + options.orientation; - // Load custom shapes into CanvasRenderingContext2D - __webpack_require__(44); + // update root width and height options + dom.root.style.maxHeight = util.option.asSize(options.maxHeight, ''); + dom.root.style.minHeight = util.option.asSize(options.minHeight, ''); + dom.root.style.width = util.option.asSize(options.width, ''); - /** - * @constructor Network - * Create a network visualization, displaying nodes and edges. - * - * @param {Element} container The DOM element in which the Network will - * be created. Normally a div element. - * @param {Object} data An object containing parameters - * {Array} nodes - * {Array} edges - * @param {Object} options Options - */ - function Network (container, data, options) { - if (!(this instanceof Network)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } + // calculate border widths + props.border.left = (dom.centerContainer.offsetWidth - dom.centerContainer.clientWidth) / 2; + props.border.right = props.border.left; + props.border.top = (dom.centerContainer.offsetHeight - dom.centerContainer.clientHeight) / 2; + props.border.bottom = props.border.top; + var borderRootHeight= dom.root.offsetHeight - dom.root.clientHeight; + var borderRootWidth = dom.root.offsetWidth - dom.root.clientWidth; - this._initializeMixinLoaders(); + // calculate the heights. If any of the side panels is empty, we set the height to + // minus the border width, such that the border will be invisible + props.center.height = dom.center.offsetHeight; + props.left.height = dom.left.offsetHeight; + props.right.height = dom.right.offsetHeight; + props.top.height = dom.top.clientHeight || -props.border.top; + props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; - // create variables and set default values - this.containerElement = container; + // TODO: compensate borders when any of the panels is empty. - // render and calculation settings - this.renderRefreshRate = 60; // hz (fps) - this.renderTimestep = 1000 / this.renderRefreshRate; // ms -- saves calculation later on - this.renderTime = 0.5 * this.renderTimestep; // measured time it takes to render a frame - this.maxPhysicsTicksPerRender = 3; // max amount of physics ticks per render step. - this.physicsDiscreteStepsize = 0.50; // discrete stepsize of the simulation + // apply auto height + // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) + var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); + var autoHeight = props.top.height + contentHeight + props.bottom.height + + borderRootHeight + props.border.top + props.border.bottom; + dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); - this.initializing = true; + // calculate heights of the content panels + props.root.height = dom.root.offsetHeight; + props.background.height = props.root.height - borderRootHeight; + var containerHeight = props.root.height - props.top.height - props.bottom.height - + borderRootHeight; + props.centerContainer.height = containerHeight; + props.leftContainer.height = containerHeight; + props.rightContainer.height = props.leftContainer.height; - this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; + // calculate the widths of the panels + props.root.width = dom.root.offsetWidth; + props.background.width = props.root.width - borderRootWidth; + props.left.width = dom.leftContainer.clientWidth || -props.border.left; + props.leftContainer.width = props.left.width; + props.right.width = dom.rightContainer.clientWidth || -props.border.right; + props.rightContainer.width = props.right.width; + var centerWidth = props.root.width - props.left.width - props.right.width - borderRootWidth; + props.center.width = centerWidth; + props.centerContainer.width = centerWidth; + props.top.width = centerWidth; + props.bottom.width = centerWidth; - // set constant values - this.defaultOptions = { - nodes: { - mass: 1, - radiusMin: 10, - radiusMax: 30, - radius: 10, - shape: 'ellipse', - image: undefined, - widthMin: 16, // px - widthMax: 64, // px - fixed: false, - fontColor: 'black', - fontSize: 14, // px - fontFace: 'verdana', - level: -1, - color: { - border: '#2B7CE9', - background: '#97C2FC', - highlight: { - border: '#2B7CE9', - background: '#D2E5FF' - }, - hover: { - border: '#2B7CE9', - background: '#D2E5FF' - } - }, - borderColor: '#2B7CE9', - backgroundColor: '#97C2FC', - highlightColor: '#D2E5FF', - group: undefined, - borderWidth: 1 - }, - edges: { - widthMin: 1, - widthMax: 15, - width: 1, - widthSelectionMultiplier: 2, - hoverWidth: 1.5, - style: 'line', - color: { - color:'#848484', - highlight:'#848484', - hover: '#848484' - }, - fontColor: '#343434', - fontSize: 14, // px - fontFace: 'arial', - fontFill: 'white', - arrowScaleFactor: 1, - dash: { - length: 10, - gap: 5, - altLength: undefined - }, - inheritColor: "from" // to, from, false, true (== from) - }, - configurePhysics:false, - physics: { - barnesHut: { - enabled: true, - theta: 1 / 0.6, // inverted to save time during calculation - gravitationalConstant: -2000, - centralGravity: 0.3, - springLength: 95, - springConstant: 0.04, - damping: 0.09 - }, - repulsion: { - centralGravity: 0.0, - springLength: 200, - springConstant: 0.05, - nodeDistance: 100, - damping: 0.09 - }, - hierarchicalRepulsion: { - enabled: false, - centralGravity: 0.0, - springLength: 100, - springConstant: 0.01, - nodeDistance: 150, - damping: 0.09 - }, - damping: null, - centralGravity: null, - springLength: null, - springConstant: null - }, - clustering: { // Per Node in Cluster = PNiC - enabled: false, // (Boolean) | global on/off switch for clustering. - initialMaxNodes: 100, // (# nodes) | if the initial amount of nodes is larger than this, we cluster until the total number is less than this threshold. - clusterThreshold:500, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than this. If it is, cluster until reduced to reduceToNodes - reduceToNodes:300, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than clusterThreshold. If it is, cluster until reduced to this - chainThreshold: 0.4, // (% of all drawn nodes)| maximum percentage of allowed chainnodes (long strings of connected nodes) within all nodes. (lower means less chains). - clusterEdgeThreshold: 20, // (px) | edge length threshold. if smaller, this node is clustered. - sectorThreshold: 100, // (# nodes in cluster) | cluster size threshold. If larger, expanding in own sector. - screenSizeThreshold: 0.2, // (% of canvas) | relative size threshold. If the width or height of a clusternode takes up this much of the screen, decluster node. - fontSizeMultiplier: 4.0, // (px PNiC) | how much the cluster font size grows per node in cluster (in px). - maxFontSize: 1000, - forceAmplification: 0.1, // (multiplier PNiC) | factor of increase fo the repulsion force of a cluster (per node in cluster). - distanceAmplification: 0.1, // (multiplier PNiC) | factor how much the repulsion distance of a cluster increases (per node in cluster). - edgeGrowth: 20, // (px PNiC) | amount of clusterSize connected to the edge is multiplied with this and added to edgeLength. - nodeScaling: {width: 1, // (px PNiC) | growth of the width per node in cluster. - height: 1, // (px PNiC) | growth of the height per node in cluster. - radius: 1}, // (px PNiC) | growth of the radius per node in cluster. - maxNodeSizeIncrements: 600, // (# increments) | max growth of the width per node in cluster. - activeAreaBoxSize: 80, // (px) | box area around the curser where clusters are popped open. - clusterLevelDifference: 2 - }, - navigation: { - enabled: false - }, - keyboard: { - enabled: false, - speed: {x: 10, y: 10, zoom: 0.02} - }, - dataManipulation: { - enabled: false, - initiallyVisible: false - }, - hierarchicalLayout: { - enabled:false, - levelSeparation: 150, - nodeSpacing: 100, - direction: "UD" // UD, DU, LR, RL - }, - freezeForStabilization: false, - smoothCurves: { - enabled: true, - dynamic: true, - type: "continuous", - roundness: 0.5 - }, - dynamicSmoothCurves: true, - maxVelocity: 30, - minVelocity: 0.1, // px/s - stabilize: true, // stabilize before displaying the network - stabilizationIterations: 1000, // maximum number of iteration to stabilize - labels:{ - add:"Add Node", - edit:"Edit", - link:"Add Link", - del:"Delete selected", - editNode:"Edit Node", - editEdge:"Edit Edge", - back:"Back", - addDescription:"Click in an empty space to place a new node.", - linkDescription:"Click on a node and drag the edge to another node to connect them.", - editEdgeDescription:"Click on the control points and drag them to a node to connect to it.", - addError:"The function for add does not support two arguments (data,callback).", - linkError:"The function for connect does not support two arguments (data,callback).", - editError:"The function for edit does not support two arguments (data, callback).", - editBoundError:"No edit function has been bound to this button.", - deleteError:"The function for delete does not support two arguments (data, callback).", - deleteClusterError:"Clusters cannot be deleted." - }, - tooltip: { - delay: 300, - fontColor: 'black', - fontSize: 14, // px - fontFace: 'verdana', - color: { - border: '#666', - background: '#FFFFC6' - } - }, - dragNetwork: true, - dragNodes: true, - zoomable: true, - hover: false, - hideEdgesOnDrag: false, - hideNodesOnDrag: false, - width : '100%', - height : '100%', - selectable: true - }; - this.constants = util.extend({}, this.defaultOptions); + // resize the panels + dom.background.style.height = props.background.height + 'px'; + dom.backgroundVertical.style.height = props.background.height + 'px'; + dom.backgroundHorizontal.style.height = props.centerContainer.height + 'px'; + dom.centerContainer.style.height = props.centerContainer.height + 'px'; + dom.leftContainer.style.height = props.leftContainer.height + 'px'; + dom.rightContainer.style.height = props.rightContainer.height + 'px'; - this.hoverObj = {nodes:{},edges:{}}; - this.controlNodesActive = false; + dom.background.style.width = props.background.width + 'px'; + dom.backgroundVertical.style.width = props.centerContainer.width + 'px'; + dom.backgroundHorizontal.style.width = props.background.width + 'px'; + dom.centerContainer.style.width = props.center.width + 'px'; + dom.top.style.width = props.top.width + 'px'; + dom.bottom.style.width = props.bottom.width + 'px'; - // Node variables - var network = this; - this.groups = new Groups(); // object with groups - this.images = new Images(); // object with images - this.images.setOnloadCallback(function () { - network._redraw(); - }); + // reposition the panels + dom.background.style.left = '0'; + dom.background.style.top = '0'; + dom.backgroundVertical.style.left = props.left.width + 'px'; + dom.backgroundVertical.style.top = '0'; + dom.backgroundHorizontal.style.left = '0'; + dom.backgroundHorizontal.style.top = props.top.height + 'px'; + dom.centerContainer.style.left = props.left.width + 'px'; + dom.centerContainer.style.top = props.top.height + 'px'; + dom.leftContainer.style.left = '0'; + dom.leftContainer.style.top = props.top.height + 'px'; + dom.rightContainer.style.left = (props.left.width + props.center.width) + 'px'; + dom.rightContainer.style.top = props.top.height + 'px'; + dom.top.style.left = props.left.width + 'px'; + dom.top.style.top = '0'; + dom.bottom.style.left = props.left.width + 'px'; + dom.bottom.style.top = (props.top.height + props.centerContainer.height) + 'px'; - // keyboard navigation variables - this.xIncrement = 0; - this.yIncrement = 0; - this.zoomIncrement = 0; + // update the scrollTop, feasible range for the offset can be changed + // when the height of the Core or of the contents of the center changed + this._updateScrollTop(); - // loading all the mixins: - // load the force calculation functions, grouped under the physics system. - this._loadPhysicsSystem(); - // create a frame and canvas - this._create(); - // load the sector system. (mandatory, fully integrated with Network) - this._loadSectorSystem(); - // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) - this._loadClusterSystem(); - // load the selection system. (mandatory, required by Network) - this._loadSelectionSystem(); - // load the selection system. (mandatory, required by Network) - this._loadHierarchySystem(); + // reposition the scrollable contents + var offset = this.props.scrollTop; + if (options.orientation == 'bottom') { + offset += Math.max(this.props.centerContainer.height - this.props.center.height - + this.props.border.top - this.props.border.bottom, 0); + } + dom.center.style.left = '0'; + dom.center.style.top = offset + 'px'; + dom.left.style.left = '0'; + dom.left.style.top = offset + 'px'; + dom.right.style.left = '0'; + dom.right.style.top = offset + 'px'; - // apply options - this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); - this._setScale(1); - this.setOptions(options); + // show shadows when vertical scrolling is available + var visibilityTop = this.props.scrollTop == 0 ? 'hidden' : ''; + var visibilityBottom = this.props.scrollTop == this.props.scrollTopMin ? 'hidden' : ''; + dom.shadowTop.style.visibility = visibilityTop; + dom.shadowBottom.style.visibility = visibilityBottom; + dom.shadowTopLeft.style.visibility = visibilityTop; + dom.shadowBottomLeft.style.visibility = visibilityBottom; + dom.shadowTopRight.style.visibility = visibilityTop; + dom.shadowBottomRight.style.visibility = visibilityBottom; - // other vars - this.freezeSimulation = false;// freeze the simulation - this.cachedFunctions = {}; + // redraw all components + this.components.forEach(function (component) { + resized = component.redraw() || resized; + }); + if (resized) { + // keep repainting until all sizes are settled + this.redraw(); + } + }; - // containers for nodes and edges - this.calculationNodes = {}; - this.calculationNodeIndices = []; - this.nodeIndices = []; // array with all the indices of the nodes. Used to speed up forces calculation - this.nodes = {}; // object with Node objects - this.edges = {}; // object with Edge objects + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error('Function repaint is deprecated. Use redraw instead.'); + }; - // position and scale variables and objects - this.canvasTopLeft = {"x": 0,"y": 0}; // coordinates of the top left of the canvas. they will be set during _redraw. - this.canvasBottomRight = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw - this.pointerPosition = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw - this.areaCenter = {}; // object with x and y elements used for determining the center of the zoom action - this.scale = 1; // defining the global scale variable in the constructor - this.previousScale = this.scale; // this is used to check if the zoom operation is zooming in or out + /** + * Convert a position on screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @private + */ + // TODO: move this function to Range + Core.prototype._toTime = function(x) { + var conversion = this.range.conversion(this.props.center.width); + return new Date(x / conversion.scale + conversion.offset); + }; - // datasets or dataviews - this.nodesData = null; // A DataSet or DataView - this.edgesData = null; // A DataSet or DataView - - // create event listeners used to subscribe on the DataSets of the nodes and edges - this.nodesListeners = { - 'add': function (event, params) { - network._addNodes(params.items); - network.start(); - }, - 'update': function (event, params) { - network._updateNodes(params.items); - network.start(); - }, - 'remove': function (event, params) { - network._removeNodes(params.items); - network.start(); - } - }; - this.edgesListeners = { - 'add': function (event, params) { - network._addEdges(params.items); - network.start(); - }, - 'update': function (event, params) { - network._updateEdges(params.items); - network.start(); - }, - 'remove': function (event, params) { - network._removeEdges(params.items); - network.start(); - } - }; - - // properties for the animation - this.moving = true; - this.timer = undefined; // Scheduling function. Is definded in this.start(); - - // load data (the disable start variable will be the same as the enabled clustering) - this.setData(data,this.constants.clustering.enabled || this.constants.hierarchicalLayout.enabled); - - // hierarchical layout - this.initializing = false; - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); - } - else { - // zoom so all data will fit on the screen, if clustering is enabled, we do not want start to be called here. - if (this.constants.stabilize == false) { - this.zoomExtent(true,this.constants.clustering.enabled); - } - } - - // if clustering is disabled, the simulation will have started in the setData function - if (this.constants.clustering.enabled) { - this.startWithClustering(); - } - } - - // Extend Network with an Emitter mixin - Emitter(Network.prototype); /** - * Get the script path where the vis.js library is located - * - * @returns {string | null} path Path or null when not found. Path does not - * end with a slash. + * Convert a position on the global screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x * @private */ - Network.prototype._getScriptPath = function() { - var scripts = document.getElementsByTagName( 'script' ); - - // find script named vis.js or vis.min.js - for (var i = 0; i < scripts.length; i++) { - var src = scripts[i].src; - var match = src && /\/?vis(.min)?\.js$/.exec(src); - if (match) { - // return path without the script name - return src.substring(0, src.length - match[0].length); - } - } - - return null; + // TODO: move this function to Range + Core.prototype._toGlobalTime = function(x) { + var conversion = this.range.conversion(this.props.root.width); + return new Date(x / conversion.scale + conversion.offset); }; - /** - * Find the center position of the network + * Convert a datetime (Date object) into a position on the screen + * @param {Date} time A date + * @return {int} x The position on the screen in pixels which corresponds + * with the given date. * @private */ - Network.prototype._getRange = function() { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (minX > (node.x)) {minX = node.x;} - if (maxX < (node.x)) {maxX = node.x;} - if (minY > (node.y)) {minY = node.y;} - if (maxY < (node.y)) {maxY = node.y;} - } - } - if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { - minY = 0, maxY = 0, minX = 0, maxX = 0; - } - return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + // TODO: move this function to Range + Core.prototype._toScreen = function(time) { + var conversion = this.range.conversion(this.props.center.width); + return (time.valueOf() - conversion.offset) * conversion.scale; }; /** - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - * @returns {{x: number, y: number}} + * Convert a datetime (Date object) into a position on the root + * This is used to get the pixel density estimate for the screen, not the center panel + * @param {Date} time A date + * @return {int} x The position on root in pixels which corresponds + * with the given date. * @private */ - Network.prototype._findCenter = function(range) { - return {x: (0.5 * (range.maxX + range.minX)), - y: (0.5 * (range.maxY + range.minY))}; + // TODO: move this function to Range + Core.prototype._toGlobalScreen = function(time) { + var conversion = this.range.conversion(this.props.root.width); + return (time.valueOf() - conversion.offset) * conversion.scale; }; /** - * center the network - * - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * Initialize watching when option autoResize is true + * @private */ - Network.prototype._centerNetwork = function(range) { - var center = this._findCenter(range); - - center.x *= this.scale; - center.y *= this.scale; - center.x -= 0.5 * this.frame.canvas.clientWidth; - center.y -= 0.5 * this.frame.canvas.clientHeight; - - this._setTranslation(-center.x,-center.y); // set at 0,0 + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); + } + else { + this._stopAutoResize(); + } }; - /** - * This function zooms out to fit all data on screen based on amount of nodes - * - * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; - * @param {Boolean} [disableStart] | If true, start is not called. + * Watch for changes in the size of the container. On resize, the Panel will + * automatically redraw itself. + * @private */ - Network.prototype.zoomExtent = function(initialZoom, disableStart) { - if (initialZoom === undefined) { - initialZoom = false; - } - if (disableStart === undefined) { - disableStart = false; - } + Core.prototype._startAutoResize = function () { + var me = this; - var range = this._getRange(); - var zoomLevel; + this._stopAutoResize(); - if (initialZoom == true) { - var numberOfNodes = this.nodeIndices.length; - if (this.constants.smoothCurves == true) { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 49.07548 / (numberOfNodes + 142.05338) + 9.1444e-04; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } + this._onResize = function() { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; } - else { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + + if (me.dom.root) { + // check whether the frame is resized + if ((me.dom.root.clientWidth != me.props.lastWidth) || + (me.dom.root.clientHeight != me.props.lastHeight)) { + me.props.lastWidth = me.dom.root.clientWidth; + me.props.lastHeight = me.dom.root.clientHeight; + + me.emit('change'); } } + }; - // correct for larger canvasses. - var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); - zoomLevel *= factor; - } - else { - var xDistance = (Math.abs(range.minX) + Math.abs(range.maxX)) * 1.1; - var yDistance = (Math.abs(range.minY) + Math.abs(range.maxY)) * 1.1; - - var xZoomLevel = this.frame.canvas.clientWidth / xDistance; - var yZoomLevel = this.frame.canvas.clientHeight / yDistance; + // add event listener to window resize + util.addEventListener(window, 'resize', this._onResize); - zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; - } + this.watchTimer = setInterval(this._onResize, 1000); + }; - if (zoomLevel > 1.0) { - zoomLevel = 1.0; + /** + * Stop watching for a resize of the frame. + * @private + */ + Core.prototype._stopAutoResize = function () { + if (this.watchTimer) { + clearInterval(this.watchTimer); + this.watchTimer = undefined; } - - this._setScale(zoomLevel); - this._centerNetwork(range); - if (disableStart == false) { - this.moving = true; - this.start(); - } + // remove event listener on window.resize + util.removeEventListener(window, 'resize', this._onResize); + this._onResize = null; }; + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + Core.prototype._onTouch = function (event) { + this.touch.allowDragging = true; + }; /** - * Update the this.nodeIndices with the most recent node index list + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._updateNodeIndexList = function() { - this._clearNodeIndexList(); - for (var idx in this.nodes) { - if (this.nodes.hasOwnProperty(idx)) { - this.nodeIndices.push(idx); - } - } + Core.prototype._onPinch = function (event) { + this.touch.allowDragging = false; }; + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + Core.prototype._onDragStart = function (event) { + this.touch.initialScrollTop = this.props.scrollTop; + }; /** - * Set nodes and edges, and optionally options as well. - * - * @param {Object} data Object containing parameters: - * {Array | DataSet | DataView} [nodes] Array with nodes - * {Array | DataSet | DataView} [edges] Array with edges - * {String} [dot] String containing data in DOT format - * {String} [gephi] String containing data in gephi JSON format - * {Options} [options] Object with options - * @param {Boolean} [disableStart] | optional: disable the calling of the start function. + * Move the timeline vertically + * @param {Event} event + * @private */ - Network.prototype.setData = function(data, disableStart) { - if (disableStart === undefined) { - disableStart = false; - } + Core.prototype._onDrag = function (event) { + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.touch.allowDragging) return; - if (data && data.dot && (data.nodes || data.edges)) { - throw new SyntaxError('Data must contain either parameter "dot" or ' + - ' parameter pair "nodes" and "edges", but not both.'); - } + var delta = event.gesture.deltaY; - // set options - this.setOptions(data && data.options); - - // set all data - if (data && data.dot) { - // parse DOT file - if(data && data.dot) { - var dotData = dotparser.DOTToGraph(data.dot); - this.setData(dotData); - return; - } - } - else if (data && data.gephi) { - // parse DOT file - if(data && data.gephi) { - var gephiData = gephiParser.parseGephi(data.gephi); - this.setData(gephiData); - return; - } - } - else { - this._setNodes(data && data.nodes); - this._setEdges(data && data.edges); - } + var oldScrollTop = this._getScrollTop(); + var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); - this._putDataInSector(); - if (!disableStart) { - // find a stable position or start animating to a stable position - if (this.constants.stabilize) { - var me = this; - setTimeout(function() {me._stabilize(); me.start();},0) - } - else { - this.start(); - } + if (newScrollTop != oldScrollTop) { + this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already } }; /** - * Set options - * @param {Object} options - * @param {Boolean} [initializeView] | set zoom and translation to default. + * Apply a scrollTop + * @param {Number} scrollTop + * @returns {Number} scrollTop Returns the applied scrollTop + * @private */ - Network.prototype.setOptions = function (options) { - if (options) { - var prop; - - var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', - 'onAdd','onEdit','onEditEdge','onConnect','onDelete' - ]; - util.selectiveNotDeepExtend(fields,this.constants, options); - util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); - util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); - - if (options.physics) { - util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); - util.mergeOptions(this.constants.physics, options.physics,'repulsion'); + Core.prototype._setScrollTop = function (scrollTop) { + this.props.scrollTop = scrollTop; + this._updateScrollTop(); + return this.props.scrollTop; + }; - if (options.physics.hierarchicalRepulsion) { - this.constants.hierarchicalLayout.enabled = true; - this.constants.physics.hierarchicalRepulsion.enabled = true; - this.constants.physics.barnesHut.enabled = false; - for (prop in options.physics.hierarchicalRepulsion) { - if (options.physics.hierarchicalRepulsion.hasOwnProperty(prop)) { - this.constants.physics.hierarchicalRepulsion[prop] = options.physics.hierarchicalRepulsion[prop]; - } - } - } + /** + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop + * @private + */ + Core.prototype._updateScrollTop = function () { + // recalculate the scrollTopMin + var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero + if (scrollTopMin != this.props.scrollTopMin) { + // in case of bottom orientation, change the scrollTop such that the contents + // do not move relative to the time axis at the bottom + if (this.options.orientation == 'bottom') { + this.props.scrollTop += (scrollTopMin - this.props.scrollTopMin); } + this.props.scrollTopMin = scrollTopMin; + } - if (options.onAdd) {this.triggerFunctions.add = options.onAdd;} - if (options.onEdit) {this.triggerFunctions.edit = options.onEdit;} - if (options.onEditEdge) {this.triggerFunctions.editEdge = options.onEditEdge;} - if (options.onConnect) {this.triggerFunctions.connect = options.onConnect;} - if (options.onDelete) {this.triggerFunctions.del = options.onDelete;} + // limit the scrollTop to the feasible scroll range + if (this.props.scrollTop > 0) this.props.scrollTop = 0; + if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; - util.mergeOptions(this.constants, options,'smoothCurves'); - util.mergeOptions(this.constants, options,'hierarchicalLayout'); - util.mergeOptions(this.constants, options,'clustering'); - util.mergeOptions(this.constants, options,'navigation'); - util.mergeOptions(this.constants, options,'keyboard'); - util.mergeOptions(this.constants, options,'dataManipulation'); + return this.props.scrollTop; + }; + /** + * Get the current scrollTop + * @returns {number} scrollTop + * @private + */ + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; + }; - if (options.dataManipulation) { - this.editMode = this.constants.dataManipulation.initiallyVisible; - } + module.exports = Core; - // TODO: work out these options and document them - if (options.edges) { - if (options.edges.color !== undefined) { - if (util.isString(options.edges.color)) { - this.constants.edges.color = {}; - this.constants.edges.color.color = options.edges.color; - this.constants.edges.color.highlight = options.edges.color; - this.constants.edges.color.hover = options.edges.color; - } - else { - if (options.edges.color.color !== undefined) {this.constants.edges.color.color = options.edges.color.color;} - if (options.edges.color.highlight !== undefined) {this.constants.edges.color.highlight = options.edges.color.highlight;} - if (options.edges.color.hover !== undefined) {this.constants.edges.color.hover = options.edges.color.hover;} - } - } +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { - if (!options.edges.fontColor) { - if (options.edges.color !== undefined) { - if (util.isString(options.edges.color)) {this.constants.edges.fontColor = options.edges.color;} - else if (options.edges.color.color !== undefined) {this.constants.edges.fontColor = options.edges.color.color;} - } - } - } + var util = __webpack_require__(1); + var Component = __webpack_require__(22); + var TimeStep = __webpack_require__(25); - if (options.nodes) { - if (options.nodes.color) { - var newColorObj = util.parseColor(options.nodes.color); - this.constants.nodes.color.background = newColorObj.background; - this.constants.nodes.color.border = newColorObj.border; - this.constants.nodes.color.highlight.background = newColorObj.highlight.background; - this.constants.nodes.color.highlight.border = newColorObj.highlight.border; - this.constants.nodes.color.hover.background = newColorObj.hover.background; - this.constants.nodes.color.hover.border = newColorObj.hover.border; - } - } - if (options.groups) { - for (var groupname in options.groups) { - if (options.groups.hasOwnProperty(groupname)) { - var group = options.groups[groupname]; - this.groups.add(groupname, group); - } - } + /** + * 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, + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [], + redundant: { + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [] } + }; + this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; - if (options.tooltip) { - for (prop in options.tooltip) { - if (options.tooltip.hasOwnProperty(prop)) { - this.constants.tooltip[prop] = options.tooltip[prop]; - } - } - if (options.tooltip.color) { - this.constants.tooltip.color = util.parseColor(options.tooltip.color); - } - } - } + this.defaultOptions = { + orientation: 'bottom', // supported: 'top', 'bottom' + // TODO: implement timeaxis orientations 'left' and 'right' + showMinorLabels: true, + showMajorLabels: true + }; + this.options = util.extend({}, this.defaultOptions); - // (Re)loading the mixins that can be enabled or disabled in the options. - // load the force calculation functions, grouped under the physics system. - this._loadPhysicsSystem(); - // load the navigation system. - this._loadNavigationControls(); - // load the data manipulation system - this._loadManipulationSystem(); - // configure the smooth curves - this._configureSmoothCurves(); + this.body = body; + // create the HTML DOM + this._create(); - // bind keys. If disabled, this will not do anything; - this._createKeyBinds(); - this.setSize(this.constants.width, this.constants.height); - this.moving = true; - this.start(); + this.setOptions(options); + } - }; + TimeAxis.prototype = new Component(); /** - * Create the main frame for the Network. - * This function is executed once when a Network object is created. The frame - * contains a canvas, and this canvas contains all objects like the axis and - * nodes. - * @private + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] */ - Network.prototype._create = function () { - // remove all elements from the container element. - while (this.containerElement.hasChildNodes()) { - this.containerElement.removeChild(this.containerElement.firstChild); + TimeAxis.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); } + }; - this.frame = document.createElement('div'); - this.frame.className = 'network-frame'; - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; - - // create the network canvas (HTML canvas element) - this.frame.canvas = document.createElement( 'canvas' ); - this.frame.canvas.style.position = 'relative'; - this.frame.appendChild(this.frame.canvas); - if (!this.frame.canvas.getContext) { - var noCanvas = document.createElement( 'DIV' ); - noCanvas.style.color = 'red'; - noCanvas.style.fontWeight = 'bold' ; - noCanvas.style.padding = '10px'; - noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; - this.frame.canvas.appendChild(noCanvas); - } - - var me = this; - this.drag = {}; - this.pinch = {}; - this.hammer = Hammer(this.frame.canvas, { - prevent_default: true - }); - this.hammer.on('tap', me._onTap.bind(me) ); - this.hammer.on('doubletap', me._onDoubleTap.bind(me) ); - this.hammer.on('hold', me._onHold.bind(me) ); - this.hammer.on('pinch', me._onPinch.bind(me) ); - this.hammer.on('touch', me._onTouch.bind(me) ); - this.hammer.on('dragstart', me._onDragStart.bind(me) ); - this.hammer.on('drag', me._onDrag.bind(me) ); - this.hammer.on('dragend', me._onDragEnd.bind(me) ); - this.hammer.on('release', me._onRelease.bind(me) ); - this.hammer.on('mousewheel',me._onMouseWheel.bind(me) ); - this.hammer.on('DOMMouseScroll',me._onMouseWheel.bind(me) ); // for FF - this.hammer.on('mousemove', me._onMouseMoveTitle.bind(me) ); - - // add the frame to the container element - this.containerElement.appendChild(this.frame); + /** + * 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'; }; - /** - * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin - * @private + * Destroy the TimeAxis */ - Network.prototype._createKeyBinds = function() { - var me = this; - this.mousetrap = mousetrap; - - this.mousetrap.reset(); - - if (this.constants.keyboard.enabled == true) { - this.mousetrap.bind("up", this._moveUp.bind(me) , "keydown"); - this.mousetrap.bind("up", this._yStopMoving.bind(me), "keyup"); - this.mousetrap.bind("down", this._moveDown.bind(me) , "keydown"); - this.mousetrap.bind("down", this._yStopMoving.bind(me), "keyup"); - this.mousetrap.bind("left", this._moveLeft.bind(me) , "keydown"); - this.mousetrap.bind("left", this._xStopMoving.bind(me), "keyup"); - this.mousetrap.bind("right",this._moveRight.bind(me), "keydown"); - this.mousetrap.bind("right",this._xStopMoving.bind(me), "keyup"); - this.mousetrap.bind("=", this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("=", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("-", this._zoomOut.bind(me), "keydown"); - this.mousetrap.bind("-", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("[", this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("[", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("]", this._zoomOut.bind(me), "keydown"); - this.mousetrap.bind("]", this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("pageup",this._zoomIn.bind(me), "keydown"); - this.mousetrap.bind("pageup",this._stopZoom.bind(me), "keyup"); - this.mousetrap.bind("pagedown",this._zoomOut.bind(me),"keydown"); - this.mousetrap.bind("pagedown",this._stopZoom.bind(me), "keyup"); + TimeAxis.prototype.destroy = function() { + // remove from DOM + if (this.dom.foreground.parentNode) { + this.dom.foreground.parentNode.removeChild(this.dom.foreground); } - - if (this.constants.dataManipulation.enabled == true) { - this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); - this.mousetrap.bind("del",this._deleteSelected.bind(me)); + if (this.dom.background.parentNode) { + this.dom.background.parentNode.removeChild(this.dom.background); } - }; - /** - * Get the pointer location from a touch location - * @param {{pageX: Number, pageY: Number}} touch - * @return {{x: Number, y: Number}} pointer - * @private - */ - Network.prototype._getPointer = function (touch) { - return { - x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), - y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) - }; + this.body = null; }; /** - * On start of a touch gesture, store the pointer - * @param event - * @private + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Network.prototype._onTouch = function (event) { - this.drag.pointer = this._getPointer(event.gesture.center); - this.drag.pinched = false; - this.pinch.scale = this._getScale(); - - this._handleTouch(this.drag.pointer); - }; + TimeAxis.prototype.redraw = function () { + var options = this.options, + props = this.props, + foreground = this.dom.foreground, + background = this.dom.background; - /** - * handle drag start event - * @private - */ - Network.prototype._onDragStart = function () { - this._handleDragStart(); - }; + // 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(); - /** - * This function is called by _onDragStart. - * It is separated out because we can then overload it for the datamanipulation system. - * - * @private - */ - Network.prototype._handleDragStart = function() { - var drag = this.drag; - var node = this._getNodeAt(drag.pointer); - // note: drag.pointer is set in _onTouch to get the initial touch location + // TODO: recalculate sizes only needed when parent is resized or options is changed + var orientation = this.options.orientation, + showMinorLabels = this.options.showMinorLabels, + showMajorLabels = this.options.showMajorLabels; - drag.dragging = true; - drag.selection = []; - drag.translation = this._getTranslation(); - drag.nodeId = null; + // 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; - if (node != null) { - drag.nodeId = node.id; - // select the clicked node if not yet selected - if (!node.isSelected()) { - this._selectObject(node,false); - } + 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 - // create an array with the selected nodes and their original location and status - for (var objectId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(objectId)) { - var object = this.selectionObj.nodes[objectId]; - var s = { - id: object.id, - node: object, + // 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); - // store original x, y, xFixed and yFixed, make the node temporarily Fixed - x: object.x, - y: object.y, - xFixed: object.xFixed, - yFixed: object.yFixed - }; + foreground.style.height = this.props.height + 'px'; - object.xFixed = true; - object.yFixed = true; + this._repaintLabels(); - drag.selection.push(s); - } - } + // 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) } - }; - - /** - * handle drag event - * @private - */ - Network.prototype._onDrag = function (event) { - this._handleOnDrag(event) + return this._isResized() || parentChanged; }; - /** - * This function is called by _onDrag. - * It is separated out because we can then overload it for the datamanipulation system. - * + * Repaint major and minor text labels and vertical grid lines * @private */ - Network.prototype._handleOnDrag = function(event) { - if (this.drag.pinched) { - return; - } + TimeAxis.prototype._repaintLabels = function () { + var orientation = this.options.orientation; - var pointer = this._getPointer(event.gesture.center); + // calculate range and step (step such that we have space for 7 characters per label) + var start = util.convert(this.body.range.start, 'Number'), + end = util.convert(this.body.range.end, 'Number'), + minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() + -this.body.util.toTime(0).valueOf(); + var step = new TimeStep(new Date(start), new Date(end), minimumStep); + this.step = step; - var me = this; - var drag = this.drag; - var selection = drag.selection; - if (selection && selection.length && this.constants.dragNodes == true) { - // calculate delta's and new location - var deltaX = pointer.x - drag.pointer.x; - var deltaY = pointer.y - drag.pointer.y; + // 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.majorLines = dom.majorLines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorLines = dom.minorLines; + dom.redundant.minorTexts = dom.minorTexts; + dom.majorLines = []; + dom.majorTexts = []; + dom.minorLines = []; + dom.minorTexts = []; - // update position of all selected nodes - selection.forEach(function (s) { - var node = s.node; + step.first(); + var xFirstMajorLabel = undefined; + var max = 0; + while (step.hasNext() && max < 1000) { + max++; + var cur = step.getCurrent(), + x = this.body.util.toScreen(cur), + isMajor = step.isMajor(); - if (!s.xFixed) { - node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); - } + // TODO: lines must have a width, such that we can create css backgrounds - if (!s.yFixed) { - node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); + if (this.options.showMinorLabels) { + this._repaintMinorText(x, step.getLabelMinor(), orientation); + } + + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; + } + this._repaintMajorText(x, step.getLabelMajor(), orientation); } - }); + this._repaintMajorLine(x, orientation); + } + else { + this._repaintMinorLine(x, orientation); + } + step.next(); + } - // start _animationStep if not yet running - if (!this.moving) { - this.moving = true; - this.start(); + // 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); } } - else { - if (this.constants.dragNetwork == true) { - // move the network - var diffX = pointer.x - this.drag.pointer.x; - var diffY = pointer.y - this.drag.pointer.y; - this._setTranslation( - this.drag.translation.x + diffX, - this.drag.translation.y + diffY - ); - this._redraw(); - // this.moving = true; - // this.start(); + // 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); + } } - } + }); }; /** - * handle drag start event + * Create a minor label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) * @private */ - Network.prototype._onDragEnd = function () { - this.drag.dragging = false; - var selection = this.drag.selection; - if (selection && selection.length) { - selection.forEach(function (s) { - // restore original xFixed and yFixed - s.node.xFixed = s.xFixed; - s.node.yFixed = s.yFixed; - }); - this.moving = true; - this.start(); - } - else { - this._redraw(); + TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { + // 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); + label.className = 'text minor'; + 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.title = title; // TODO: this is a heavy operation }; /** - * handle tap/click event: select/unselect a node + * Create a Major label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) * @private */ - Network.prototype._onTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this.pointerPosition = pointer; - this._handleTap(pointer); + TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); - }; + if (!label) { + // create label + var content = document.createTextNode(text); + label = document.createElement('div'); + label.className = 'text major'; + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.majorTexts.push(label); + label.childNodes[0].nodeValue = text; + //label.title = title; // TODO: this is a heavy operation - /** - * handle doubletap event - * @private - */ - Network.prototype._onDoubleTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleDoubleTap(pointer); + label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px'); + label.style.left = x + 'px'; }; - /** - * handle long tap event: multi select nodes + * Create a minor line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) * @private */ - Network.prototype._onHold = function (event) { - var pointer = this._getPointer(event.gesture.center); - this.pointerPosition = pointer; - this._handleOnHold(pointer); + TimeAxis.prototype._repaintMinorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.minorLines.shift(); + + if (!line) { + // create vertical line + line = document.createElement('div'); + line.className = 'grid vertical minor'; + this.dom.background.appendChild(line); + } + this.dom.minorLines.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'; }; /** - * handle the release of the screen - * + * Create a Major line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) * @private */ - Network.prototype._onRelease = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleOnRelease(pointer); + TimeAxis.prototype._repaintMajorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.majorLines.shift(); + + if (!line) { + // create vertical line + line = document.createElement('DIV'); + line.className = 'grid vertical major'; + this.dom.background.appendChild(line); + } + this.dom.majorLines.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'; }; /** - * Handle pinch event - * @param event + * 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 */ - Network.prototype._onPinch = function (event) { - var pointer = this._getPointer(event.gesture.center); + 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. - this.drag.pinched = true; - if (!('scale' in this.pinch)) { - this.pinch.scale = 1; + // 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; - // TODO: enabled moving while pinching? - var scale = this.pinch.scale * event.gesture.scale; - this._zoom(scale, pointer) + // 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 minor 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; }; /** - * Zoom the network in or out - * @param {Number} scale a number around 1, and between 0.01 and 10 - * @param {{x: Number, y: Number}} pointer Position on screen - * @return {Number} appliedScale scale is limited within the boundaries - * @private + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - Network.prototype._zoom = function(scale, pointer) { - if (this.constants.zoomable == true) { - var scaleOld = this._getScale(); - if (scale < 0.00001) { - scale = 0.00001; - } - if (scale > 10) { - scale = 10; - } + TimeAxis.prototype.snap = function(date) { + return this.step.snap(date); + }; - var preScaleDragPointer = null; - if (this.drag !== undefined) { - if (this.drag.dragging == true) { - preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); - } - } - // + this.frame.canvas.clientHeight / 2 - var translation = this._getTranslation(); + module.exports = TimeAxis; - var scaleFrac = scale / scaleOld; - var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; - var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { - this._setScale(scale); - this._setTranslation(tx, ty); - this.updateClustersDefault(); + var moment = __webpack_require__(2); - if (preScaleDragPointer != null) { - var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); - this.drag.pointer.x = postScaleDragPointer.x; - this.drag.pointer.y = postScaleDragPointer.y; - } + /** + * @constructor TimeStep + * The class TimeStep is an iterator for dates. You provide a start date and an + * end date. The class itself determines the best scale (step size) based on the + * provided start Date, end Date, and minimumStep. + * + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + function TimeStep(start, end, minimumStep) { + // variables + this.current = new Date(); + this._start = new Date(); + this._end = new Date(); - this._redraw(); + this.autoScale = true; + this.scale = TimeStep.SCALE.DAY; + this.step = 1; - if (scaleOld < scale) { - this.emit("zoom", {direction:"+"}); - } - else { - this.emit("zoom", {direction:"-"}); - } + // initialize the range + this.setRange(start, end, minimumStep); + } - return scale; - } + /// enum scale + TimeStep.SCALE = { + MILLISECOND: 1, + SECOND: 2, + MINUTE: 3, + HOUR: 4, + DAY: 5, + WEEKDAY: 6, + MONTH: 7, + YEAR: 8 }; /** - * Event handler for mouse wheel event, used to zoom the timeline - * See http://adomas.org/javascript-mouse-wheel/ - * https://github.com/EightMedia/hammer.js/issues/256 - * @param {MouseEvent} event - * @private + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Date} [start] The start date and time. + * @param {Date} [end] The end date and time. + * @param {int} [minimumStep] Optional. Minimum step size in milliseconds */ - Network.prototype._onMouseWheel = function(event) { - // retrieve delta - var delta = 0; - if (event.wheelDelta) { /* IE/Opera. */ - delta = event.wheelDelta/120; - } else if (event.detail) { /* Mozilla case. */ - // In Mozilla, sign of delta is different than in IE. - // Also, delta is multiple of 3. - delta = -event.detail/3; + TimeStep.prototype.setRange = function(start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; } - // If delta is nonzero, handle it. - // Basically, delta is now positive if wheel was scrolled up, - // and negative, if wheel was scrolled down. - if (delta) { - - // calculate the new scale - var scale = this._getScale(); - var zoom = delta / 10; - if (delta < 0) { - zoom = zoom / (1 - zoom); - } - scale *= (1 + zoom); - - // calculate the pointer location - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); + this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); - // apply the new scale - this._zoom(scale, pointer); + if (this.autoScale) { + this.setMinimumStep(minimumStep); } - - // Prevent default actions caused by mouse wheel. - event.preventDefault(); }; - /** - * Mouse move handler for checking whether the title moves over a node with a title. - * @param {Event} event - * @private + * Set the range iterator to the start date. */ - Network.prototype._onMouseMoveTitle = function (event) { - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + TimeStep.prototype.first = function() { + this.current = new Date(this._start.valueOf()); + this.roundToMinor(); + }; - // check if the previously selected node is still selected - if (this.popupObj) { - this._checkHidePopup(pointer); + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + TimeStep.prototype.roundToMinor = function() { + // round to floor + // IMPORTANT: we have no breaks in this switch! (this is no bug) + //noinspection FallthroughInSwitchStatementJS + switch (this.scale) { + case TimeStep.SCALE.YEAR: + this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); + this.current.setMonth(0); + case TimeStep.SCALE.MONTH: this.current.setDate(1); + case TimeStep.SCALE.DAY: // intentional fall through + case TimeStep.SCALE.WEEKDAY: this.current.setHours(0); + case TimeStep.SCALE.HOUR: this.current.setMinutes(0); + case TimeStep.SCALE.MINUTE: this.current.setSeconds(0); + case TimeStep.SCALE.SECOND: this.current.setMilliseconds(0); + //case TimeStep.SCALE.MILLISECOND: // nothing to do for milliseconds } - // start a timeout that will check if the mouse is positioned above - // an element - var me = this; - var checkShow = function() { - me._checkShowPopup(pointer); - }; - if (this.popupTimer) { - clearInterval(this.popupTimer); // stop any running calculationTimer - } - if (!this.drag.dragging) { - this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); + if (this.step != 1) { + // round down to the first minor value that is a multiple of the current step size + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: this.current.setMilliseconds(this.current.getMilliseconds() - this.current.getMilliseconds() % this.step); break; + case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() - this.current.getSeconds() % this.step); break; + case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() - this.current.getMinutes() % this.step); break; + case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() - this.current.getHours() % this.step); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate((this.current.getDate()-1) - (this.current.getDate()-1) % this.step + 1); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() - this.current.getMonth() % this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() - this.current.getFullYear() % this.step); break; + default: break; + } } + }; + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + TimeStep.prototype.hasNext = function () { + return (this.current.valueOf() <= this._end.valueOf()); + }; - /** - * Adding hover highlights - */ - if (this.constants.hover == true) { - // removing all hover highlights - for (var edgeId in this.hoverObj.edges) { - if (this.hoverObj.edges.hasOwnProperty(edgeId)) { - this.hoverObj.edges[edgeId].hover = false; - delete this.hoverObj.edges[edgeId]; - } - } + /** + * Do the next step + */ + TimeStep.prototype.next = function() { + var prev = this.current.valueOf(); - // adding hover highlights - var obj = this._getNodeAt(pointer); - if (obj == null) { - obj = this._getEdgeAt(pointer); + // Two cases, needed to prevent issues with switching daylight savings + // (end of March and end of October) + if (this.current.getMonth() < 6) { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: + + this.current = new Date(this.current.valueOf() + this.step); break; + case TimeStep.SCALE.SECOND: this.current = new Date(this.current.valueOf() + this.step * 1000); break; + case TimeStep.SCALE.MINUTE: this.current = new Date(this.current.valueOf() + this.step * 1000 * 60); break; + case TimeStep.SCALE.HOUR: + this.current = new Date(this.current.valueOf() + this.step * 1000 * 60 * 60); + // in case of skipping an hour for daylight savings, adjust the hour again (else you get: 0h 5h 9h ... instead of 0h 4h 8h ...) + var h = this.current.getHours(); + this.current.setHours(h - (h % this.step)); + break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; + default: break; } - if (obj != null) { - this._hoverObject(obj); + } + else { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: this.current = new Date(this.current.valueOf() + this.step); break; + case TimeStep.SCALE.SECOND: this.current.setSeconds(this.current.getSeconds() + this.step); break; + case TimeStep.SCALE.MINUTE: this.current.setMinutes(this.current.getMinutes() + this.step); break; + case TimeStep.SCALE.HOUR: this.current.setHours(this.current.getHours() + this.step); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: this.current.setDate(this.current.getDate() + this.step); break; + case TimeStep.SCALE.MONTH: this.current.setMonth(this.current.getMonth() + this.step); break; + case TimeStep.SCALE.YEAR: this.current.setFullYear(this.current.getFullYear() + this.step); break; + default: break; } + } - // removing all node hover highlights except for the selected one. - for (var nodeId in this.hoverObj.nodes) { - if (this.hoverObj.nodes.hasOwnProperty(nodeId)) { - if (obj instanceof Node && obj.id != nodeId || obj instanceof Edge || obj == null) { - this._blurObject(this.hoverObj.nodes[nodeId]); - delete this.hoverObj.nodes[nodeId]; - } - } + if (this.step != 1) { + // round down to the correct major value + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: if(this.current.getMilliseconds() < this.step) this.current.setMilliseconds(0); break; + case TimeStep.SCALE.SECOND: if(this.current.getSeconds() < this.step) this.current.setSeconds(0); break; + case TimeStep.SCALE.MINUTE: if(this.current.getMinutes() < this.step) this.current.setMinutes(0); break; + case TimeStep.SCALE.HOUR: if(this.current.getHours() < this.step) this.current.setHours(0); break; + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: if(this.current.getDate() < this.step+1) this.current.setDate(1); break; + case TimeStep.SCALE.MONTH: if(this.current.getMonth() < this.step) this.current.setMonth(0); break; + case TimeStep.SCALE.YEAR: break; // nothing to do for year + default: break; } - this.redraw(); } - }; - /** - * Check if there is an element on the given position in the network - * (a node or edge). If so, and if this element has a title, - * show a popup window with its title. - * - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkShowPopup = function (pointer) { - var obj = { - left: this._XconvertDOMtoCanvas(pointer.x), - top: this._YconvertDOMtoCanvas(pointer.y), - right: this._XconvertDOMtoCanvas(pointer.x), - bottom: this._YconvertDOMtoCanvas(pointer.y) - }; - - var id; - var lastPopupNode = this.popupObj; - - if (this.popupObj == undefined) { - // search the nodes for overlap, select the top one in case of multiple nodes - var nodes = this.nodes; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - var node = nodes[id]; - if (node.getTitle() !== undefined && node.isOverlappingWith(obj)) { - this.popupObj = node; - break; - } - } - } - } - - if (this.popupObj === undefined) { - // search the edges for overlap - var edges = this.edges; - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - if (edge.connected && (edge.getTitle() !== undefined) && - edge.isOverlappingWith(obj)) { - this.popupObj = edge; - break; - } - } - } - } - - if (this.popupObj) { - // show popup message window - if (this.popupObj != lastPopupNode) { - var me = this; - if (!me.popup) { - me.popup = new Popup(me.frame, me.constants.tooltip); - } - - // adjust a small offset such that the mouse cursor is located in the - // bottom left location of the popup, and you can easily move over the - // popup area - me.popup.setPosition(pointer.x - 3, pointer.y - 3); - me.popup.setText(me.popupObj.getTitle()); - me.popup.show(); - } - } - else { - if (this.popup) { - this.popup.hide(); - } + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = new Date(this._end.valueOf()); } }; /** - * Check if the popup must be hided, which is the case when the mouse is no - * longer hovering on the object - * @param {{x:Number, y:Number}} pointer - * @private + * Get the current datetime + * @return {Date} current The current date */ - Network.prototype._checkHidePopup = function (pointer) { - if (!this.popupObj || !this._getNodeAt(pointer) ) { - this.popupObj = undefined; - if (this.popup) { - this.popup.hide(); - } - } + TimeStep.prototype.getCurrent = function() { + return this.current; }; - /** - * Set a new size for the network - * @param {string} width Width in pixels or percentage (for example '800px' - * or '50%') - * @param {string} height Height in pixels or percentage (for example '400px' - * or '30%') + * Set a custom scale. Autoscaling will be disabled. + * For example setScale(SCALE.MINUTES, 5) will result + * in minor steps of 5 minutes, and major steps of an hour. + * + * @param {TimeStep.SCALE} newScale + * A scale. Choose from SCALE.MILLISECOND, + * SCALE.SECOND, SCALE.MINUTE, SCALE.HOUR, + * SCALE.WEEKDAY, SCALE.DAY, SCALE.MONTH, + * SCALE.YEAR. + * @param {Number} newStep A step size, by default 1. Choose for + * example 1, 2, 5, or 10. */ - Network.prototype.setSize = function(width, height) { - this.frame.style.width = width; - this.frame.style.height = height; - - this.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; - - this.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; + TimeStep.prototype.setScale = function(newScale, newStep) { + this.scale = newScale; - if (this.manipulationDiv !== undefined) { - this.manipulationDiv.style.width = this.frame.canvas.clientWidth + "px"; - } - if (this.navigationDivs !== undefined) { - if (this.navigationDivs['wrapper'] !== undefined) { - this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; - this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; - } + if (newStep > 0) { + this.step = newStep; } - this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); + this.autoScale = false; }; /** - * Set a data set with nodes for the network - * @param {Array | DataSet | DataView} nodes The data containing the nodes. - * @private + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true */ - Network.prototype._setNodes = function(nodes) { - var oldNodesData = this.nodesData; + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; + }; - if (nodes instanceof DataSet || nodes instanceof DataView) { - this.nodesData = nodes; - } - else if (nodes instanceof Array) { - this.nodesData = new DataSet(); - this.nodesData.add(nodes); - } - else if (!nodes) { - this.nodesData = new DataSet(); - } - else { - throw new TypeError('Array or DataSet expected'); - } - if (oldNodesData) { - // unsubscribe from old dataset - util.forEach(this.nodesListeners, function (callback, event) { - oldNodesData.off(event, callback); - }); + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds + */ + TimeStep.prototype.setMinimumStep = function(minimumStep) { + if (minimumStep == undefined) { + return; } - // remove drawn nodes - this.nodes = {}; - - if (this.nodesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.nodesListeners, function (callback, event) { - me.nodesData.on(event, callback); - }); + var stepYear = (1000 * 60 * 60 * 24 * 30 * 12); + var stepMonth = (1000 * 60 * 60 * 24 * 30); + var stepDay = (1000 * 60 * 60 * 24); + var stepHour = (1000 * 60 * 60); + var stepMinute = (1000 * 60); + var stepSecond = (1000); + var stepMillisecond= (1); - // draw all new nodes - var ids = this.nodesData.getIds(); - this._addNodes(ids); - } - this._updateSelection(); + // find the smallest step that is larger than the provided minimumStep + if (stepYear*1000 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1000;} + if (stepYear*500 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 500;} + if (stepYear*100 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 100;} + if (stepYear*50 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 50;} + if (stepYear*10 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 10;} + if (stepYear*5 > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 5;} + if (stepYear > minimumStep) {this.scale = TimeStep.SCALE.YEAR; this.step = 1;} + if (stepMonth*3 > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 3;} + if (stepMonth > minimumStep) {this.scale = TimeStep.SCALE.MONTH; this.step = 1;} + if (stepDay*5 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 5;} + if (stepDay*2 > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 2;} + if (stepDay > minimumStep) {this.scale = TimeStep.SCALE.DAY; this.step = 1;} + if (stepDay/2 > minimumStep) {this.scale = TimeStep.SCALE.WEEKDAY; this.step = 1;} + if (stepHour*4 > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 4;} + if (stepHour > minimumStep) {this.scale = TimeStep.SCALE.HOUR; this.step = 1;} + if (stepMinute*15 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 15;} + if (stepMinute*10 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 10;} + if (stepMinute*5 > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 5;} + if (stepMinute > minimumStep) {this.scale = TimeStep.SCALE.MINUTE; this.step = 1;} + if (stepSecond*15 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 15;} + if (stepSecond*10 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 10;} + if (stepSecond*5 > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 5;} + if (stepSecond > minimumStep) {this.scale = TimeStep.SCALE.SECOND; this.step = 1;} + if (stepMillisecond*200 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 200;} + if (stepMillisecond*100 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 100;} + if (stepMillisecond*50 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 50;} + if (stepMillisecond*10 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 10;} + if (stepMillisecond*5 > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 5;} + if (stepMillisecond > minimumStep) {this.scale = TimeStep.SCALE.MILLISECOND; this.step = 1;} }; /** - * Add nodes - * @param {Number[] | String[]} ids - * @private + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - Network.prototype._addNodes = function(ids) { - var id; - for (var i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - var data = this.nodesData.get(id); - var node = new Node(data, this.images, this.groups, this.constants); - this.nodes[id] = node; // note: this may replace an existing node - if ((node.xFixed == false || node.yFixed == false) && (node.x === null || node.y === null)) { - var radius = 10 * 0.1*ids.length + 10; - var angle = 2 * Math.PI * Math.random(); - if (node.xFixed == false) {node.x = radius * Math.cos(angle);} - if (node.yFixed == false) {node.y = radius * Math.sin(angle);} - } - this.moving = true; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateValueRange(this.nodes); - this.updateLabels(); - }; + TimeStep.prototype.snap = function(date) { + var clone = new Date(date.valueOf()); - /** - * Update existing nodes, or create them when not yet existing - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._updateNodes = function(ids) { - var nodes = this.nodes, - nodesData = this.nodesData; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var node = nodes[id]; - var data = nodesData.get(id); - if (node) { - // update node - node.setProperties(data, this.constants); + if (this.scale == TimeStep.SCALE.YEAR) { + var year = clone.getFullYear() + Math.round(clone.getMonth() / 12); + clone.setFullYear(Math.round(year / this.step) * this.step); + clone.setMonth(0); + clone.setDate(0); + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.MONTH) { + if (clone.getDate() > 15) { + clone.setDate(1); + clone.setMonth(clone.getMonth() + 1); + // important: first set Date to 1, after that change the month. } else { - // create node - node = new Node(properties, this.images, this.groups, this.constants); - nodes[id] = node; + clone.setDate(1); } + + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); } - this.moving = true; - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + else if (this.scale == TimeStep.SCALE.DAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 24) * 24); break; + default: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); } - this._updateNodeIndexList(); - this._reconnectEdges(); - this._updateValueRange(nodes); + else if (this.scale == TimeStep.SCALE.WEEKDAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + default: + clone.setHours(Math.round(clone.getHours() / 6) * 6); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.HOUR) { + switch (this.step) { + case 4: + clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; + default: + clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; + } + clone.setSeconds(0); + clone.setMilliseconds(0); + } else if (this.scale == TimeStep.SCALE.MINUTE) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); + clone.setSeconds(0); + break; + case 5: + clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; + default: + clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; + } + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.SECOND) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); + clone.setMilliseconds(0); + break; + case 5: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; + default: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; + } + } + else if (this.scale == TimeStep.SCALE.MILLISECOND) { + var step = this.step > 5 ? this.step / 2 : 1; + clone.setMilliseconds(Math.round(clone.getMilliseconds() / step) * step); + } + + return clone; }; /** - * Remove existing nodes. If nodes do not exist, the method will just ignore it. - * @param {Number[] | String[]} ids - * @private + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. */ - Network.prototype._removeNodes = function(ids) { - var nodes = this.nodes; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - delete nodes[id]; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + TimeStep.prototype.isMajor = function() { + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: + return (this.current.getMilliseconds() == 0); + case TimeStep.SCALE.SECOND: + return (this.current.getSeconds() == 0); + case TimeStep.SCALE.MINUTE: + return (this.current.getHours() == 0) && (this.current.getMinutes() == 0); + // Note: this is no bug. Major label is equal for both minute and hour scale + case TimeStep.SCALE.HOUR: + return (this.current.getHours() == 0); + case TimeStep.SCALE.WEEKDAY: // intentional fall through + case TimeStep.SCALE.DAY: + return (this.current.getDate() == 1); + case TimeStep.SCALE.MONTH: + return (this.current.getMonth() == 0); + case TimeStep.SCALE.YEAR: + return false; + default: + return false; } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateSelection(); - this._updateValueRange(nodes); }; + /** - * Load edges by reading the data table - * @param {Array | DataSet | DataView} edges The data containing the edges. - * @private - * @private + * Returns formatted text for the minor axislabel, depending on the current + * date and the scale. For example when scale is MINUTE, the current time is + * formatted as "hh:mm". + * @param {Date} [date] custom date. if not provided, current date is taken */ - Network.prototype._setEdges = function(edges) { - var oldEdgesData = this.edgesData; - - if (edges instanceof DataSet || edges instanceof DataView) { - this.edgesData = edges; - } - else if (edges instanceof Array) { - this.edgesData = new DataSet(); - this.edgesData.add(edges); + TimeStep.prototype.getLabelMinor = function(date) { + if (date == undefined) { + date = this.current; } - else if (!edges) { - this.edgesData = new DataSet(); + + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND: return moment(date).format('SSS'); + case TimeStep.SCALE.SECOND: return moment(date).format('s'); + case TimeStep.SCALE.MINUTE: return moment(date).format('HH:mm'); + case TimeStep.SCALE.HOUR: return moment(date).format('HH:mm'); + case TimeStep.SCALE.WEEKDAY: return moment(date).format('ddd D'); + case TimeStep.SCALE.DAY: return moment(date).format('D'); + case TimeStep.SCALE.MONTH: return moment(date).format('MMM'); + case TimeStep.SCALE.YEAR: return moment(date).format('YYYY'); + default: return ''; } - else { - throw new TypeError('Array or DataSet expected'); + }; + + + /** + * Returns formatted text for the major axis label, depending on the current + * date and the scale. For example when scale is MINUTE, the major scale is + * hours, and the hour will be formatted as "hh". + * @param {Date} [date] custom date. if not provided, current date is taken + */ + TimeStep.prototype.getLabelMajor = function(date) { + if (date == undefined) { + date = this.current; } - if (oldEdgesData) { - // unsubscribe from old dataset - util.forEach(this.edgesListeners, function (callback, event) { - oldEdgesData.off(event, callback); - }); + //noinspection FallthroughInSwitchStatementJS + switch (this.scale) { + case TimeStep.SCALE.MILLISECOND:return moment(date).format('HH:mm:ss'); + case TimeStep.SCALE.SECOND: return moment(date).format('D MMMM HH:mm'); + case TimeStep.SCALE.MINUTE: + case TimeStep.SCALE.HOUR: return moment(date).format('ddd D MMMM'); + case TimeStep.SCALE.WEEKDAY: + case TimeStep.SCALE.DAY: return moment(date).format('MMMM YYYY'); + case TimeStep.SCALE.MONTH: return moment(date).format('YYYY'); + case TimeStep.SCALE.YEAR: return ''; + default: return ''; } + }; - // remove drawn edges - this.edges = {}; + module.exports = TimeStep; - if (this.edgesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.edgesListeners, function (callback, event) { - me.edgesData.on(event, callback); - }); - // draw all new nodes - var ids = this.edgesData.getIds(); - this._addEdges(ids); - } +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { - this._reconnectEdges(); - }; + var util = __webpack_require__(1); + var Component = __webpack_require__(22); /** - * Add edges - * @param {Number[] | String[]} ids - * @private + * A current time bar + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * @constructor CurrentTime + * @extends Component */ - Network.prototype._addEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; + function CurrentTime (body, options) { + this.body = body; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; + // default options + this.defaultOptions = { + showCurrentTime: true + }; + this.options = util.extend({}, this.defaultOptions); - var oldEdge = edges[id]; - if (oldEdge) { - oldEdge.disconnect(); - } + this._create(); - var data = edgesData.get(id, {"showInternalIds" : true}); - edges[id] = new Edge(data, this, this.constants); - } + this.setOptions(options); + } - this.moving = true; - this._updateValueRange(edges); - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - }; + CurrentTime.prototype = new Component(); /** - * Update existing edges, or create them when not yet existing - * @param {Number[] | String[]} ids + * Create the HTML DOM for the current time bar * @private */ - Network.prototype._updateEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - - var data = edgesData.get(id); - var edge = edges[id]; - if (edge) { - // update edge - edge.disconnect(); - edge.setProperties(data, this.constants); - edge.connect(); - } - else { - // create edge - edge = new Edge(data, this, this.constants); - this.edges[id] = edge; - } - } + CurrentTime.prototype._create = function() { + var bar = document.createElement('div'); + bar.className = 'currenttime'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.moving = true; - this._updateValueRange(edges); + this.bar = bar; }; /** - * Remove existing edges. Non existing ids will be ignored - * @param {Number[] | String[]} ids - * @private + * Destroy the CurrentTime bar */ - Network.prototype._removeEdges = function (ids) { - var edges = this.edges; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var edge = edges[id]; - if (edge) { - if (edge.via != null) { - delete this.sectors['support']['nodes'][edge.via.id]; - } - edge.disconnect(); - delete edges[id]; - } - } + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing - this.moving = true; - this._updateValueRange(edges); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); + this.body = null; }; /** - * Reconnect all edges - * @private + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] */ - Network.prototype._reconnectEdges = function() { - var id, - nodes = this.nodes, - edges = this.edges; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - nodes[id].edges = []; - } - } - - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.from = null; - edge.to = null; - edge.connect(); - } + CurrentTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCurrentTime'], this.options, options); } }; /** - * Update the values of all object in the given array according to the current - * value range of the objects in the array. - * @param {Object} obj An object containing a set of Edges or Nodes - * The objects must have a method getValue() and - * setValueRange(min, max). - * @private + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Network.prototype._updateValueRange = function(obj) { - var id; - - // determine the range of the objects - var valueMin = undefined; - var valueMax = undefined; - for (id in obj) { - if (obj.hasOwnProperty(id)) { - var value = obj[id].getValue(); - if (value !== undefined) { - valueMin = (valueMin === undefined) ? value : Math.min(value, valueMin); - valueMax = (valueMax === undefined) ? value : Math.max(value, valueMax); + CurrentTime.prototype.redraw = function() { + if (this.options.showCurrentTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); } + parent.appendChild(this.bar); + + this.start(); } - } - // adjust the range of all objects - if (valueMin !== undefined && valueMax !== undefined) { - for (id in obj) { - if (obj.hasOwnProperty(id)) { - obj[id].setValueRange(valueMin, valueMax); - } + var now = new Date(); + var x = this.body.util.toScreen(now); + + this.bar.style.left = x + 'px'; + this.bar.title = 'Current time: ' + now; + } + else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); } + this.stop(); } - }; - /** - * Redraw the network with the current data - * chart will be resized too. - */ - Network.prototype.redraw = function() { - this.setSize(this.constants.width, this.constants.height); - this._redraw(); + return false; }; /** - * Redraw the network with the current data - * @private + * Start auto refreshing the current time bar */ - Network.prototype._redraw = function() { - var ctx = this.frame.canvas.getContext('2d'); - // clear the canvas - var w = this.frame.canvas.width; - var h = this.frame.canvas.height; - ctx.clearRect(0, 0, w, h); - - // set scaling and translation - ctx.save(); - ctx.translate(this.translation.x, this.translation.y); - ctx.scale(this.scale, this.scale); - - this.canvasTopLeft = { - "x": this._XconvertDOMtoCanvas(0), - "y": this._YconvertDOMtoCanvas(0) - }; - this.canvasBottomRight = { - "x": this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth), - "y": this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight) - }; + CurrentTime.prototype.start = function() { + var me = this; + function update () { + me.stop(); - this._doInAllSectors("_drawAllSectorNodes",ctx); - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { - this._doInAllSectors("_drawEdges",ctx); - } + // determine interval to refresh + var scale = me.body.range.conversion(me.body.domProps.center.width).scale; + var interval = 1 / scale / 10; + if (interval < 30) interval = 30; + if (interval > 1000) interval = 1000; - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { - this._doInAllSectors("_drawNodes",ctx,false); - } + me.redraw(); - if (this.controlNodesActive == true) { - this._doInAllSectors("_drawControlNodes",ctx); + // start a timer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); } - // this._doInSupportSector("_drawNodes",ctx,true); - // this._drawTree(ctx,"#F00F0F"); - - // restore original scaling and translation - ctx.restore(); + update(); }; /** - * Set the translation of the network - * @param {Number} offsetX Horizontal offset - * @param {Number} offsetY Vertical offset - * @private + * Stop auto refreshing the current time bar */ - Network.prototype._setTranslation = function(offsetX, offsetY) { - if (this.translation === undefined) { - this.translation = { - x: 0, - y: 0 - }; + CurrentTime.prototype.stop = function() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; } + }; - if (offsetX !== undefined) { - this.translation.x = offsetX; - } - if (offsetY !== undefined) { - this.translation.y = offsetY; - } + module.exports = CurrentTime; - this.emit('viewChanged'); - }; - /** - * Get the translation of the network - * @return {Object} translation An object with parameters x and y, both a number - * @private - */ - Network.prototype._getTranslation = function() { - return { - x: this.translation.x, - y: this.translation.y - }; - }; +/***/ }, +/* 27 */ +/***/ function(module, exports, __webpack_require__) { + + var Hammer = __webpack_require__(18); + var util = __webpack_require__(1); + var Component = __webpack_require__(22); /** - * Scale the network - * @param {Number} scale Scaling factor 1.0 is unscaled - * @private + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCustomTime] + * @constructor CustomTime + * @extends Component */ - Network.prototype._setScale = function(scale) { - this.scale = scale; - }; - /** - * Get the current scale of the network - * @return {Number} scale Scaling factor 1.0 is unscaled - * @private - */ - Network.prototype._getScale = function() { - return this.scale; - }; + function CustomTime (body, options) { + this.body = body; - /** - * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertDOMtoCanvas = function(x) { - return (x - this.translation.x) / this.scale; - }; + // default options + this.defaultOptions = { + showCustomTime: false + }; + this.options = util.extend({}, this.defaultOptions); - /** - * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to - * the X coordinate in DOM-space (coordinate point in browser relative to the container div) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertCanvasToDOM = function(x) { - return x * this.scale + this.translation.x; - }; + this.customTime = new Date(); + this.eventParams = {}; // stores state parameters while dragging the bar + + // create the DOM + this._create(); + + this.setOptions(options); + } + + CustomTime.prototype = new Component(); /** - * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} y - * @returns {number} - * @private + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCustomTime] */ - Network.prototype._YconvertDOMtoCanvas = function(y) { - return (y - this.translation.y) / this.scale; + CustomTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCustomTime'], this.options, options); + } }; /** - * Convert the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to - * the Y coordinate in DOM-space (coordinate point in browser relative to the container div) - * @param {number} y - * @returns {number} + * Create the DOM for the custom time * @private */ - Network.prototype._YconvertCanvasToDOM = function(y) { - return y * this.scale + this.translation.y ; - }; + CustomTime.prototype._create = function() { + var bar = document.createElement('div'); + bar.className = 'customtime'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + this.bar = bar; + var drag = document.createElement('div'); + drag.style.position = 'relative'; + drag.style.top = '0px'; + drag.style.left = '-10px'; + drag.style.height = '100%'; + drag.style.width = '20px'; + bar.appendChild(drag); - /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor - */ - Network.prototype.canvasToDOM = function(pos) { - return {x:this._XconvertCanvasToDOM(pos.x),y:this._YconvertCanvasToDOM(pos.y)}; - } + // attach event listeners + this.hammer = Hammer(bar, { + prevent_default: true + }); + this.hammer.on('dragstart', this._onDragStart.bind(this)); + this.hammer.on('drag', this._onDrag.bind(this)); + this.hammer.on('dragend', this._onDragEnd.bind(this)); + }; /** - * - * @param {object} pos = {x: number, y: number} - * @returns {{x: number, y: number}} - * @constructor + * Destroy the CustomTime bar */ - Network.prototype.DOMtoCanvas = function(pos) { - return {x:this._XconvertDOMtoCanvas(pos.x),y:this._YconvertDOMtoCanvas(pos.y)}; - } + CustomTime.prototype.destroy = function () { + this.options.showCustomTime = false; + this.redraw(); // will remove the bar from the DOM - /** - * Redraw all nodes - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @param {Boolean} [alwaysShow] - * @private - */ - Network.prototype._drawNodes = function(ctx,alwaysShow) { - if (alwaysShow === undefined) { - alwaysShow = false; - } + this.hammer.enable(false); + this.hammer = null; - // first draw the unselected nodes - var nodes = this.nodes; - var selected = []; + this.body = null; + }; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - nodes[id].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight); - if (nodes[id].isSelected()) { - selected.push(id); - } - else { - if (nodes[id].inArea() || alwaysShow) { - nodes[id].draw(ctx); - } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + CustomTime.prototype.redraw = function () { + if (this.options.showCustomTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); } + parent.appendChild(this.bar); } - } - // draw the selected nodes on top - for (var s = 0, sMax = selected.length; s < sMax; s++) { - if (nodes[selected[s]].inArea() || alwaysShow) { - nodes[selected[s]].draw(ctx); + var x = this.body.util.toScreen(this.customTime); + + this.bar.style.left = x + 'px'; + this.bar.title = 'Time: ' + this.customTime; + } + else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); } } + + return false; }; /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private + * Set custom time. + * @param {Date} time */ - Network.prototype._drawEdges = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.setScale(this.scale); - if (edge.connected) { - edges[id].draw(ctx); - } - } - } + CustomTime.prototype.setCustomTime = function(time) { + this.customTime = new Date(time.valueOf()); + this.redraw(); }; /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private + * Retrieve the current custom time. + * @return {Date} customTime */ - Network.prototype._drawControlNodes = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - edges[id]._drawControlNodes(ctx); - } - } + CustomTime.prototype.getCustomTime = function() { + return new Date(this.customTime.valueOf()); }; /** - * Find a stable position for all nodes + * Start moving horizontally + * @param {Event} event * @private */ - Network.prototype._stabilize = function() { - if (this.constants.freezeForStabilization == true) { - this._freezeDefinedNodes(); - } + CustomTime.prototype._onDragStart = function(event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; - // find stable position - var count = 0; - while (this.moving && count < this.constants.stabilizationIterations) { - this._physicsTick(); - count++; - } - this.zoomExtent(false,true); - if (this.constants.freezeForStabilization == true) { - this._restoreFrozenNodes(); - } - this.emit("stabilized",{iterations:count}); + event.stopPropagation(); + event.preventDefault(); }; /** - * When initializing and stabilizing, we can freeze nodes with a predefined position. This greatly speeds up stabilization - * because only the supportnodes for the smoothCurves have to settle. - * + * Perform moving operating. + * @param {Event} event * @private */ - Network.prototype._freezeDefinedNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].x != null && nodes[id].y != null) { - nodes[id].fixedData.x = nodes[id].xFixed; - nodes[id].fixedData.y = nodes[id].yFixed; - nodes[id].xFixed = true; - nodes[id].yFixed = true; - } - } - } - }; + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; - /** - * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. - * - * @private - */ - Network.prototype._restoreFrozenNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].fixedData.x != null) { - nodes[id].xFixed = nodes[id].fixedData.x; - nodes[id].yFixed = nodes[id].fixedData.y; - } - } - } - }; + var deltaX = event.gesture.deltaX, + x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, + time = this.body.util.toTime(x); + this.setCustomTime(time); - /** - * Check if any of the nodes is still moving - * @param {number} vmin the minimum velocity considered as 'moving' - * @return {boolean} true if moving, false if non of the nodes is moving - * @private - */ - Network.prototype._isMoving = function(vmin) { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { - return true; - } - } - return false; - }; + // fire a timechange event + this.body.emitter.emit('timechange', { + time: new Date(this.customTime.valueOf()) + }); + event.stopPropagation(); + event.preventDefault(); + }; /** - * /** - * Perform one discrete step for all nodes - * + * Stop moving operating. + * @param {event} event * @private */ - Network.prototype._discreteStepNodes = function(checkMovement) { - var interval = this.physicsDiscreteStepsize; - var nodes = this.nodes; - var nodeId; - var nodesPresent = false; - - if (this.constants.maxVelocity > 0) { - for (nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - nodes[nodeId].discreteStepLimited(interval, this.constants.maxVelocity); - nodesPresent = true; - } - } - } - else { - for (nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - nodes[nodeId].discreteStep(interval); - nodesPresent = true; - } - } - } - - if (nodesPresent == true && (checkMovement === undefined || checkMovement == true)) { - var vminCorrected = this.constants.minVelocity / Math.max(this.scale,0.05); - if (vminCorrected > 0.5*this.constants.maxVelocity) { - this.moving = true; - } - else { - this.moving = this._isMoving(vminCorrected); - if (this.moving == false) { - this.emit("stabilized",{iterations:null}); - } - this.moving = this.moving || this.configurePhysics; + CustomTime.prototype._onDragEnd = function (event) { + if (!this.eventParams.dragging) return; - } - } - }; + // fire a timechanged event + this.body.emitter.emit('timechanged', { + time: new Date(this.customTime.valueOf()) + }); - /** - * A single simulation step (or "tick") in the physics simulation - * - * @private - */ - Network.prototype._physicsTick = function() { - if (!this.freezeSimulation) { - if (this.moving == true) { - this._doInAllActiveSectors("_initializeForceCalculation"); - this._doInAllActiveSectors("_discreteStepNodes"); - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._doInSupportSector("_discreteStepNodes", false); - } - this._findCenter(this._getRange()) - } - } + event.stopPropagation(); + event.preventDefault(); }; + module.exports = CustomTime; - /** - * This function runs one step of the animation. It calls an x amount of physics ticks and one render tick. - * It reschedules itself at the beginning of the function - * - * @private - */ - Network.prototype._animationStep = function() { - // reset the timer so a new scheduled animation step can be set - this.timer = undefined; - // handle the keyboad movement - this._handleNavigation(); - // this schedules a new animation step - this.start(); +/***/ }, +/* 28 */ +/***/ function(module, exports, __webpack_require__) { - // start the physics simulation - var calculationTime = Date.now(); - var maxSteps = 1; - this._physicsTick(); - var timeRequired = Date.now() - calculationTime; - while (timeRequired < 0.9*(this.renderTimestep - this.renderTime) && maxSteps < this.maxPhysicsTicksPerRender) { - this._physicsTick(); - timeRequired = Date.now() - calculationTime; - maxSteps++; - } - // start the rendering process - var renderTime = Date.now(); - this._redraw(); - this.renderTime = Date.now() - renderTime; + var Hammer = __webpack_require__(18); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var Component = __webpack_require__(22); + var Group = __webpack_require__(29); + var ItemBox = __webpack_require__(33); + var ItemPoint = __webpack_require__(34); + var ItemRange = __webpack_require__(31); - }; - if (typeof window !== 'undefined') { - window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || - window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; - } + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items /** - * Schedule a animation step with the refreshrate interval. + * An ItemSet holds a set of items and ranges which can be displayed in a + * range. The width is determined by the parent of the ItemSet, and the height + * is determined by the size of the items. + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See ItemSet.setOptions for the available options. + * @constructor ItemSet + * @extends Component */ - Network.prototype.start = function() { - if (this.moving == true || this.xIncrement != 0 || this.yIncrement != 0 || this.zoomIncrement != 0) { - if (!this.timer) { - var ua = navigator.userAgent.toLowerCase(); + function ItemSet(body, options) { + this.body = body; - var requiresTimeout = false; - if (ua.indexOf('msie 9.0') != -1) { // IE 9 - requiresTimeout = true; - } - else if (ua.indexOf('safari') != -1) { // safari - if (ua.indexOf('chrome') <= -1) { - requiresTimeout = true; - } - } + this.defaultOptions = { + type: null, // 'box', 'point', 'range' + orientation: 'bottom', // 'top' or 'bottom' + align: 'center', // alignment of box items + stack: true, + groupOrder: null, - if (requiresTimeout == true) { - this.timer = window.setTimeout(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function - } - else{ - this.timer = window.requestAnimationFrame(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function - } - } - } - else { - this._redraw(); - } - }; + selectable: true, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false + }, + onAdd: function (item, callback) { + callback(item); + }, + onUpdate: function (item, callback) { + callback(item); + }, + onMove: function (item, callback) { + callback(item); + }, + onRemove: function (item, callback) { + callback(item); + }, - /** - * Move the network according to the keyboard presses. - * - * @private - */ - Network.prototype._handleNavigation = function() { - if (this.xIncrement != 0 || this.yIncrement != 0) { - var translation = this._getTranslation(); - this._setTranslation(translation.x+this.xIncrement, translation.y+this.yIncrement); - } - if (this.zoomIncrement != 0) { - var center = { - x: this.frame.canvas.clientWidth / 2, - y: this.frame.canvas.clientHeight / 2 - }; - this._zoom(this.scale*(1 + this.zoomIncrement), center); - } - }; + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + }, + padding: 5 + }; + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); - /** - * Freeze the _animationStep - */ - Network.prototype.toggleFreeze = function() { - if (this.freezeSimulation == false) { - this.freezeSimulation = true; - } - else { - this.freezeSimulation = false; - this.start(); - } - }; + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: {start: 'Date', end: 'Date'} + }; + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; - /** - * This function cleans the support nodes if they are not needed and adds them when they are. - * - * @param {boolean} [disableStart] - * @private - */ - Network.prototype._configureSmoothCurves = function(disableStart) { - if (disableStart === undefined) { - disableStart = true; - } - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._createBezierNodes(); - // cleanup unused support nodes - for (var nodeId in this.sectors['support']['nodes']) { - if (this.sectors['support']['nodes'].hasOwnProperty(nodeId)) { - if (this.edges[this.sectors['support']['nodes'][nodeId].parentEdgeId] === undefined) { - delete this.sectors['support']['nodes'][nodeId]; - } - } - } - } - else { - // delete the support nodes - this.sectors['support']['nodes'] = {}; - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - this.edges[edgeId].via = null; - } - } - } - - - this._updateCalculationNodes(); - if (!disableStart) { - this.moving = true; - this.start(); - } - }; - + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - /** - * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but - * are used for the force calculation. - * - * @private - */ - Network.prototype._createBezierNodes = function() { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - var edge = this.edges[edgeId]; - if (edge.via == null) { - var nodeId = "edgeId:".concat(edge.id); - this.sectors['support']['nodes'][nodeId] = new Node( - {id:nodeId, - mass:1, - shape:'circle', - image:"", - internalMultiplier:1 - },{},{},this.constants); - edge.via = this.sectors['support']['nodes'][nodeId]; - edge.via.parentEdgeId = edge.id; - edge.positionBezierNode(); - } - } + // listeners for the DataSet of the items + this.itemListeners = { + 'add': function (event, params, senderId) { + me._onAdd(params.items); + }, + 'update': function (event, params, senderId) { + me._onUpdate(params.items); + }, + 'remove': function (event, params, senderId) { + me._onRemove(params.items); } - } - }; + }; - /** - * load the functions that load the mixins into the prototype. - * - * @private - */ - Network.prototype._initializeMixinLoaders = function () { - for (var mixin in MixinLoader) { - if (MixinLoader.hasOwnProperty(mixin)) { - Network.prototype[mixin] = MixinLoader[mixin]; + // listeners for the DataSet of the groups + this.groupListeners = { + 'add': function (event, params, senderId) { + me._onAddGroups(params.items); + }, + 'update': function (event, params, senderId) { + me._onUpdateGroups(params.items); + }, + 'remove': function (event, params, senderId) { + me._onRemoveGroups(params.items); } - } - }; + }; - /** - * Load the XY positions of the nodes into the dataset. - */ - Network.prototype.storePosition = function() { - var dataArray = []; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - var allowedToMoveX = !this.nodes.xFixed; - var allowedToMoveY = !this.nodes.yFixed; - if (this.nodesData._data[nodeId].x != Math.round(node.x) || this.nodesData._data[nodeId].y != Math.round(node.y)) { - dataArray.push({id:nodeId,x:Math.round(node.x),y:Math.round(node.y),allowedToMoveX:allowedToMoveX,allowedToMoveY:allowedToMoveY}); - } - } - } - this.nodesData.update(dataArray); - }; + this.items = {}; // object with an Item for every data item + this.groups = {}; // Group object for every group + this.groupIds = []; + this.selection = []; // list with the ids of all selected nodes + this.stackDirty = true; // if true, all items will be restacked on next redraw - /** - * Center a node in view. - * - * @param {Number} nodeId - * @param {Number} [zoomLevel] - */ - Network.prototype.focusOnNode = function (nodeId, zoomLevel) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (zoomLevel === undefined) { - zoomLevel = this._getScale(); - } - var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; + this.touchParams = {}; // stores properties while dragging + // create the HTML DOM - var requiredScale = zoomLevel; - this._setScale(requiredScale); + this._create(); - var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); - var translation = this._getTranslation(); + this.setOptions(options); + } - var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, - y:canvasCenter.y - nodePosition.y}; + ItemSet.prototype = new Component(); - this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, - translation.y + requiredScale * distanceFromCenter.y); - this.redraw(); - } - else { - console.log("This nodeId cannot be found.") - } + // available item types will be registered here + ItemSet.types = { + box: ItemBox, + range: ItemRange, + point: ItemPoint }; - module.exports = Network; - - -/***/ }, -/* 33 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var Node = __webpack_require__(36); - /** - * @class Edge - * - * A edge connects two nodes - * @param {Object} properties Object with properties. Must contain - * At least properties from and to. - * Available properties: from (number), - * to (number), label (string, color (string), - * width (number), style (string), - * length (number), title (string) - * @param {Network} network A Network object, used to find and edge to - * nodes. - * @param {Object} constants An object with default values for - * example for the color + * Create the HTML DOM for the ItemSet */ - function Edge (properties, network, networkConstants) { - if (!network) { - throw "No network provided"; - } - var fields = ['edges','physics']; - var constants = util.selectiveBridgeObject(fields,networkConstants); - this.options = constants.edges; - this.physics = constants.physics; - this.options['smoothCurves'] = networkConstants['smoothCurves']; + ItemSet.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'itemset'; + frame['timeline-itemset'] = this; + this.dom.frame = frame; + // create background panel + var background = document.createElement('div'); + background.className = 'background'; + frame.appendChild(background); + this.dom.background = background; - this.network = network; + // create foreground panel + var foreground = document.createElement('div'); + foreground.className = 'foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; - // initialize variables - this.id = undefined; - this.fromId = undefined; - this.toId = undefined; - this.title = undefined; - this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; - this.value = undefined; - this.selected = false; - this.hover = false; + // create axis panel + var axis = document.createElement('div'); + axis.className = 'axis'; + this.dom.axis = axis; - this.from = null; // a node - this.to = null; // a node - this.via = null; // a temp node + // create labelset + var labelSet = document.createElement('div'); + labelSet.className = 'labelset'; + this.dom.labelSet = labelSet; - // we use this to be able to reconnect the edge to a cluster if its node is put into a cluster - // by storing the original information we can revert to the original connection when the cluser is opened. - this.originalFromId = []; - this.originalToId = []; + // create ungrouped Group + this._updateUngrouped(); - this.connected = false; + // attach event listeners + // Note: we bind to the centerContainer for the case where the height + // of the center container is larger than of the ItemSet, so we + // can click in the empty area to create a new item or deselect an item. + this.hammer = Hammer(this.body.dom.centerContainer, { + prevent_default: true + }); - this.widthFixed = false; - this.lengthFixed = false; + // drag items when selected + this.hammer.on('touch', this._onTouch.bind(this)); + this.hammer.on('dragstart', this._onDragStart.bind(this)); + this.hammer.on('drag', this._onDrag.bind(this)); + this.hammer.on('dragend', this._onDragEnd.bind(this)); - this.setProperties(properties); + // single select (or unselect) when tapping an item + this.hammer.on('tap', this._onSelectItem.bind(this)); - this.controlNodesEnabled = false; - this.controlNodes = {from:null, to:null, positions:{}}; - this.connectedNode = null; - } - - /** - * Set or overwrite properties for the edge - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties - */ - Edge.prototype.setProperties = function(properties) { - if (!properties) { - return; - } + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on('hold', this._onMultiSelectItem.bind(this)); - var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', - 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + // add item on doubletap + this.hammer.on('doubletap', this._onAddItem.bind(this)); - if (properties.from !== undefined) {this.fromId = properties.from;} - if (properties.to !== undefined) {this.toId = properties.to;} + // attach to the DOM + this.show(); + }; - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label;} + /** + * Set options for the ItemSet. Existing options will be extended/overwritten. + * @param {Object} [options] The following options are available: + * {String} type + * Default type for the items. Choose from 'box' + * (default), 'point', or 'range'. The default + * Style can be overwritten by individual items. + * {String} align + * Alignment for the items, only applicable for + * ItemBox. Choose 'center' (default), 'left', or + * 'right'. + * {String} orientation + * Orientation of the item set. Choose 'top' or + * 'bottom' (default). + * {Function} groupOrder + * A sorting function for ordering groups + * {Boolean} stack + * If true (deafult), items will be stacked on + * top of each other. + * {Number} margin.axis + * Margin between the axis and the items in pixels. + * Default is 20. + * {Number} margin.item.horizontal + * Horizontal margin between items in pixels. + * Default is 10. + * {Number} margin.item.vertical + * Vertical Margin between items in pixels. + * Default is 10. + * {Number} margin.item + * Margin between items in pixels in both horizontal + * and vertical direction. Default is 10. + * {Number} margin + * Set margin for both axis and items in pixels. + * {Number} padding + * Padding of the contents of an item in pixels. + * Must correspond with the items css. Default is 5. + * {Boolean} selectable + * If true (default), items can be selected. + * {Boolean} editable + * Set all editable options to true or false + * {Boolean} editable.updateTime + * Allow dragging an item to an other moment in time + * {Boolean} editable.updateGroup + * Allow dragging an item to an other group + * {Boolean} editable.add + * Allow creating new items on double tap + * {Boolean} editable.remove + * Allow removing items by clicking the delete button + * top right of a selected item. + * {Function(item: Item, callback: Function)} onAdd + * Callback function triggered when an item is about to be added: + * when the user double taps an empty space in the Timeline. + * {Function(item: Item, callback: Function)} onUpdate + * Callback function fired when an item is about to be updated. + * This function typically has to show a dialog where the user + * change the item. If not implemented, nothing happens. + * {Function(item: Item, callback: Function)} onMove + * Fired when an item has been moved. If not implemented, + * the move action will be accepted. + * {Function(item: Item, callback: Function)} onRemove + * Fired when an item is about to be deleted. + * If not implemented, the item will be always removed. + */ + ItemSet.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + var fields = ['type', 'align', 'orientation', 'padding', 'stack', 'selectable', 'groupOrder']; + util.selectiveExtend(fields, this.options, options); - if (properties.title !== undefined) {this.title = properties.title;} - if (properties.value !== undefined) {this.value = properties.value;} - if (properties.length !== undefined) {this.physics.springLength = properties.length;} + if ('margin' in options) { + if (typeof options.margin === 'number') { + this.options.margin.axis = options.margin; + this.options.margin.item.horizontal = options.margin; + this.options.margin.item.vertical = options.margin; + } + else if (typeof options.margin === 'object') { + util.selectiveExtend(['axis'], this.options.margin, options.margin); + if ('item' in options.margin) { + if (typeof options.margin.item === 'number') { + this.options.margin.item.horizontal = options.margin.item; + this.options.margin.item.vertical = options.margin.item; + } + else if (typeof options.margin.item === 'object') { + util.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item); + } + } + } + } - // scale the arrow - if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + if ('editable' in options) { + if (typeof options.editable === 'boolean') { + this.options.editable.updateTime = options.editable; + this.options.editable.updateGroup = options.editable; + this.options.editable.add = options.editable; + this.options.editable.remove = options.editable; + } + else if (typeof options.editable === 'object') { + util.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove'], this.options.editable, options.editable); + } + } - if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} + // callback functions + var addCallback = (function (name) { + if (name in options) { + var fn = options[name]; + if (!(fn instanceof Function)) { + throw new Error('option ' + name + ' must be a function ' + name + '(item, callback)'); + } + this.options[name] = fn; + } + }).bind(this); + ['onAdd', 'onUpdate', 'onRemove', 'onMove'].forEach(addCallback); - if (properties.color !== undefined) { - this.options.inheritColor = false; - if (util.isString(properties.color)) { - this.options.color.color = properties.color; - this.options.color.highlight = properties.color; - } - else { - if (properties.color.color !== undefined) {this.options.color.color = properties.color.color;} - if (properties.color.highlight !== undefined) {this.options.color.highlight = properties.color.highlight;} - if (properties.color.hover !== undefined) {this.options.color.hover = properties.color.hover;} - } + // force the itemSet to refresh: options like orientation and margins may be changed + this.markDirty(); } + }; - // A node is connected when it has a from and to node. - this.connect(); + /** + * Mark the ItemSet dirty so it will refresh everything with next redraw + */ + ItemSet.prototype.markDirty = function() { + this.groupIds = []; + this.stackDirty = true; + }; - this.widthFixed = this.widthFixed || (properties.width !== undefined); - this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + /** + * Destroy the ItemSet + */ + ItemSet.prototype.destroy = function() { + this.hide(); + this.setItems(null); + this.setGroups(null); - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + this.hammer = null; - // set draw method based on style - switch (this.options.style) { - case 'line': this.draw = this._drawLine; break; - case 'arrow': this.draw = this._drawArrow; break; - case 'arrow-center': this.draw = this._drawArrowCenter; break; - case 'dash-line': this.draw = this._drawDashLine; break; - default: this.draw = this._drawLine; break; - } + this.body = null; + this.conversion = null; }; /** - * Connect an edge to its nodes + * Hide the component from the DOM */ - Edge.prototype.connect = function () { - this.disconnect(); - - this.from = this.network.nodes[this.fromId] || null; - this.to = this.network.nodes[this.toId] || null; - this.connected = (this.from && this.to); + ItemSet.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } - if (this.connected) { - this.from.attachEdge(this); - this.to.attachEdge(this); + // remove the axis with dots + if (this.dom.axis.parentNode) { + this.dom.axis.parentNode.removeChild(this.dom.axis); } - else { - if (this.from) { - this.from.detachEdge(this); - } - if (this.to) { - this.to.detachEdge(this); - } + + // remove the labelset containing all group labels + if (this.dom.labelSet.parentNode) { + this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); } }; /** - * Disconnect an edge from its nodes + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - Edge.prototype.disconnect = function () { - if (this.from) { - this.from.detachEdge(this); - this.from = null; + ItemSet.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); } - if (this.to) { - this.to.detachEdge(this); - this.to = null; + + // show axis with dots + if (!this.dom.axis.parentNode) { + this.body.dom.backgroundVertical.appendChild(this.dom.axis); } - this.connected = false; + // show labelset containing labels + if (!this.dom.labelSet.parentNode) { + this.body.dom.left.appendChild(this.dom.labelSet); + } }; /** - * get the title of this edge. - * @return {string} title The title of the edge, or undefined when no title - * has been set. + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {Array} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. */ - Edge.prototype.getTitle = function() { - return typeof this.title === "function" ? this.title() : this.title; - }; + ItemSet.prototype.setSelection = function(ids) { + var i, ii, id, item; + if (ids) { + if (!Array.isArray(ids)) { + throw new TypeError('Array expected'); + } - /** - * Retrieve the value of the edge. Can be undefined - * @return {Number} value + // unselect currently selected items + for (i = 0, ii = this.selection.length; i < ii; i++) { + id = this.selection[i]; + item = this.items[id]; + if (item) item.unselect(); + } + + // select items + this.selection = []; + for (i = 0, ii = ids.length; i < ii; i++) { + id = ids[i]; + item = this.items[id]; + if (item) { + this.selection.push(id); + item.select(); + } + } + } + }; + + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ - Edge.prototype.getValue = function() { - return this.value; + ItemSet.prototype.getSelection = function() { + return this.selection.concat([]); }; /** - * Adjust the value range of the edge. The edge will adjust it's width - * based on its value. - * @param {Number} min - * @param {Number} max + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - Edge.prototype.setValueRange = function(min, max) { - if (!this.widthFixed && this.value !== undefined) { - var scale = (this.options.widthMax - this.options.widthMin) / (max - min); - this.options.width= (this.value - min) * scale + this.options.widthMin; - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + ItemSet.prototype.getVisibleItems = function() { + var range = this.body.range.getRange(); + var left = this.body.util.toScreen(range.start); + var right = this.body.util.toScreen(range.end); + + var ids = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.visibleItems; + + // filter the "raw" set with visibleItems into a set which is really + // visible by pixels + for (var i = 0; i < rawVisibleItems.length; i++) { + var item = rawVisibleItems[i]; + // TODO: also check whether visible vertically + if ((item.left < right) && (item.left + item.width > left)) { + ids.push(item.id); + } + } + } } + + return ids; }; /** - * Redraw a edge - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Deselect a selected item + * @param {String | Number} id + * @private */ - Edge.prototype.draw = function(ctx) { - throw "Method draw not initialized in edge"; + ItemSet.prototype._deselect = function(id) { + var selection = this.selection; + for (var i = 0, ii = selection.length; i < ii; i++) { + if (selection[i] == id) { // non-strict comparison! + selection.splice(i, 1); + break; + } + } }; /** - * Check if this object is overlapping with the provided object - * @param {Object} obj an object with parameters left, top - * @return {boolean} True if location is located on the edge + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Edge.prototype.isOverlappingWith = function(obj) { - if (this.connected) { - var distMax = 10; - var xFrom = this.from.x; - var yFrom = this.from.y; - var xTo = this.to.x; - var yTo = this.to.y; - var xObj = obj.left; - var yObj = obj.top; + ItemSet.prototype.redraw = function() { + var margin = this.options.margin, + range = this.body.range, + asSize = util.option.asSize, + options = this.options, + orientation = options.orientation, + resized = false, + frame = this.dom.frame, + editable = options.editable.updateTime || options.editable.updateGroup; - var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + // update class name + frame.className = 'itemset' + (editable ? ' editable' : ''); - return (dist < distMax); - } - else { - return false - } - }; + // reorder the groups (if needed) + resized = this._orderGroups() || resized; - Edge.prototype._getColor = function() { - var colorObj = this.options.color; - if (this.options.inheritColor == "to") { - colorObj = { - highlight: this.to.options.color.highlight.border, - hover: this.to.options.color.hover.border, - color: this.to.options.color.border - }; - } - else if (this.options.inheritColor == "from" || this.options.inheritColor == true) { - colorObj = { - highlight: this.from.options.color.highlight.border, - hover: this.from.options.color.hover.border, - color: this.from.options.color.border - }; - } + // check whether zoomed (in that case we need to re-stack everything) + // TODO: would be nicer to get this as a trigger from Range + var visibleInterval = range.end - range.start; + var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.props.width != this.props.lastWidth); + if (zoomed) this.stackDirty = true; + this.lastVisibleInterval = visibleInterval; + this.props.lastWidth = this.props.width; - if (this.selected == true) {return colorObj.highlight;} - else if (this.hover == true) {return colorObj.hover;} - else {return colorObj.color;} - } + // redraw all groups + var restack = this.stackDirty, + firstGroup = this._firstGroup(), + firstMargin = { + item: margin.item, + axis: margin.axis + }, + nonFirstMargin = { + item: margin.item, + axis: margin.item.vertical / 2 + }, + height = 0, + minHeight = margin.axis + margin.item.vertical; + util.forEach(this.groups, function (group) { + var groupMargin = (group == firstGroup) ? firstMargin : nonFirstMargin; + var groupResized = group.redraw(range, groupMargin, restack); + resized = groupResized || resized; + height += group.height; + }); + height = Math.max(height, minHeight); + this.stackDirty = false; + + // update frame height + frame.style.height = asSize(height); + + // calculate actual size and position + this.props.top = frame.offsetTop; + this.props.left = frame.offsetLeft; + this.props.width = frame.offsetWidth; + this.props.height = height; + + // reposition axis + this.dom.axis.style.top = asSize((orientation == 'top') ? + (this.body.domProps.top.height + this.body.domProps.border.top) : + (this.body.domProps.top.height + this.body.domProps.centerContainer.height)); + this.dom.axis.style.left = this.body.domProps.border.left + 'px'; + // check if this component is resized + resized = this._isResized() || resized; + + return resized; + }; /** - * Redraw a edge as a line - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Get the first group, aligned with the axis + * @return {Group | null} firstGroup * @private */ - Edge.prototype._drawLine = function(ctx) { - // set style - ctx.strokeStyle = this._getColor(); - ctx.lineWidth = this._getLineWidth(); + ItemSet.prototype._firstGroup = function() { + var firstGroupIndex = (this.options.orientation == 'top') ? 0 : (this.groupIds.length - 1); + var firstGroupId = this.groupIds[firstGroupIndex]; + var firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED]; - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + return firstGroup || null; + }; - // draw label - var point; - if (this.label) { - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; - } - else { - point = this._pointOnLine(0.5); - } - this._label(ctx, this.label, point.x, point.y); + /** + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. + * @protected + */ + ItemSet.prototype._updateUngrouped = function() { + var ungrouped = this.groups[UNGROUPED]; + + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED]; } } else { - var x, y; - var radius = this.physics.springLength / 4; - var node = this.from; - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width / 2; - y = node.y - radius; - } - else { - x = node.x + radius; - y = node.y - node.height / 2; + // create a group holding all (unfiltered) items + if (!ungrouped) { + var id = null; + var data = null; + ungrouped = new Group(id, data, this); + this.groups[UNGROUPED] = ungrouped; + + for (var itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + ungrouped.add(this.items[itemId]); + } + } + + ungrouped.show(); } - this._circle(ctx, x, y, radius); - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); } }; /** - * Get the line width of the edge. Depends on width and whether one of the - * connected nodes is selected. - * @return {Number} width - * @private + * Get the element for the labelset + * @return {HTMLElement} labelSet */ - Edge.prototype._getLineWidth = function() { - if (this.selected == true) { - return Math.min(this.widthSelected, this.options.widthMax)*this.networkScaleInv; + ItemSet.prototype.getLabelSet = function() { + return this.dom.labelSet; + }; + + /** + * Set items + * @param {vis.DataSet | null} items + */ + ItemSet.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; + + // replace the dataset + if (!items) { + this.itemsData = null; + } + else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; } else { - if (this.hover == true) { - return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; - } - else { - return this.options.width*this.networkScaleInv; - } + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); + + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } + + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); + + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + + // update the group holding all ungrouped items + this._updateUngrouped(); } }; - Edge.prototype._getViaCoordinates = function () { - var xVia = null; - var yVia = null; - var factor = this.options.smoothCurves.roundness; - var type = this.options.smoothCurves.type; + /** + * Get the current items + * @returns {vis.DataSet | null} + */ + ItemSet.prototype.getItems = function() { + return this.itemsData; + }; - var dx = Math.abs(this.from.x - this.to.x); - var dy = Math.abs(this.from.y - this.to.y); - if (type == 'discrete' || type == 'diagonalCross') { - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dy; - yVia = this.from.y - factor * dy; - } - else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dy; - yVia = this.from.y - factor * dy; - } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dy; - yVia = this.from.y + factor * dy; - } - else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dy; - yVia = this.from.y + factor * dy; - } - } - if (type == "discrete") { - xVia = dx < factor * dy ? this.from.x : xVia; - } - } - else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dx; - yVia = this.from.y - factor * dx; - } - else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dx; - yVia = this.from.y - factor * dx; - } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - xVia = this.from.x + factor * dx; - yVia = this.from.y + factor * dx; - } - else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; - } - } - if (type == "discrete") { - yVia = dy < factor * dx ? this.from.y : yVia; + /** + * Set groups + * @param {vis.DataSet} groups + */ + ItemSet.prototype.setGroups = function(groups) { + var me = this, + ids; + + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); + + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } + + // replace the dataset + if (!groups) { + this.groupsData = null; + } + else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } + else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); + + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + + // update the group holding all ungrouped items + this._updateUngrouped(); + + // update the order of all items in each group + this._order(); + + this.body.emitter.emit('change'); + }; + + /** + * Get the current groups + * @returns {vis.DataSet | null} groups + */ + ItemSet.prototype.getGroups = function() { + return this.groupsData; + }; + + /** + * Remove an item by its id + * @param {String | Number} id + */ + ItemSet.prototype.removeItem = function(id) { + var item = this.itemsData.get(id), + dataset = this.itemsData.getDataSet(); + + if (item) { + // confirm deletion + this.options.onRemove(item, function (item) { + if (item) { + // remove by id here, it is possible that an item has no id defined + // itself, so better not delete by the item itself + dataset.remove(id); } - } + }); } - else if (type == "straightCross") { - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { // up - down - xVia = this.from.x; - if (this.from.y < this.to.y) { - yVia = this.to.y - (1-factor) * dy; + }; + + /** + * Handle updated items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onUpdate = function(ids) { + var me = this; + + ids.forEach(function (id) { + var itemData = me.itemsData.get(id, me.itemOptions), + item = me.items[id], + type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); + + var constructor = ItemSet.types[type]; + + if (item) { + // update item + if (!constructor || !(item instanceof constructor)) { + // item type has changed, delete the item and recreate it + me._removeItem(item); + item = null; } else { - yVia = this.to.y + (1-factor) * dy; + me._updateItem(item, itemData); } } - else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { // left - right - if (this.from.x < this.to.x) { - xVia = this.to.x - (1-factor) * dx; + + if (!item) { + // create item + if (constructor) { + item = new constructor(itemData, me.conversion, me.options); + item.id = id; // TODO: not so nice setting id afterwards + me._addItem(item); + } + else if (type == 'rangeoverflow') { + // TODO: deprecated since version 2.1.0 (or 3.0.0?). cleanup some day + throw new TypeError('Item type "rangeoverflow" is deprecated. Use css styling instead: ' + + '.vis.timeline .item.range .content {overflow: visible;}'); } else { - xVia = this.to.x + (1-factor) * dx; + throw new TypeError('Unknown item type "' + type + '"'); } - yVia = this.from.y; - } - } - else if (type == 'horizontal') { - if (this.from.x < this.to.x) { - xVia = this.to.x - (1-factor) * dx; - } - else { - xVia = this.to.x + (1-factor) * dx; } - yVia = this.from.y; - } - else if (type == 'vertical') { - xVia = this.from.x; - if (this.from.y < this.to.y) { - yVia = this.to.y - (1-factor) * dy; - } - else { - yVia = this.to.y + (1-factor) * dy; - } - } - else { // continuous - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - // console.log(1) - xVia = this.from.x + factor * dy; - yVia = this.from.y - factor * dy; - xVia = this.to.x < xVia ? this.to.x : xVia; - } - else if (this.from.x > this.to.x) { - // console.log(2) - xVia = this.from.x - factor * dy; - yVia = this.from.y - factor * dy; - xVia = this.to.x > xVia ? this.to.x :xVia; - } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - // console.log(3) - xVia = this.from.x + factor * dy; - yVia = this.from.y + factor * dy; - xVia = this.to.x < xVia ? this.to.x : xVia; - } - else if (this.from.x > this.to.x) { - // console.log(4, this.from.x, this.to.x) - xVia = this.from.x - factor * dy; - yVia = this.from.y + factor * dy; - xVia = this.to.x > xVia ? this.to.x : xVia; - } - } - } - else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - // console.log(5) - xVia = this.from.x + factor * dx; - yVia = this.from.y - factor * dx; - yVia = this.to.y > yVia ? this.to.y : yVia; - } - else if (this.from.x > this.to.x) { - // console.log(6) - xVia = this.from.x - factor * dx; - yVia = this.from.y - factor * dx; - yVia = this.to.y > yVia ? this.to.y : yVia; - } - } - else if (this.from.y < this.to.y) { - if (this.from.x < this.to.x) { - // console.log(7) - xVia = this.from.x + factor * dx; - yVia = this.from.y + factor * dx; - yVia = this.to.y < yVia ? this.to.y : yVia; - } - else if (this.from.x > this.to.x) { - // console.log(8) - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; - yVia = this.to.y < yVia ? this.to.y : yVia; - } - } - } - } + }); + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + }; - return {x:xVia, y:yVia}; - } + /** + * Handle added items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; /** - * Draw a line between two nodes - * @param {CanvasRenderingContext2D} ctx - * @private + * Handle removed items + * @param {Number[]} ids + * @protected */ - Edge.prototype._line = function (ctx) { - // draw a straight line - ctx.beginPath(); - ctx.moveTo(this.from.x, this.from.y); - if (this.options.smoothCurves.enabled == true) { - if (this.options.smoothCurves.dynamic == false) { - var via = this._getViaCoordinates(); - if (via.x == null) { - ctx.lineTo(this.to.x, this.to.y); - ctx.stroke(); - return null; - } - else { - // this.via.x = via.x; - // this.via.y = via.y; - ctx.quadraticCurveTo(via.x,via.y,this.to.x, this.to.y); - ctx.stroke(); - return via; - } - } - else { - ctx.quadraticCurveTo(this.via.x,this.via.y,this.to.x, this.to.y); - ctx.stroke(); - return this.via; + ItemSet.prototype._onRemove = function(ids) { + var count = 0; + var me = this; + ids.forEach(function (id) { + var item = me.items[id]; + if (item) { + count++; + me._removeItem(item); } - } - else { - ctx.lineTo(this.to.x, this.to.y); - ctx.stroke(); - return null; + }); + + if (count) { + // update order + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); } }; /** - * Draw a line from a node to itself, a circle - * @param {CanvasRenderingContext2D} ctx - * @param {Number} x - * @param {Number} y - * @param {Number} radius + * Update the order of item in all groups * @private */ - Edge.prototype._circle = function (ctx, x, y, radius) { - // draw a circle - ctx.beginPath(); - ctx.arc(x, y, radius, 0, 2 * Math.PI, false); - ctx.stroke(); + ItemSet.prototype._order = function() { + // reorder the items in all groups + // TODO: optimization: only reorder groups affected by the changed items + util.forEach(this.groups, function (group) { + group.order(); + }); }; /** - * Draw label with white background and with the middle at (x, y) - * @param {CanvasRenderingContext2D} ctx - * @param {String} text - * @param {Number} x - * @param {Number} y + * Handle updated groups + * @param {Number[]} ids * @private */ - Edge.prototype._label = function (ctx, text, x, y) { - if (text) { - // TODO: cache the calculated size - ctx.font = ((this.from.selected || this.to.selected) ? "bold " : "") + - this.options.fontSize + "px " + this.options.fontFace; - ctx.fillStyle = this.options.fontFill; - var width = ctx.measureText(text).width; - var height = this.options.fontSize; - var left = x - width / 2; - var top = y - height / 2; - - ctx.fillRect(left, top, width, height); - - // draw text - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = "left"; - ctx.textBaseline = "top"; - ctx.fillText(text, left, top); - } + ItemSet.prototype._onUpdateGroups = function(ids) { + this._onAddGroups(ids); }; /** - * Redraw a edge as a dashed line - * Draw this edge in the given canvas - * @author David Jordan - * @date 2012-08-08 - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Handle changed groups + * @param {Number[]} ids * @private */ - Edge.prototype._drawDashLine = function(ctx) { - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color;} + ItemSet.prototype._onAddGroups = function(ids) { + var me = this; - ctx.lineWidth = this._getLineWidth(); + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; - var via = null; - // only firefox and chrome support this method, else we use the legacy one. - if (ctx.mozDash !== undefined || ctx.setLineDash !== undefined) { - // configure the dash pattern - var pattern = [0]; - if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) { - pattern = [this.options.dash.length,this.options.dash.gap]; + if (!group) { + // check for reserved ids + if (id == UNGROUPED) { + throw new Error('Illegal group id. ' + id + ' is a reserved id.'); + } + + var groupOptions = Object.create(me.options); + util.extend(groupOptions, { + height: null + }); + + group = new Group(id, groupData, me); + me.groups[id] = group; + + // add items with this groupId to the new group + for (var itemId in me.items) { + if (me.items.hasOwnProperty(itemId)) { + var item = me.items[itemId]; + if (item.data.group == id) { + group.add(item); + } + } + } + + group.order(); + group.show(); } else { - pattern = [5,5]; + // update group + group.setData(groupData); } + }); - // set dash settings for chrome or firefox - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash(pattern); - ctx.lineDashOffset = 0; + this.body.emitter.emit('change'); + }; - } else { //Firefox - ctx.mozDash = pattern; - ctx.mozDashOffset = 0; - } + /** + * Handle removed groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onRemoveGroups = function(ids) { + var groups = this.groups; + ids.forEach(function (id) { + var group = groups[id]; - // draw the line - via = this._line(ctx); + if (group) { + group.hide(); + delete groups[id]; + } + }); - // restore the dash settings. - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash([0]); - ctx.lineDashOffset = 0; + this.markDirty(); - } else { //Firefox - ctx.mozDash = [0]; - ctx.mozDashOffset = 0; - } - } - else { // unsupporting smooth lines - // draw dashed line - ctx.beginPath(); - ctx.lineCap = 'round'; - if (this.options.dash.altLength !== undefined) //If an alt dash value has been set add to the array this value - { - ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, - [this.options.dash.length,this.options.dash.gap,this.options.dash.altLength,this.options.dash.gap]); - } - else if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) //If a dash and gap value has been set add to the array this value - { - ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, - [this.options.dash.length,this.options.dash.gap]); - } - else //If all else fails draw a line - { - ctx.moveTo(this.from.x, this.from.y); - ctx.lineTo(this.to.x, this.to.y); - } - ctx.stroke(); - } + this.body.emitter.emit('change'); + }; - // draw label - if (this.label) { - var point; - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; - } - else { - point = this._pointOnLine(0.5); + /** + * Reorder the groups if needed + * @return {boolean} changed + * @private + */ + ItemSet.prototype._orderGroups = function () { + if (this.groupsData) { + // reorder the groups + var groupIds = this.groupsData.getIds({ + order: this.options.groupOrder + }); + + var changed = !util.equalArray(groupIds, this.groupIds); + if (changed) { + // hide all groups, removes them from the DOM + var groups = this.groups; + groupIds.forEach(function (groupId) { + groups[groupId].hide(); + }); + + // show the groups again, attach them to the DOM in correct order + groupIds.forEach(function (groupId) { + groups[groupId].show(); + }); + + this.groupIds = groupIds; } - this._label(ctx, this.label, point.x, point.y); + + return changed; + } + else { + return false; } }; /** - * Get a point on a line - * @param {Number} percentage. Value between 0 (line start) and 1 (line end) - * @return {Object} point + * Add a new item + * @param {Item} item * @private */ - Edge.prototype._pointOnLine = function (percentage) { - return { - x: (1 - percentage) * this.from.x + percentage * this.to.x, - y: (1 - percentage) * this.from.y + percentage * this.to.y - } + ItemSet.prototype._addItem = function(item) { + this.items[item.id] = item; + + // add to group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); }; /** - * Get a point on a circle - * @param {Number} x - * @param {Number} y - * @param {Number} radius - * @param {Number} percentage. Value between 0 (line start) and 1 (line end) - * @return {Object} point + * Update an existing item + * @param {Item} item + * @param {Object} itemData * @private */ - Edge.prototype._pointOnCircle = function (x, y, radius, percentage) { - var angle = (percentage - 3/8) * 2 * Math.PI; - return { - x: x + radius * Math.cos(angle), - y: y - radius * Math.sin(angle) + ItemSet.prototype._updateItem = function(item, itemData) { + var oldGroupId = item.data.group; + + item.data = itemData; + if (item.displayed) { + item.redraw(); + } + + // update group + if (oldGroupId != item.data.group) { + var oldGroup = this.groups[oldGroupId]; + if (oldGroup) oldGroup.remove(item); + + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); } }; /** - * Redraw a edge as a line with an arrow halfway the line - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Delete an item from the ItemSet: remove it from the DOM, from the map + * with items, and from the map with visible items, and from the selection + * @param {Item} item * @private */ - Edge.prototype._drawArrowCenter = function(ctx) { - var point; - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} - ctx.lineWidth = this._getLineWidth(); - - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + ItemSet.prototype._removeItem = function(item) { + // remove from DOM + item.hide(); - var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - // draw an arrow halfway the line - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; - } - else { - point = this._pointOnLine(0.5); - } + // remove from items + delete this.items[item.id]; - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + // remove from selection + var index = this.selection.indexOf(item.id); + if (index != -1) this.selection.splice(index, 1); - // draw label - if (this.label) { - this._label(ctx, this.label, point.x, point.y); - } - } - else { - // draw circle - var x, y; - var radius = 0.25 * Math.max(100,this.physics.springLength); - var node = this.from; - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width * 0.5; - y = node.y - radius; - } - else { - x = node.x + radius; - y = node.y - node.height * 0.5; - } - this._circle(ctx, x, y, radius); + // remove from group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.remove(item); + }; - // draw all arrows - var angle = 0.2 * Math.PI; - var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - point = this._pointOnCircle(x, y, radius, 0.5); - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + /** + * Create an array containing all items being a range (having an end date) + * @param array + * @returns {Array} + * @private + */ + ItemSet.prototype._constructByEndArray = function(array) { + var endArray = []; - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); } } + return endArray; }; - + /** + * Register the clicked item on touch, before dragStart is initiated. + * + * dragStart is initiated from a mousemove event, which can have left the item + * already resulting in an item == null + * + * @param {Event} event + * @private + */ + ItemSet.prototype._onTouch = function (event) { + // store the touched item, used in _onDragStart + this.touchParams.item = ItemSet.itemFromTarget(event); + }; /** - * Redraw a edge as a line with an arrow - * Draw this edge in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Start dragging the selected events + * @param {Event} event * @private */ - Edge.prototype._drawArrow = function(ctx) { - // set style - if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} - else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} - else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} + ItemSet.prototype._onDragStart = function (event) { + if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; + } - ctx.lineWidth = this._getLineWidth(); + var item = this.touchParams.item || null, + me = this, + props; - var angle, length; - //draw a line - if (this.from != this.to) { - angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var dx = (this.to.x - this.from.x); - var dy = (this.to.y - this.from.y); - var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - - var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); - var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; - var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; - var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; - - var via; - if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true ) { - via = this.via; - } - else if (this.options.smoothCurves.enabled == true) { - via = this._getViaCoordinates(); - } + if (item && item.selected) { + var dragLeftItem = event.target.dragLeftItem; + var dragRightItem = event.target.dragRightItem; - if (this.options.smoothCurves.enabled == true && via.x != null) { - angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); - dx = (this.to.x - via.x); - dy = (this.to.y - via.y); - edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - } - var toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + if (dragLeftItem) { + props = { + item: dragLeftItem + }; - var xTo,yTo; - if (this.options.smoothCurves.enabled == true && via.x != null) { - xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; - } - else { - xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } + if (me.options.editable.updateTime) { + props.start = item.data.start.valueOf(); + } + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; + } - ctx.beginPath(); - ctx.moveTo(xFrom,yFrom); - if (this.options.smoothCurves.enabled == true && via.x != null) { - ctx.quadraticCurveTo(via.x,via.y,xTo, yTo); - } - else { - ctx.lineTo(xTo, yTo); + this.touchParams.itemProps = [props]; } - ctx.stroke(); - - // draw arrow at the end of the line - length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - ctx.arrow(xTo, yTo, angle, length); - ctx.fill(); - ctx.stroke(); + else if (dragRightItem) { + props = { + item: dragRightItem + }; - // draw label - if (this.label) { - var point; - if (this.options.smoothCurves.enabled == true && via != null) { - var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); - var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); - point = {x:midpointX, y:midpointY}; + if (me.options.editable.updateTime) { + props.end = item.data.end.valueOf(); } - else { - point = this._pointOnLine(0.5); + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; } - this._label(ctx, this.label, point.x, point.y); - } - } - else { - // draw circle - var node = this.from; - var x, y, arrow; - var radius = 0.25 * Math.max(100,this.physics.springLength); - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width * 0.5; - y = node.y - radius; - arrow = { - x: x, - y: node.y, - angle: 0.9 * Math.PI - }; + + this.touchParams.itemProps = [props]; } else { - x = node.x + radius; - y = node.y - node.height * 0.5; - arrow = { - x: node.x, - y: y, - angle: 0.6 * Math.PI - }; - } - ctx.beginPath(); - // TODO: similarly, for a line without arrows, draw to the border of the nodes instead of the center - ctx.arc(x, y, radius, 0, 2 * Math.PI, false); - ctx.stroke(); + this.touchParams.itemProps = this.getSelection().map(function (id) { + var item = me.items[id]; + var props = { + item: item + }; - // draw all arrows - var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; - ctx.arrow(arrow.x, arrow.y, arrow.angle, length); - ctx.fill(); - ctx.stroke(); + if (me.options.editable.updateTime) { + if ('start' in item.data) props.start = item.data.start.valueOf(); + if ('end' in item.data) props.end = item.data.end.valueOf(); + } + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; + } - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); + return props; + }); } + + event.stopPropagation(); } }; - - /** - * Calculate the distance between a point (x3,y3) and a line segment from - * (x1,y1) to (x2,y2). - * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment - * @param {number} x1 - * @param {number} y1 - * @param {number} x2 - * @param {number} y2 - * @param {number} x3 - * @param {number} y3 + * Drag selected items + * @param {Event} event * @private */ - Edge.prototype._getDistanceToEdge = function (x1,y1, x2,y2, x3,y3) { // x3,y3 is the point - if (this.from != this.to) { - if (this.options.smoothCurves.enabled == true) { - var xVia, yVia; - if (this.options.smoothCurves.enabled == true && this.options.smoothCurves.dynamic == true) { - xVia = this.via.x; - yVia = this.via.y; + ItemSet.prototype._onDrag = function (event) { + if (this.touchParams.itemProps) { + var range = this.body.range, + snap = this.body.util.snap || null, + deltaX = event.gesture.deltaX, + scale = (this.props.width / (range.end - range.start)), + offset = deltaX / scale; + + // move + this.touchParams.itemProps.forEach(function (props) { + if ('start' in props) { + var start = new Date(props.start + offset); + props.item.data.start = snap ? snap(start) : start; } - else { - var via = this._getViaCoordinates(); - xVia = via.x; - yVia = via.y; + + if ('end' in props) { + var end = new Date(props.end + offset); + props.item.data.end = snap ? snap(end) : end; } - var minDistance = 1e9; - var distance; - var i,t,x,y, lastX, lastY; - for (i = 0; i < 10; i++) { - t = 0.1*i; - x = Math.pow(1-t,2)*x1 + (2*t*(1 - t))*xVia + Math.pow(t,2)*x2; - y = Math.pow(1-t,2)*y1 + (2*t*(1 - t))*yVia + Math.pow(t,2)*y2; - if (i > 0) { - distance = this._getDistanceToLine(lastX,lastY,x,y, x3,y3); - minDistance = distance < minDistance ? distance : minDistance; - } - lastX = x; lastY = y; + + if ('group' in props) { + // drag from one group to another + var group = ItemSet.groupFromTarget(event); + _moveToGroup(props.item, group); } - return minDistance - } - else { - return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); - } - } - else { - var x, y, dx, dy; - var radius = this.physics.springLength / 4; - var node = this.from; - if (!node.width) { - node.resize(ctx); - } - if (node.width > node.height) { - x = node.x + node.width / 2; - y = node.y - radius; - } - else { - x = node.x + radius; - y = node.y - node.height / 2; - } - dx = x - x3; - dy = y - y3; - return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); + }); + + // TODO: implement onMoving handler + + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + + event.stopPropagation(); } }; - Edge.prototype._getDistanceToLine = function(x1,y1,x2,y2,x3,y3) { - var px = x2-x1, - py = y2-y1, - something = px*px + py*py, - u = ((x3 - x1) * px + (y3 - y1) * py) / something; + /** + * Move an item to another group + * @param {Item} item + * @param {Group} group + * @private + */ + function _moveToGroup (item, group) { + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + group.add(item); + group.order(); - if (u > 1) { - u = 1; - } - else if (u < 0) { - u = 0; + item.data.group = group.groupId; } - - var x = x1 + u * px, - y = y1 + u * py, - dx = x - x3, - dy = y - y3; - - //# Note: If the actual distance does not matter, - //# if you only want to compare what this function - //# returns to other results of this function, you - //# can just return the squared distance instead - //# (i.e. remove the sqrt) to gain a little performance - - return Math.sqrt(dx*dx + dy*dy); - } + } /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale + * End of dragging selected items + * @param {Event} event + * @private */ - Edge.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - }; - + ItemSet.prototype._onDragEnd = function (event) { + if (this.touchParams.itemProps) { + // prepare a change set for the changed items + var changes = [], + me = this, + dataset = this.itemsData.getDataSet(); - Edge.prototype.select = function() { - this.selected = true; - }; + var itemProps = this.touchParams.itemProps ; + this.touchParams.itemProps = null; + itemProps.forEach(function (props) { + var id = props.item.id, + itemData = me.itemsData.get(id, me.itemOptions); - Edge.prototype.unselect = function() { - this.selected = false; - }; + var changed = false; + if ('start' in props.item.data) { + changed = (props.start != props.item.data.start.valueOf()); + itemData.start = util.convert(props.item.data.start, + dataset._options.type && dataset._options.type.start || 'Date'); + } + if ('end' in props.item.data) { + changed = changed || (props.end != props.item.data.end.valueOf()); + itemData.end = util.convert(props.item.data.end, + dataset._options.type && dataset._options.type.end || 'Date'); + } + if ('group' in props.item.data) { + changed = changed || (props.group != props.item.data.group); + itemData.group = props.item.data.group; + } - Edge.prototype.positionBezierNode = function() { - if (this.via !== null && this.from !== null && this.to !== null) { - this.via.x = 0.5 * (this.from.x + this.to.x); - this.via.y = 0.5 * (this.from.y + this.to.y); - } - }; + // only apply changes when start or end is actually changed + if (changed) { + me.options.onMove(itemData, function (itemData) { + if (itemData) { + // apply changes + itemData[dataset._fieldId] = id; // ensure the item contains its id (can be undefined) + changes.push(itemData); + } + else { + // restore original values + if ('start' in props) props.item.data.start = props.start; + if ('end' in props) props.item.data.end = props.end; + if ('group' in props && props.item.data.group != props.group) { + var group = me.groups[props.group]; + _moveToGroup(props.item, group); + } - /** - * This function draws the control nodes for the manipulator. In order to enable this, only set the this.controlNodesEnabled to true. - * @param ctx - */ - Edge.prototype._drawControlNodes = function(ctx) { - if (this.controlNodesEnabled == true) { - if (this.controlNodes.from === null && this.controlNodes.to === null) { - var nodeIdFrom = "edgeIdFrom:".concat(this.id); - var nodeIdTo = "edgeIdTo:".concat(this.id); - var constants = { - nodes:{group:'', radius:8}, - physics:{damping:0}, - clustering: {maxNodeSizeIncrements: 0 ,nodeScaling: {width:0, height: 0, radius:0}} - }; - this.controlNodes.from = new Node( - {id:nodeIdFrom, - shape:'dot', - color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} - },{},{},constants); - this.controlNodes.to = new Node( - {id:nodeIdTo, - shape:'dot', - color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} - },{},{},constants); - } + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit('change'); + } + }); + } + }); - if (this.controlNodes.from.selected == false && this.controlNodes.to.selected == false) { - this.controlNodes.positions = this.getControlNodePositions(ctx); - this.controlNodes.from.x = this.controlNodes.positions.from.x; - this.controlNodes.from.y = this.controlNodes.positions.from.y; - this.controlNodes.to.x = this.controlNodes.positions.to.x; - this.controlNodes.to.y = this.controlNodes.positions.to.y; + // apply the changes to the data (if there are changes) + if (changes.length) { + dataset.update(changes); } - this.controlNodes.from.draw(ctx); - this.controlNodes.to.draw(ctx); - } - else { - this.controlNodes = {from:null, to:null, positions:{}}; + event.stopPropagation(); } }; /** - * Enable control nodes. + * Handle selecting/deselecting an item when tapping it + * @param {Event} event * @private */ - Edge.prototype._enableControlNodes = function() { - this.controlNodesEnabled = true; - }; + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; - /** - * disable control nodes - * @private - */ - Edge.prototype._disableControlNodes = function() { - this.controlNodesEnabled = false; + var ctrlKey = event.gesture.srcEvent && event.gesture.srcEvent.ctrlKey; + var shiftKey = event.gesture.srcEvent && event.gesture.srcEvent.shiftKey; + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + return; + } + + var oldSelection = this.getSelection(); + + var item = ItemSet.itemFromTarget(event); + var selection = item ? [item.id] : []; + this.setSelection(selection); + + var newSelection = this.getSelection(); + + // emit a select event, + // except when old selection is empty and new selection is still empty + if (newSelection.length > 0 || oldSelection.length > 0) { + this.body.emitter.emit('select', { + items: this.getSelection() + }); + } + + event.stopPropagation(); }; /** - * This checks if one of the control nodes is selected and if so, returns the control node object. Else it returns null. - * @param x - * @param y - * @returns {null} + * Handle creation and updates of an item on double tap + * @param event * @private */ - Edge.prototype._getSelectedControlNode = function(x,y) { - var positions = this.controlNodes.positions; - var fromDistance = Math.sqrt(Math.pow(x - positions.from.x,2) + Math.pow(y - positions.from.y,2)); - var toDistance = Math.sqrt(Math.pow(x - positions.to.x ,2) + Math.pow(y - positions.to.y ,2)); + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; - if (fromDistance < 15) { - this.connectedNode = this.from; - this.from = this.controlNodes.from; - return this.controlNodes.from; - } - else if (toDistance < 15) { - this.connectedNode = this.to; - this.to = this.controlNodes.to; - return this.controlNodes.to; + var me = this, + snap = this.body.util.snap || null, + item = ItemSet.itemFromTarget(event); + + if (item) { + // update item + + // execute async handler to update the item (or cancel it) + var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset + this.options.onUpdate(itemData, function (itemData) { + if (itemData) { + me.itemsData.update(itemData); + } + }); } else { - return null; - } - }; + // add item + var xAbs = util.getAbsoluteLeft(this.dom.frame); + var x = event.gesture.center.pageX - xAbs; + var start = this.body.util.toTime(x); + var newItem = { + start: snap ? snap(start) : start, + content: 'new item' + }; + // when default type is a range, add a default end date to the new item + if (this.options.type === 'range') { + var end = this.body.util.toTime(x + this.props.width / 5); + newItem.end = snap ? snap(end) : end; + } - /** - * this resets the control nodes to their original position. - * @private - */ - Edge.prototype._restoreControlNodes = function() { - if (this.controlNodes.from.selected == true) { - this.from = this.connectedNode; - this.connectedNode = null; - this.controlNodes.from.unselect(); - } - if (this.controlNodes.to.selected == true) { - this.to = this.connectedNode; - this.connectedNode = null; - this.controlNodes.to.unselect(); + newItem[this.itemsData.fieldId] = util.randomUUID(); + + var group = ItemSet.groupFromTarget(event); + if (group) { + newItem.group = group.groupId; + } + + // execute async handler to customize (or cancel) adding an item + this.options.onAdd(newItem, function (item) { + if (item) { + me.itemsData.add(newItem); + // TODO: need to trigger a redraw? + } + }); } }; /** - * this calculates the position of the control nodes on the edges of the parent nodes. - * - * @param ctx - * @returns {{from: {x: number, y: number}, to: {x: *, y: *}}} + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private */ - Edge.prototype.getControlNodePositions = function(ctx) { - var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); - var dx = (this.to.x - this.from.x); - var dy = (this.to.y - this.from.y); - var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); - var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; - var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; - var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; - var via; - if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { - via = this.via; - } - else if (this.options.smoothCurves.enabled == true) { - via = this._getViaCoordinates(); - } + var selection, + item = ItemSet.itemFromTarget(event); - if (this.options.smoothCurves.enabled == true && via.x != null) { - angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); - dx = (this.to.x - via.x); - dy = (this.to.y - via.y); - edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - } - var toBorderDist = this.to.distanceToBorder(ctx, angle); - var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + if (item) { + // multi select items + selection = this.getSelection(); // current selection + var index = selection.indexOf(item.id); + if (index == -1) { + // item is not yet selected -> select it + selection.push(item.id); + } + else { + // item is already selected -> deselect it + selection.splice(index, 1); + } + this.setSelection(selection); - var xTo,yTo; - if (this.options.smoothCurves.enabled == true && via.x != null) { - xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; - } - else { - xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; - yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; - } + this.body.emitter.emit('select', { + items: this.getSelection() + }); - return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; + event.stopPropagation(); + } }; - module.exports = Edge; - -/***/ }, -/* 34 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - - /** - * @class Groups - * This class can store groups and properties specific for groups. - */ - function Groups() { - this.clear(); - this.defaultIndex = 0; - } - - - /** - * default constants for group colors - */ - Groups.DEFAULT = [ - {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue - {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow - {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red - {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green - {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta - {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple - {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange - {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue - {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink - {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint - ]; - - /** - * Clear all groups + * Find an item from an event target: + * searches for the attribute 'timeline-item' in the event target's element tree + * @param {Event} event + * @return {Item | null} item */ - Groups.prototype.clear = function () { - this.groups = {}; - this.groups.length = function() - { - var i = 0; - for ( var p in this ) { - if (this.hasOwnProperty(p)) { - i++; - } + ItemSet.itemFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-item')) { + return target['timeline-item']; } - return i; + target = target.parentNode; } - }; + return null; + }; /** - * get group properties of a groupname. If groupname is not found, a new group - * is added. - * @param {*} groupname Can be a number, string, Date, etc. - * @return {Object} group The created group, containing all group properties + * Find the Group from an event target: + * searches for the attribute 'timeline-group' in the event target's element tree + * @param {Event} event + * @return {Group | null} group */ - Groups.prototype.get = function (groupname) { - var group = this.groups[groupname]; - if (group == undefined) { - // create new group - var index = this.defaultIndex % Groups.DEFAULT.length; - this.defaultIndex++; - group = {}; - group.color = Groups.DEFAULT[index]; - this.groups[groupname] = group; + ItemSet.groupFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-group')) { + return target['timeline-group']; + } + target = target.parentNode; } - return group; + return null; }; /** - * Add a custom group style - * @param {String} groupname - * @param {Object} style An object containing borderColor, - * backgroundColor, etc. - * @return {Object} group The created group object + * Find the ItemSet from an event target: + * searches for the attribute 'timeline-itemset' in the event target's element tree + * @param {Event} event + * @return {ItemSet | null} item */ - Groups.prototype.add = function (groupname, style) { - this.groups[groupname] = style; - if (style.color) { - style.color = util.parseColor(style.color); + ItemSet.itemSetFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-itemset')) { + return target['timeline-itemset']; + } + target = target.parentNode; } - return style; + + return null; }; - module.exports = Groups; + module.exports = ItemSet; /***/ }, -/* 35 */ +/* 29 */ /***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(1); + var stack = __webpack_require__(30); + var ItemRange = __webpack_require__(31); + /** - * @class Images - * This class loads images and keeps them stored. + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet */ - function Images() { - this.images = {}; + function Group (groupId, data, itemSet) { + this.groupId = groupId; - this.callback = undefined; - } + this.itemSet = itemSet; - /** - * Set an onload callback function. This will be called each time an image - * is loaded - * @param {function} callback - */ - Images.prototype.setOnloadCallback = function(callback) { - this.callback = callback; - }; + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; + + this.items = {}; // items filtered by groupId of this group + this.visibleItems = []; // items currently visible in window + this.orderedItems = { // items sorted by start and by end + byStart: [], + byEnd: [] + }; + + this._create(); + + this.setData(data); + } /** - * - * @param {string} url Url of the image - * @return {Image} img The image object + * Create DOM elements for the group + * @private */ - Images.prototype.load = function(url) { - var img = this.images[url]; - if (img == undefined) { - // create the image - var images = this; - img = new Image(); - this.images[url] = img; - img.onload = function() { - if (images.callback) { - images.callback(this); - } - }; - img.src = url; - } + Group.prototype._create = function() { + var label = document.createElement('div'); + label.className = 'vlabel'; + this.dom.label = label; - return img; - }; + var inner = document.createElement('div'); + inner.className = 'inner'; + label.appendChild(inner); + this.dom.inner = inner; - module.exports = Images; + var foreground = document.createElement('div'); + foreground.className = 'group'; + foreground['timeline-group'] = this; + this.dom.foreground = foreground; + this.dom.background = document.createElement('div'); + this.dom.background.className = 'group'; -/***/ }, -/* 36 */ -/***/ function(module, exports, __webpack_require__) { + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'group'; - var util = __webpack_require__(1); + // create a hidden marker to detect when the Timelines container is attached + // to the DOM, or the style of a parent of the Timeline is changed from + // display:none is changed to visible. + this.dom.marker = document.createElement('div'); + this.dom.marker.style.visibility = 'hidden'; + this.dom.marker.innerHTML = '?'; + this.dom.background.appendChild(this.dom.marker); + }; /** - * @class Node - * A node. A node can be connected to other nodes via one or multiple edges. - * @param {object} properties An object containing properties for the node. All - * properties are optional, except for the id. - * {number} id Id of the node. Required - * {string} label Text label for the node - * {number} x Horizontal position of the node - * {number} y Vertical position of the node - * {string} shape Node shape, available: - * "database", "circle", "ellipse", - * "box", "image", "text", "dot", - * "star", "triangle", "triangleDown", - * "square" - * {string} image An image url - * {string} title An title text, can be HTML - * {anytype} group A group name or number - * @param {Network.Images} imagelist A list with images. Only needed - * when the node has an image - * @param {Network.Groups} grouplist A list with groups. Needed for - * retrieving group properties - * @param {Object} constants An object with default values for - * example for the color - * + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className */ - function Node(properties, imagelist, grouplist, networkConstants) { - var constants = util.selectiveBridgeObject(['nodes'],networkConstants); - this.options = constants.nodes; + Group.prototype.setData = function(data) { + // update contents + var content = data && data.content; + if (content instanceof Element) { + this.dom.inner.appendChild(content); + } + else if (content !== undefined && content !== null) { + this.dom.inner.innerHTML = content; + } + else { + this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null + } - this.selected = false; - this.hover = false; + // update title + this.dom.label.title = data && data.title || ''; - this.edges = []; // all edges connected to this node - this.dynamicEdges = []; - this.reroutedEdges = {}; + if (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, 'hidden'); + } + else { + util.removeClassName(this.dom.inner, 'hidden'); + } - this.fontDrawThreshold = 3; + // update className + var className = data && data.className || null; + if (className != this.className) { + if (this.className) { + util.removeClassName(this.dom.label, className); + util.removeClassName(this.dom.foreground, className); + util.removeClassName(this.dom.background, className); + util.removeClassName(this.dom.axis, className); + } + util.addClassName(this.dom.label, className); + util.addClassName(this.dom.foreground, className); + util.addClassName(this.dom.background, className); + util.addClassName(this.dom.axis, className); + } + }; - // set defaults for the properties - this.id = undefined; - this.x = null; - this.y = null; - this.xFixed = false; - this.yFixed = false; - this.horizontalAlignLeft = true; // these are for the navigation controls - this.verticalAlignTop = true; // these are for the navigation controls - this.baseRadiusValue = networkConstants.nodes.radius; - this.radiusFixed = false; - this.level = -1; - this.preassignedLevel = false; + /** + * Get the width of the group label + * @return {number} width + */ + Group.prototype.getLabelWidth = function() { + return this.props.label.width; + }; - this.imagelist = imagelist; - this.grouplist = grouplist; + /** + * Repaint this group + * @param {{start: number, end: number}} range + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @param {boolean} [restack=false] Force restacking of all items + * @return {boolean} Returns true if the group is resized + */ + Group.prototype.redraw = function(range, margin, restack) { + var resized = false; - // physics properties - this.fx = 0.0; // external force x - this.fy = 0.0; // external force y - this.vx = 0.0; // velocity x - this.vy = 0.0; // velocity y - this.damping = networkConstants.physics.damping; // written every time gravity is calculated - this.fixedData = {x:null,y:null}; + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + // force recalculation of the height of the items when the marker height changed + // (due to the Timeline being attached to the DOM or changed from display:none to visible) + var markerHeight = this.dom.marker.clientHeight; + if (markerHeight != this.lastMarkerHeight) { + this.lastMarkerHeight = markerHeight; - this.setProperties(properties, constants); + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); - // creating the variables for clustering - this.resetCluster(); - this.dynamicEdgesLength = 0; - this.clusterSession = 0; - this.clusterSizeWidthFactor = networkConstants.clustering.nodeScaling.width; - this.clusterSizeHeightFactor = networkConstants.clustering.nodeScaling.height; - this.clusterSizeRadiusFactor = networkConstants.clustering.nodeScaling.radius; - this.maxNodeSizeIncrements = networkConstants.clustering.maxNodeSizeIncrements; - this.growthIndicator = 0; + restack = true; + } - // variables to tell the node about the network. - this.networkScaleInv = 1; - this.networkScale = 1; - this.canvasTopLeft = {"x": -300, "y": -300}; - this.canvasBottomRight = {"x": 300, "y": 300}; - this.parentEdgeId = null; - } + // reposition visible items vertically + if (this.itemSet.options.stack) { // TODO: ugly way to access options... + stack.stack(this.visibleItems, margin, restack); + } + else { // no stacking + stack.nostack(this.visibleItems, margin); + } - /** - * (re)setting the clustering variables and objects - */ - Node.prototype.resetCluster = function() { - // clustering variables - this.formationScale = undefined; // this is used to determine when to open the cluster - this.clusterSize = 1; // this signifies the total amount of nodes in this cluster - this.containedNodes = {}; - this.containedEdges = {}; - this.clusterSessions = []; + // recalculate the height of the group + var height; + var visibleItems = this.visibleItems; + if (visibleItems.length) { + var min = visibleItems[0].top; + var max = visibleItems[0].top + visibleItems[0].height; + util.forEach(visibleItems, function (item) { + min = Math.min(min, item.top); + max = Math.max(max, (item.top + item.height)); + }); + if (min > margin.axis) { + // there is an empty gap between the lowest item and the axis + var offset = min - margin.axis; + max -= offset; + util.forEach(visibleItems, function (item) { + item.top -= offset; + }); + } + height = max + margin.item.vertical / 2; + } + else { + height = margin.axis + margin.item.vertical; + } + height = Math.max(height, this.props.label.height); + + // calculate actual size and position + var foreground = this.dom.foreground; + this.top = foreground.offsetTop; + this.left = foreground.offsetLeft; + this.width = foreground.offsetWidth; + resized = util.updateProperty(this, 'height', height) || resized; + + // recalculate size of label + resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized; + resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized; + + // apply new height + this.dom.background.style.height = height + 'px'; + this.dom.foreground.style.height = height + 'px'; + this.dom.label.style.height = height + 'px'; + + // update vertical position of items after they are re-stacked and the height of the group is calculated + for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { + var item = this.visibleItems[i]; + item.repositionY(); + } + + return resized; }; /** - * Attach a edge to the node - * @param {Edge} edge + * Show this group: attach to the DOM */ - Node.prototype.attachEdge = function(edge) { - if (this.edges.indexOf(edge) == -1) { - this.edges.push(edge); + Group.prototype.show = function() { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); } - if (this.dynamicEdges.indexOf(edge) == -1) { - this.dynamicEdges.push(edge); + + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } + + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); } - this.dynamicEdgesLength = this.dynamicEdges.length; }; /** - * Detach a edge from the node - * @param {Edge} edge + * Hide this group: remove from the DOM */ - Node.prototype.detachEdge = function(edge) { - var index = this.edges.indexOf(edge); - if (index != -1) { - this.edges.splice(index, 1); - this.dynamicEdges.splice(index, 1); + Group.prototype.hide = function() { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); } - this.dynamicEdgesLength = this.dynamicEdges.length; - }; + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } - /** - * Set or overwrite properties for the node - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties - */ - Node.prototype.setProperties = function(properties, constants) { - if (!properties) { - return; + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); } - var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', - 'fontSize','fontFace','group','mass' - ]; - util.selectiveDeepExtend(fields, this.options, properties); - - this.originalLabel = undefined; - // basic properties - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label; this.originalLabel = properties.label;} - if (properties.title !== undefined) {this.title = properties.title;} - if (properties.x !== undefined) {this.x = properties.x;} - if (properties.y !== undefined) {this.y = properties.y;} - if (properties.value !== undefined) {this.value = properties.value;} - if (properties.level !== undefined) {this.level = properties.level; this.preassignedLevel = true;} - - // navigation controls properties - if (properties.horizontalAlignLeft !== undefined) {this.horizontalAlignLeft = properties.horizontalAlignLeft;} - if (properties.verticalAlignTop !== undefined) {this.verticalAlignTop = properties.verticalAlignTop;} - if (properties.triggerFunction !== undefined) {this.triggerFunction = properties.triggerFunction;} - - if (this.id === undefined) { - throw "Node must have an id"; - } - - // copy group properties - if (typeof this.options.group === 'number' || (typeof this.options.group === 'string' && this.options.group != '')) { - var groupObj = this.grouplist.get(this.options.group); - for (var prop in groupObj) { - if (groupObj.hasOwnProperty(prop)) { - this.options[prop] = groupObj[prop]; - } - } - } - - - // individual shape properties - if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} - if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} - - if (this.options.image!== undefined && this.options.image!= "") { - if (this.imagelist) { - this.imageObj = this.imagelist.load(this.options.image); - } - else { - throw "No imagelist provided"; - } - } - - this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); - this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); - this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); - - if (this.options.shape == 'image') { - this.options.radiusMin = constants.nodes.widthMin; - this.options.radiusMax = constants.nodes.widthMax; - } + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + }; + /** + * Add an item to the group + * @param {Item} item + */ + Group.prototype.add = function(item) { + this.items[item.id] = item; + item.setParent(this); - // choose draw method depending on the shape - switch (this.options.shape) { - case 'database': this.draw = this._drawDatabase; this.resize = this._resizeDatabase; break; - case 'box': this.draw = this._drawBox; this.resize = this._resizeBox; break; - case 'circle': this.draw = this._drawCircle; this.resize = this._resizeCircle; break; - case 'ellipse': this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; - // TODO: add diamond shape - case 'image': this.draw = this._drawImage; this.resize = this._resizeImage; break; - case 'text': this.draw = this._drawText; this.resize = this._resizeText; break; - case 'dot': this.draw = this._drawDot; this.resize = this._resizeShape; break; - case 'square': this.draw = this._drawSquare; this.resize = this._resizeShape; break; - case 'triangle': this.draw = this._drawTriangle; this.resize = this._resizeShape; break; - case 'triangleDown': this.draw = this._drawTriangleDown; this.resize = this._resizeShape; break; - case 'star': this.draw = this._drawStar; this.resize = this._resizeShape; break; - default: this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; + if (this.visibleItems.indexOf(item) == -1) { + var range = this.itemSet.body.range; // TODO: not nice accessing the range like this + this._checkIfVisible(item, this.visibleItems, range); } - // reset the size of the node, this can be changed - this._reset(); }; /** - * select this node + * Remove an item from the group + * @param {Item} item */ - Node.prototype.select = function() { - this.selected = true; - this._reset(); + Group.prototype.remove = function(item) { + delete this.items[item.id]; + item.setParent(this.itemSet); + + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); + + // TODO: also remove from ordered items? }; /** - * unselect this node + * Remove an item from the corresponding DataSet + * @param {Item} item */ - Node.prototype.unselect = function() { - this.selected = false; - this._reset(); + Group.prototype.removeFromDataSet = function(item) { + this.itemSet.removeItem(item.id); }; - /** - * Reset the calculated size of the node, forces it to recalculate its size + * Reorder the items */ - Node.prototype.clearSizeCache = function() { - this._reset(); + Group.prototype.order = function() { + var array = util.toArray(this.items); + this.orderedItems.byStart = array; + this.orderedItems.byEnd = this._constructByEndArray(array); + + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); }; /** - * Reset the calculated size of the node, forces it to recalculate its size + * Create an array containing all items being a range (having an end date) + * @param {Item[]} array + * @returns {ItemRange[]} * @private */ - Node.prototype._reset = function() { - this.width = undefined; - this.height = undefined; - }; + Group.prototype._constructByEndArray = function(array) { + var endArray = []; - /** - * get the title of this node. - * @return {string} title The title of the node, or undefined when no title - * has been set. - */ - Node.prototype.getTitle = function() { - return typeof this.title === "function" ? this.title() : this.title; + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); + } + } + return endArray; }; /** - * Calculate the distance to the border of the Node - * @param {CanvasRenderingContext2D} ctx - * @param {Number} angle Angle in radians - * @returns {number} distance Distance to the border in pixels + * Update the visible items + * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date + * @param {Item[]} visibleItems The previously visible items. + * @param {{start: number, end: number}} range Visible range + * @return {Item[]} visibleItems The new visible items. + * @private */ - Node.prototype.distanceToBorder = function (ctx, angle) { - var borderWidth = 1; + Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { + var initialPosByStart, + newVisibleItems = [], + i; - if (!this.width) { - this.resize(ctx); + // first check if the items that were in view previously are still in view. + // this handles the case for the ItemRange that is both before and after the current one. + if (visibleItems.length > 0) { + for (i = 0; i < visibleItems.length; i++) { + this._checkIfVisible(visibleItems[i], newVisibleItems, range); + } } - switch (this.options.shape) { - case 'circle': - case 'dot': - return this.options.radius+ borderWidth; - - case 'ellipse': - var a = this.width / 2; - var b = this.height / 2; - var w = (Math.sin(angle) * a); - var h = (Math.cos(angle) * b); - return a * b / Math.sqrt(w * w + h * h); + // If there were no visible items previously, use binarySearch to find a visible ItemPoint or ItemRange (based on startTime) + if (newVisibleItems.length == 0) { + initialPosByStart = util.binarySearch(orderedItems.byStart, range, 'data','start'); + } + else { + initialPosByStart = orderedItems.byStart.indexOf(newVisibleItems[0]); + } - // TODO: implement distanceToBorder for database - // TODO: implement distanceToBorder for triangle - // TODO: implement distanceToBorder for triangleDown + // use visible search to find a visible ItemRange (only based on endTime) + var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); - case 'box': - case 'image': - case 'text': - default: - if (this.width) { - return Math.min( - Math.abs(this.width / 2 / Math.cos(angle)), - Math.abs(this.height / 2 / Math.sin(angle))) + borderWidth; - // TODO: reckon with border radius too in case of box - } - else { - return 0; - } + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByStart != -1) { + for (i = initialPosByStart; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + for (i = initialPosByStart + 1; i < orderedItems.byStart.length; i++) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + } + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByEnd != -1) { + for (i = initialPosByEnd; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + } + for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + } } - // TODO: implement calculation of distance to border for all shapes - }; - /** - * Set forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction - */ - Node.prototype._setForce = function(fx, fy) { - this.fx = fx; - this.fy = fy; + return newVisibleItems; }; + + /** - * Add forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction + * this function checks if an item is invisible. If it is NOT we make it visible + * and add it to the global visible items. If it is, return true. + * + * @param {Item} item + * @param {Item[]} visibleItems + * @param {{start:number, end:number}} range + * @returns {boolean} * @private */ - Node.prototype._addForce = function(fx, fy) { - this.fx += fx; - this.fy += fy; + Group.prototype._checkIfInvisible = function(item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); + item.repositionX(); + if (visibleItems.indexOf(item) == -1) { + visibleItems.push(item); + } + return false; + } + else { + if (item.displayed) item.hide(); + return true; + } }; /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds - */ - Node.prototype.discreteStep = function(interval) { - if (!this.xFixed) { - var dx = this.damping * this.vx; // damping force - var ax = (this.fx - dx) / this.options.mass; // acceleration - this.vx += ax * interval; // velocity - this.x += this.vx * interval; // position + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array} visibleItems + * @param {{start:number, end:number}} range + * @private + */ + Group.prototype._checkIfVisible = function(item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); + // reposition item horizontally + item.repositionX(); + visibleItems.push(item); } - - if (!this.yFixed) { - var dy = this.damping * this.vy; // damping force - var ay = (this.fy - dy) / this.options.mass; // acceleration - this.vy += ay * interval; // velocity - this.y += this.vy * interval; // position + else { + if (item.displayed) item.hide(); } }; + module.exports = Group; - /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds - * @param {number} maxVelocity The speed limit imposed on the velocity - */ - Node.prototype.discreteStepLimited = function(interval, maxVelocity) { - if (!this.xFixed) { - var dx = this.damping * this.vx; // damping force - var ax = (this.fx - dx) / this.options.mass; // acceleration - this.vx += ax * interval; // velocity - this.vx = (Math.abs(this.vx) > maxVelocity) ? ((this.vx > 0) ? maxVelocity : -maxVelocity) : this.vx; - this.x += this.vx * interval; // position - } - else { - this.fx = 0; - } +/***/ }, +/* 30 */ +/***/ function(module, exports, __webpack_require__) { - if (!this.yFixed) { - var dy = this.damping * this.vy; // damping force - var ay = (this.fy - dy) / this.options.mass; // acceleration - this.vy += ay * interval; // velocity - this.vy = (Math.abs(this.vy) > maxVelocity) ? ((this.vy > 0) ? maxVelocity : -maxVelocity) : this.vy; - this.y += this.vy * interval; // position - } - else { - this.fy = 0; - } - }; + // Utility functions for ordering and stacking of items + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors /** - * Check if this node has a fixed x and y position - * @return {boolean} true if fixed, false if not + * Order items by their start data + * @param {Item[]} items */ - Node.prototype.isFixed = function() { - return (this.xFixed && this.yFixed); + exports.orderByStart = function(items) { + items.sort(function (a, b) { + return a.data.start - b.data.start; + }); }; /** - * Check if this node is moving - * @param {number} vmin the minimum velocity considered as "moving" - * @return {boolean} true if moving, false if it has no velocity + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items */ - Node.prototype.isMoving = function(vmin) { - var velocity = Math.sqrt(Math.pow(this.vx,2) + Math.pow(this.vy,2)); - // this.velocity = Math.sqrt(Math.pow(this.vx,2) + Math.pow(this.vy,2)) - return (velocity > vmin); + exports.orderByEnd = function(items) { + items.sort(function (a, b) { + var aTime = ('end' in a.data) ? a.data.end : a.data.start, + bTime = ('end' in b.data) ? b.data.end : b.data.start; + + return aTime - bTime; + }); }; /** - * check if this node is selecte - * @return {boolean} selected True if node is selected, else false + * Adjust vertical positions of the items such that they don't overlap each + * other. + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {boolean} [force=false] + * If true, all items will be repositioned. If false (default), only + * items having a top===null will be re-stacked */ - Node.prototype.isSelected = function() { - return this.selected; + exports.stack = function(items, margin, force) { + var i, iMax; + + if (force) { + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = null; + } + } + + // calculate new, non-overlapping positions + for (i = 0, iMax = items.length; i < iMax; i++) { + var item = items[i]; + if (item.top === null) { + // initialize top position + item.top = margin.axis; + + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + for (var j = 0, jj = items.length; j < jj; j++) { + var other = items[j]; + if (other.top !== null && other !== item && exports.collision(item, other, margin.item)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; + } + } while (collidingItem); + } + } }; /** - * Retrieve the value of the node. Can be undefined - * @return {Number} value + * Adjust vertical positions of the items without stacking them + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. */ - Node.prototype.getValue = function() { - return this.value; + exports.nostack = function(items, margin) { + var i, iMax; + + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = margin.axis; + } }; /** - * Calculate the distance from the nodes location to the given location (x,y) - * @param {Number} x - * @param {Number} y - * @return {Number} value + * Test if the two provided items collide + * The items must have parameters left, width, top, and height. + * @param {Item} a The first item + * @param {Item} b The second item + * @param {{horizontal: number, vertical: number}} margin + * An object containing a horizontal and vertical + * minimum required margin. + * @return {boolean} true if a and b collide, else false */ - Node.prototype.getDistance = function(x, y) { - var dx = this.x - x, - dy = this.y - y; - return Math.sqrt(dx * dx + dy * dy); + exports.collision = function(a, b, margin) { + return ((a.left - margin.horizontal + EPSILON) < (b.left + b.width) && + (a.left + a.width + margin.horizontal - EPSILON) > b.left && + (a.top - margin.vertical + EPSILON) < (b.top + b.height) && + (a.top + a.height + margin.vertical - EPSILON) > b.top); }; +/***/ }, +/* 31 */ +/***/ function(module, exports, __webpack_require__) { + + var Hammer = __webpack_require__(18); + var Item = __webpack_require__(32); + /** - * Adjust the value range of the node. The node will adjust it's radius - * based on its value. - * @param {Number} min - * @param {Number} max + * @constructor ItemRange + * @extends Item + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options */ - Node.prototype.setValueRange = function(min, max) { - if (!this.radiusFixed && this.value !== undefined) { - if (max == min) { - this.options.radius= (this.options.radiusMin + this.options.radiusMax) / 2; + function ItemRange (data, conversion, options) { + this.props = { + content: { + width: 0 } - else { - var scale = (this.options.radiusMax - this.options.radiusMin) / (max - min); - this.options.radius= (this.value - min) * scale + this.options.radiusMin; + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data.id); + } + if (data.end == undefined) { + throw new Error('Property "end" missing in item ' + data.id); } } - this.baseRadiusValue = this.options.radius; - }; - /** - * Draw this node in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx - */ - Node.prototype.draw = function(ctx) { - throw "Draw method not initialized for node"; - }; + Item.call(this, data, conversion, options); + } + + ItemRange.prototype = new Item (null, null, null); + + ItemRange.prototype.baseClassName = 'item range'; /** - * Recalculate the size of this node in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible */ - Node.prototype.resize = function(ctx) { - throw "Resize method not initialized for node"; + ItemRange.prototype.isVisible = function(range) { + // determine visibility + return (this.data.start < range.end) && (this.data.end > range.start); }; /** - * Check if this object is overlapping with the provided object - * @param {Object} obj an object with parameters left, top, right, bottom - * @return {boolean} True if location is located on node + * Repaint the item */ - Node.prototype.isOverlappingWith = function(obj) { - return (this.left < obj.right && - this.left + this.width > obj.left && - this.top < obj.bottom && - this.top + this.height > obj.top); - }; + ItemRange.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - Node.prototype._resizeImage = function (ctx) { - // TODO: pre calculate the image size + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() - if (!this.width || !this.height) { // undefined or 0 - var width, height; - if (this.value) { - this.options.radius= this.baseRadiusValue; - var scale = this.imageObj.height / this.imageObj.width; - if (scale !== undefined) { - width = this.options.radius|| this.imageObj.width; - height = this.options.radius* scale || this.imageObj.height; - } - else { - width = 0; - height = 0; - } + // contents box + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); + + // attach this item as attribute + dom.box['timeline-item'] = this; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw time axis: parent has no foreground container element'); + } + foreground.appendChild(dom.box); + } + this.displayed = true; + + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; } else { - width = this.imageObj.width; - height = this.imageObj.height; + throw new Error('Property "content" missing in item ' + this.data.id); } - this.width = width; - this.height = height; - this.growthIndicator = 0; - if (this.width > 0 && this.height > 0) { - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - width; - } + this.dirty = true; } - }; + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; + } - Node.prototype._drawImage = function (ctx) { - this._resizeImage(ctx); + // update class + var className = (this.data.className ? (' ' + this.data.className) : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.box.className = this.baseClassName + className; - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + this.dirty = true; + } - var yLabel; - if (this.imageObj.width != 0 ) { - // draw the shade - if (this.clusterSize > 1) { - var lineWidth = ((this.clusterSize > 1) ? 10 : 0.0); - lineWidth *= this.networkScaleInv; - lineWidth = Math.min(0.2 * this.width,lineWidth); + // recalculate size + if (this.dirty) { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; - ctx.globalAlpha = 0.5; - ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); - } + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; - // draw the image - ctx.globalAlpha = 1.0; - ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); - yLabel = this.y + this.height / 2; - } - else { - // image still loading... just draw the label for now - yLabel = this.y; + this.dirty = false; } - this._label(ctx, this.label, this.x, yLabel, undefined, "top"); + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); }; - - Node.prototype._resizeBox = function (ctx) { - if (!this.width) { - var margin = 5; - var textSize = this.getTextSize(ctx); - this.width = textSize.width + 2 * margin; - this.height = textSize.height + 2 * margin; - - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; - this.growthIndicator = this.width - (textSize.width + 2 * margin); - // this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; - + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + ItemRange.prototype.show = function() { + if (!this.displayed) { + this.redraw(); } }; - Node.prototype._drawBox = function (ctx) { - this._resizeBox(ctx); + /** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + ItemRange.prototype.hide = function() { + if (this.displayed) { + var box = this.dom.box; - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + if (box.parentNode) { + box.parentNode.removeChild(box); + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + this.top = null; + this.left = null; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + this.displayed = false; + } + }; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + /** + * Reposition the item horizontally + * @Override + */ + ItemRange.prototype.repositionX = function() { + var props = this.props, + parentWidth = this.parent.width, + start = this.conversion.toScreen(this.data.start), + end = this.conversion.toScreen(this.data.end), + padding = this.options.padding, + contentLeft; - ctx.roundRect(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth, this.options.radius); - ctx.stroke(); + // limit the width of the this, as browsers cannot draw very wide divs + if (start < -parentWidth) { + start = -parentWidth; } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + if (end > 2 * parentWidth) { + end = 2 * parentWidth; + } + var boxWidth = Math.max(end - start, 1); - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; + if (this.overflow) { + // when range exceeds left of the window, position the contents at the left of the visible area + contentLeft = Math.max(-start, 0); - ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); - ctx.fill(); - ctx.stroke(); + this.left = start; + this.width = boxWidth + this.props.content.width; + // Note: The calculation of width is an optimistic calculation, giving + // a width which will not change when moving the Timeline + // So no restacking needed, which is nicer for the eye; + } + else { // no overflow + // when range exceeds left of the window, position the contents at the left of the visible area + if (start < 0) { + contentLeft = Math.min(-start, + (end - start - props.content.width - 2 * padding)); + // TODO: remove the need for options.padding. it's terrible. + } + else { + contentLeft = 0; + } - this._label(ctx, this.label, this.x, this.y); - }; + this.left = start; + this.width = boxWidth; + } + this.dom.box.style.left = this.left + 'px'; + this.dom.box.style.width = boxWidth + 'px'; + this.dom.content.style.left = contentLeft + 'px'; + }; - Node.prototype._resizeDatabase = function (ctx) { - if (!this.width) { - var margin = 5; - var textSize = this.getTextSize(ctx); - var size = textSize.width + 2 * margin; - this.width = size; - this.height = size; + /** + * Reposition the item vertically + * @Override + */ + ItemRange.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box; - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - size; + if (orientation == 'top') { + box.style.top = this.top + 'px'; + } + else { + box.style.top = (this.parent.height - this.top - this.height) + 'px'; } }; - Node.prototype._drawDatabase = function (ctx) { - this._resizeDatabase(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + /** + * Repaint a drag area on the left side of the range when the range is selected + * @protected + */ + ItemRange.prototype._repaintDragLeft = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { + // create and show drag area + var dragLeft = document.createElement('div'); + dragLeft.className = 'drag-left'; + dragLeft.dragLeftItem = this; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + // TODO: this should be redundant? + Hammer(dragLeft, { + preventDefault: true + }).on('drag', function () { + //console.log('drag left') + }); - ctx.database(this.x - this.width/2 - 2*ctx.lineWidth, this.y - this.height*0.5 - 2*ctx.lineWidth, this.width + 4*ctx.lineWidth, this.height + 4*ctx.lineWidth); - ctx.stroke(); + this.dom.box.appendChild(dragLeft); + this.dom.dragLeft = dragLeft; + } + else if (!this.selected && this.dom.dragLeft) { + // delete drag area + if (this.dom.dragLeft.parentNode) { + this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft); + } + this.dom.dragLeft = null; } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx.database(this.x - this.width/2, this.y - this.height*0.5, this.width, this.height); - ctx.fill(); - ctx.stroke(); - - this._label(ctx, this.label, this.x, this.y); }; + /** + * Repaint a drag area on the right side of the range when the range is selected + * @protected + */ + ItemRange.prototype._repaintDragRight = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { + // create and show drag area + var dragRight = document.createElement('div'); + dragRight.className = 'drag-right'; + dragRight.dragRightItem = this; - Node.prototype._resizeCircle = function (ctx) { - if (!this.width) { - var margin = 5; - var textSize = this.getTextSize(ctx); - var diameter = Math.max(textSize.width, textSize.height) + 2 * margin; - this.options.radius = diameter / 2; - - this.width = diameter; - this.height = diameter; + // TODO: this should be redundant? + Hammer(dragRight, { + preventDefault: true + }).on('drag', function () { + //console.log('drag right') + }); - // scaling used for clustering - // this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; - // this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; - this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; - this.growthIndicator = this.options.radius- 0.5*diameter; + this.dom.box.appendChild(dragRight); + this.dom.dragRight = dragRight; + } + else if (!this.selected && this.dom.dragRight) { + // delete drag area + if (this.dom.dragRight.parentNode) { + this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); + } + this.dom.dragRight = null; } }; - Node.prototype._drawCircle = function (ctx) { - this._resizeCircle(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + module.exports = ItemRange; - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; +/***/ }, +/* 32 */ +/***/ function(module, exports, __webpack_require__) { - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + var Hammer = __webpack_require__(18); - ctx.circle(this.x, this.y, this.options.radius+2*ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + /** + * @constructor Item + * @param {Object} data Object containing (optional) parameters type, + * start, end, content, group, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} options Configuration options + * // TODO: describe available options + */ + function Item (data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx.circle(this.x, this.y, this.options.radius); - ctx.fill(); - ctx.stroke(); + this.selected = false; + this.displayed = false; + this.dirty = true; - this._label(ctx, this.label, this.x, this.y); + this.top = null; + this.left = null; + this.width = null; + this.height = null; + } + + /** + * Select current item + */ + Item.prototype.select = function() { + this.selected = true; + if (this.displayed) this.redraw(); }; - Node.prototype._resizeEllipse = function (ctx) { - if (!this.width) { - var textSize = this.getTextSize(ctx); + /** + * Unselect current item + */ + Item.prototype.unselect = function() { + this.selected = false; + if (this.displayed) this.redraw(); + }; - this.width = textSize.width * 1.5; - this.height = textSize.height * 2; - if (this.width < this.height) { - this.width = this.height; + /** + * Set a parent for the item + * @param {ItemSet | Group} parent + */ + Item.prototype.setParent = function(parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + if (this.parent) { + this.show(); } - var defaultSize = this.width; - - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - defaultSize; } - }; - - Node.prototype._drawEllipse = function (ctx) { - this._resizeEllipse(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; - - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - - ctx.ellipse(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth); - ctx.stroke(); + else { + this.parent = parent; } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - - ctx.ellipse(this.left, this.top, this.width, this.height); - ctx.fill(); - ctx.stroke(); - this._label(ctx, this.label, this.x, this.y); }; - Node.prototype._drawDot = function (ctx) { - this._drawShape(ctx, 'circle'); + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + Item.prototype.isVisible = function(range) { + // Should be implemented by Item implementations + return false; }; - Node.prototype._drawTriangle = function (ctx) { - this._drawShape(ctx, 'triangle'); + /** + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed + */ + Item.prototype.show = function() { + return false; }; - Node.prototype._drawTriangleDown = function (ctx) { - this._drawShape(ctx, 'triangleDown'); + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + Item.prototype.hide = function() { + return false; }; - Node.prototype._drawSquare = function (ctx) { - this._drawShape(ctx, 'square'); + /** + * Repaint the item + */ + Item.prototype.redraw = function() { + // should be implemented by the item }; - Node.prototype._drawStar = function (ctx) { - this._drawShape(ctx, 'star'); + /** + * Reposition the Item horizontally + */ + Item.prototype.repositionX = function() { + // should be implemented by the item }; - Node.prototype._resizeShape = function (ctx) { - if (!this.width) { - this.options.radius= this.baseRadiusValue; - var size = 2 * this.options.radius; - this.width = size; - this.height = size; - - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - size; - } + /** + * Reposition the Item vertically + */ + Item.prototype.repositionY = function() { + // should be implemented by the item }; - Node.prototype._drawShape = function (ctx, shape) { - this._resizeShape(ctx); - - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * Repaint a delete button on the top right of the item when the item is selected + * @param {HTMLElement} anchor + * @protected + */ + Item.prototype._repaintDeleteButton = function (anchor) { + if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { + // create and show button + var me = this; - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var radiusMultiplier = 2; + var deleteButton = document.createElement('div'); + deleteButton.className = 'delete'; + deleteButton.title = 'Delete this item'; - // choose draw method depending on the shape - switch (shape) { - case 'dot': radiusMultiplier = 2; break; - case 'square': radiusMultiplier = 2; break; - case 'triangle': radiusMultiplier = 3; break; - case 'triangleDown': radiusMultiplier = 3; break; - case 'star': radiusMultiplier = 4; break; + Hammer(deleteButton, { + preventDefault: true + }).on('tap', function (event) { + me.parent.removeFromDataSet(me); + event.stopPropagation(); + }); + + anchor.appendChild(deleteButton); + this.dom.deleteButton = deleteButton; + } + else if (!this.selected && this.dom.deleteButton) { + // remove button + if (this.dom.deleteButton.parentNode) { + this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton); + } + this.dom.deleteButton = null; } + }; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + module.exports = Item; - ctx[shape](this.x, this.y, this.options.radius+ radiusMultiplier * ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - ctx[shape](this.x, this.y, this.options.radius); - ctx.fill(); - ctx.stroke(); +/***/ }, +/* 33 */ +/***/ function(module, exports, __webpack_require__) { - if (this.label) { - this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); - } - }; + var Item = __webpack_require__(32); - Node.prototype._resizeText = function (ctx) { - if (!this.width) { - var margin = 5; - var textSize = this.getTextSize(ctx); - this.width = textSize.width + 2 * margin; - this.height = textSize.height + 2 * margin; + /** + * @constructor ItemBox + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function ItemBox (data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 + } + }; - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - (textSize.width + 2 * margin); + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } } - }; - Node.prototype._drawText = function (ctx) { - this._resizeText(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + Item.call(this, data, conversion, options); + } - this._label(ctx, this.label, this.x, this.y); + ItemBox.prototype = new Item (null, null, null); + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + ItemBox.prototype.isVisible = function(range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); }; + /** + * Repaint the item + */ + ItemBox.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { - if (text && Number(this.options.fontSize) * this.networkScale > this.fontDrawThreshold) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = align || "center"; - ctx.textBaseline = baseline || "middle"; + // create main box + dom.box = document.createElement('DIV'); - var lines = text.split('\n'); - var lineCount = lines.length; - var fontSize = (Number(this.options.fontSize) + 4); - var yLine = y + (1 - lineCount) / 2 * fontSize; - if (labelUnderNode == true) { - yLine = y + (1 - lineCount) / (2 * fontSize); - } + // contents box (inside the background box). used for making margins + dom.content = document.createElement('DIV'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - for (var i = 0; i < lineCount; i++) { - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; - } - } - }; + // line to axis + dom.line = document.createElement('DIV'); + dom.line.className = 'line'; + // dot on axis + dom.dot = document.createElement('DIV'); + dom.dot.className = 'dot'; - Node.prototype.getTextSize = function(ctx) { - if (this.label !== undefined) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + // attach this item as attribute + dom.box['timeline-item'] = this; + } - var lines = this.label.split('\n'), - height = (Number(this.options.fontSize) + 4) * lines.length, - width = 0; + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); + foreground.appendChild(dom.box); + } + if (!dom.line.parentNode) { + var background = this.parent.dom.background; + if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); + background.appendChild(dom.line); + } + if (!dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); + axis.appendChild(dom.dot); + } + this.displayed = true; - for (var i = 0, iMax = lines.length; i < iMax; i++) { - width = Math.max(width, ctx.measureText(lines[i]).width); + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; + } + else { + throw new Error('Property "content" missing in item ' + this.data.id); } - return {"width": width, "height": height}; + this.dirty = true; } - else { - return {"width": 0, "height": 0}; + + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; } - }; - /** - * this is used to determine if a node is visible at all. this is used to determine when it needs to be drawn. - * there is a safety margin of 0.3 * width; - * - * @returns {boolean} - */ - Node.prototype.inArea = function() { - if (this.width !== undefined) { - return (this.x + this.width *this.networkScaleInv >= this.canvasTopLeft.x && - this.x - this.width *this.networkScaleInv < this.canvasBottomRight.x && - this.y + this.height*this.networkScaleInv >= this.canvasTopLeft.y && - this.y - this.height*this.networkScaleInv < this.canvasBottomRight.y); + // update class + var className = (this.data.className? ' ' + this.data.className : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.box.className = 'item box' + className; + dom.line.className = 'item line' + className; + dom.dot.className = 'item dot' + className; + + this.dirty = true; } - else { - return true; + + // recalculate size + if (this.dirty) { + this.props.dot.height = dom.dot.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.line.width = dom.line.offsetWidth; + this.width = dom.box.offsetWidth; + this.height = dom.box.offsetHeight; + + this.dirty = false; } + + this._repaintDeleteButton(dom.box); }; /** - * checks if the core of the node is in the display area, this is used for opening clusters around zoom - * @returns {boolean} + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. */ - Node.prototype.inView = function() { - return (this.x >= this.canvasTopLeft.x && - this.x < this.canvasBottomRight.x && - this.y >= this.canvasTopLeft.y && - this.y < this.canvasBottomRight.y); + ItemBox.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } }; /** - * This allows the zoom level of the network to influence the rendering - * We store the inverted scale and the coordinates of the top left, and bottom right points of the canvas - * - * @param scale - * @param canvasTopLeft - * @param canvasBottomRight + * Hide the item from the DOM (when visible) */ - Node.prototype.setScaleAndPos = function(scale,canvasTopLeft,canvasBottomRight) { - this.networkScaleInv = 1.0/scale; - this.networkScale = scale; - this.canvasTopLeft = canvasTopLeft; - this.canvasBottomRight = canvasBottomRight; - }; + ItemBox.prototype.hide = function() { + if (this.displayed) { + var dom = this.dom; + if (dom.box.parentNode) dom.box.parentNode.removeChild(dom.box); + if (dom.line.parentNode) dom.line.parentNode.removeChild(dom.line); + if (dom.dot.parentNode) dom.dot.parentNode.removeChild(dom.dot); + + this.top = null; + this.left = null; + + this.displayed = false; + } + }; /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale + * Reposition the item horizontally + * @Override */ - Node.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - this.networkScale = scale; - }; + ItemBox.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start), + align = this.options.align, + left, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; + // calculate left position of the box + if (align == 'right') { + this.left = start - this.width; + } + else if (align == 'left') { + this.left = start; + } + else { + // default or 'center' + this.left = start - this.width / 2; + } + // reposition box + box.style.left = this.left + 'px'; - /** - * set the velocity at 0. Is called when this node is contained in another during clustering - */ - Node.prototype.clearVelocity = function() { - this.vx = 0; - this.vy = 0; - }; + // reposition line + line.style.left = (start - this.props.line.width / 2) + 'px'; + // reposition dot + dot.style.left = (start - this.props.dot.width / 2) + 'px'; + }; /** - * Basic preservation of (kinectic) energy - * - * @param massBeforeClustering + * Reposition the item vertically + * @Override */ - Node.prototype.updateVelocity = function(massBeforeClustering) { - var energyBefore = this.vx * this.vx * massBeforeClustering; - //this.vx = (this.vx < 0) ? -Math.sqrt(energyBefore/this.options.mass) : Math.sqrt(energyBefore/this.options.mass); - this.vx = Math.sqrt(energyBefore/this.options.mass); - energyBefore = this.vy * this.vy * massBeforeClustering; - //this.vy = (this.vy < 0) ? -Math.sqrt(energyBefore/this.options.mass) : Math.sqrt(energyBefore/this.options.mass); - this.vy = Math.sqrt(energyBefore/this.options.mass); + ItemBox.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; + + if (orientation == 'top') { + box.style.top = (this.top || 0) + 'px'; + + line.style.top = '0'; + line.style.height = (this.parent.top + this.top + 1) + 'px'; + line.style.bottom = ''; + } + else { // orientation 'bottom' + var itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty + var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + line.style.top = (itemSetHeight - lineHeight) + 'px'; + line.style.bottom = '0'; + } + + dot.style.top = (-this.props.dot.height / 2) + 'px'; }; - module.exports = Node; + module.exports = ItemBox; /***/ }, -/* 37 */ +/* 34 */ /***/ function(module, exports, __webpack_require__) { + var Item = __webpack_require__(32); + /** - * Popup is a class to create a popup window with some text - * @param {Element} container The container object. - * @param {Number} [x] - * @param {Number} [y] - * @param {String} [text] - * @param {Object} [style] An object containing borderColor, - * backgroundColor, etc. + * @constructor ItemPoint + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options */ - function Popup(container, x, y, text, style) { - if (container) { - this.container = container; - } - else { - this.container = document.body; - } - - // x, y and text are optional, see if a style object was passed in their place - if (style === undefined) { - if (typeof x === "object") { - style = x; - x = undefined; - } else if (typeof text === "object") { - style = text; - text = undefined; - } else { - // for backwards compatibility, in case clients other than Network are creating Popup directly - style = { - fontColor: 'black', - fontSize: 14, // px - fontFace: 'verdana', - color: { - border: '#666', - background: '#FFFFC6' - } - } + function ItemPoint (data, conversion, options) { + this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0 } - } - - this.x = 0; - this.y = 0; - this.padding = 5; + }; - if (x !== undefined && y !== undefined ) { - this.setPosition(x, y); - } - if (text !== undefined) { - this.setText(text); + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } } - // create the frame - this.frame = document.createElement("div"); - var styleAttr = this.frame.style; - styleAttr.position = "absolute"; - styleAttr.visibility = "hidden"; - styleAttr.border = "1px solid " + style.color.border; - styleAttr.color = style.fontColor; - styleAttr.fontSize = style.fontSize + "px"; - styleAttr.fontFamily = style.fontFace; - styleAttr.padding = this.padding + "px"; - styleAttr.backgroundColor = style.color.background; - styleAttr.borderRadius = "3px"; - styleAttr.MozBorderRadius = "3px"; - styleAttr.WebkitBorderRadius = "3px"; - styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; - styleAttr.whiteSpace = "nowrap"; - this.container.appendChild(this.frame); + Item.call(this, data, conversion, options); } - /** - * @param {number} x Horizontal position of the popup window - * @param {number} y Vertical position of the popup window - */ - Popup.prototype.setPosition = function(x, y) { - this.x = parseInt(x); - this.y = parseInt(y); - }; + ItemPoint.prototype = new Item (null, null, null); /** - * Set the text for the popup window. This can be HTML code - * @param {string} text + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible */ - Popup.prototype.setText = function(text) { - this.frame.innerHTML = text; + ItemPoint.prototype.isVisible = function(range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); }; /** - * Show the popup window - * @param {boolean} show Optional. Show or hide the window + * Repaint the item */ - Popup.prototype.show = function (show) { - if (show === undefined) { - show = true; - } + ItemPoint.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - if (show) { - var height = this.frame.clientHeight; - var width = this.frame.clientWidth; - var maxHeight = this.frame.parentNode.clientHeight; - var maxWidth = this.frame.parentNode.clientWidth; + // background box + dom.point = document.createElement('div'); + // className is updated in redraw() - var top = (this.y - height); - if (top + height + this.padding > maxHeight) { - top = maxHeight - height - this.padding; - } - if (top < this.padding) { - top = this.padding; - } + // contents box, right from the dot + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.point.appendChild(dom.content); - var left = this.x; - if (left + width + this.padding > maxWidth) { - left = maxWidth - width - this.padding; + // dot at start + dom.dot = document.createElement('div'); + dom.point.appendChild(dom.dot); + + // attach this item as attribute + dom.point['timeline-item'] = this; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.point.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw time axis: parent has no foreground container element'); } - if (left < this.padding) { - left = this.padding; + foreground.appendChild(dom.point); + } + this.displayed = true; + + // update contents + if (this.data.content != this.content) { + this.content = this.data.content; + if (this.content instanceof Element) { + dom.content.innerHTML = ''; + dom.content.appendChild(this.content); + } + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; + } + else { + throw new Error('Property "content" missing in item ' + this.data.id); } - this.frame.style.left = left + "px"; - this.frame.style.top = top + "px"; - this.frame.style.visibility = "visible"; - } - else { - this.hide(); + this.dirty = true; } - }; - /** - * Hide the popup window - */ - Popup.prototype.hide = function () { - this.frame.style.visibility = "hidden"; - }; + // update title + if (this.data.title != this.title) { + dom.point.title = this.data.title; + this.title = this.data.title; + } - module.exports = Popup; + // update class + var className = (this.data.className? ' ' + this.data.className : '') + + (this.selected ? ' selected' : ''); + if (this.className != className) { + this.className = className; + dom.point.className = 'item point' + className; + dom.dot.className = 'item dot' + className; + this.dirty = true; + } -/***/ }, -/* 38 */ -/***/ function(module, exports, __webpack_require__) { + // recalculate size + if (this.dirty) { + this.width = dom.point.offsetWidth; + this.height = dom.point.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.dot.height = dom.dot.offsetHeight; + this.props.content.height = dom.content.offsetHeight; - /** - * Parse a text source containing data in DOT language into a JSON object. - * The object contains two lists: one with nodes and one with edges. - * - * DOT language reference: http://www.graphviz.org/doc/info/lang.html - * - * @param {String} data Text containing a graph in DOT-notation - * @return {Object} graph An object containing two parameters: - * {Object[]} nodes - * {Object[]} edges - */ - function parseDOT (data) { - dot = data; - return parseGraph(); - } + // resize contents + dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; + //dom.content.style.marginRight = ... + 'px'; // TODO: margin right - // token types enumeration - var TOKENTYPE = { - NULL : 0, - DELIMITER : 1, - IDENTIFIER: 2, - UNKNOWN : 3 - }; + dom.dot.style.top = ((this.height - this.props.dot.height) / 2) + 'px'; + dom.dot.style.left = (this.props.dot.width / 2) + 'px'; - // map with all delimiters - var DELIMITERS = { - '{': true, - '}': true, - '[': true, - ']': true, - ';': true, - '=': true, - ',': true, + this.dirty = false; + } - '->': true, - '--': true + this._repaintDeleteButton(dom.point); }; - var dot = ''; // current dot file - var index = 0; // current index in dot file - var c = ''; // current token character in expr - var token = ''; // current token - var tokenType = TOKENTYPE.NULL; // type of the token - /** - * Get the first character from the dot file. - * The character is stored into the char c. If the end of the dot file is - * reached, the function puts an empty string in c. + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - function first() { - index = 0; - c = dot.charAt(0); - } + ItemPoint.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } + }; /** - * Get the next character from the dot file. - * The character is stored into the char c. If the end of the dot file is - * reached, the function puts an empty string in c. + * Hide the item from the DOM (when visible) */ - function next() { - index++; - c = dot.charAt(index); - } + ItemPoint.prototype.hide = function() { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); + } - /** - * Preview the next character from the dot file. - * @return {String} cNext - */ - function nextPreview() { - return dot.charAt(index + 1); - } + this.top = null; + this.left = null; + + this.displayed = false; + } + }; /** - * Test whether given character is alphabetic or numeric - * @param {String} c - * @return {Boolean} isAlphaNumeric + * Reposition the item horizontally + * @Override */ - var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; - function isAlphaNumeric(c) { - return regexAlphaNumeric.test(c); - } + ItemPoint.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start); + + this.left = start - this.props.dot.width; + + // reposition point + this.dom.point.style.left = this.left + 'px'; + }; /** - * Merge all properties of object b into object b - * @param {Object} a - * @param {Object} b - * @return {Object} a + * Reposition the item vertically + * @Override */ - function merge (a, b) { - if (!a) { - a = {}; - } + ItemPoint.prototype.repositionY = function() { + var orientation = this.options.orientation, + point = this.dom.point; - if (b) { - for (var name in b) { - if (b.hasOwnProperty(name)) { - a[name] = b[name]; - } - } + if (orientation == 'top') { + point.style.top = this.top + 'px'; } - return a; - } + else { + point.style.top = (this.parent.height - this.top - this.height) + 'px'; + } + }; + + module.exports = ItemPoint; + + +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { + + var Emitter = __webpack_require__(10); + var Hammer = __webpack_require__(18); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var Range = __webpack_require__(20); + var Core = __webpack_require__(23); + var TimeAxis = __webpack_require__(24); + var CurrentTime = __webpack_require__(26); + var CustomTime = __webpack_require__(27); + var LineGraph = __webpack_require__(36); /** - * Set a value in an object, where the provided parameter name can be a - * path with nested parameters. For example: - * - * var obj = {a: 2}; - * setValue(obj, 'b.c', 3); // obj = {a: 2, b: {c: 3}} - * - * @param {Object} obj - * @param {String} path A parameter name or dot-separated parameter path, - * like "color.highlight.border". - * @param {*} value + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array | google.visualization.DataTable} [items] + * @param {Object} [options] See Graph2d.setOptions for the available options. + * @constructor */ - function setValue(obj, path, value) { - var keys = path.split('.'); - var o = obj; - while (keys.length) { - var key = keys.shift(); - if (keys.length) { - // this isn't the end point - if (!o[key]) { - o[key] = {}; - } - o = o[key]; - } - else { - // this is the end point - o[key] = value; + function Graph2d (container, items, options, groups) { + for (var coreProp in Core.prototype) { + if (Core.prototype.hasOwnProperty(coreProp) && !Graph2d.prototype.hasOwnProperty(coreProp)) { + Graph2d.prototype[coreProp] = Core.prototype[coreProp]; } } - } - /** - * Add a node to a graph object. If there is already a node with - * the same id, their attributes will be merged. - * @param {Object} graph - * @param {Object} node - */ - function addNode(graph, node) { - var i, len; - var current = null; + var me = this; + this.defaultOptions = { + start: null, + end: null, - // find root graph (in case of subgraph) - var graphs = [graph]; // list with all graphs from current graph to root graph - var root = graph; - while (root.parent) { - graphs.push(root.parent); - root = root.parent; - } + autoResize: true, - // find existing node (at root level) by its id - if (root.nodes) { - for (i = 0, len = root.nodes.length; i < len; i++) { - if (node.id === root.nodes[i].id) { - current = root.nodes[i]; - break; - } - } - } + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - if (!current) { - // this is a new node - current = { - id: node.id - }; - if (graph.node) { - // clone default attributes - current.attr = merge(current.attr, graph.node); - } - } + // Create the DOM, props, and emitter + this._create(container); - // add node to this (sub)graph and all its parent graphs - for (i = graphs.length - 1; i >= 0; i--) { - var g = graphs[i]; + // all components listed here will be repainted automatically + this.components = []; - if (!g.nodes) { - g.nodes = []; - } - if (g.nodes.indexOf(current) == -1) { - g.nodes.push(current); + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + util: { + snap: null, // will be specified after TimeAxis is created + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime : me._toGlobalTime.bind(me) } + }; + + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; + + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); + + // custom time bar + // Note: time bar will be attached in this.setOptions when selected + this.customTime = new CustomTime(this.body); + this.components.push(this.customTime); + + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); + + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + // apply options + if (options) { + this.setOptions(options); } - // merge attributes - if (node.attr) { - current.attr = merge(current.attr, node.attr); + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); } - } - /** - * Add an edge to a graph object - * @param {Object} graph - * @param {Object} edge - */ - function addEdge(graph, edge) { - if (!graph.edges) { - graph.edges = []; + // create itemset + if (items) { + this.setItems(items); } - graph.edges.push(edge); - if (graph.edge) { - var attr = merge({}, graph.edge); // clone default attributes - edge.attr = merge(attr, edge.attr); // merge attributes + else { + this.redraw(); } } /** - * Create an edge to a graph object - * @param {Object} graph - * @param {String | Number | Object} from - * @param {String | Number | Object} to - * @param {String} type - * @param {Object | null} attr - * @return {Object} edge + * Set options. Options will be passed to all components loaded in the Graph2d. + * @param {Object} [options] + * {String} orientation + * Vertical orientation for the Graph2d, + * can be 'bottom' (default) or 'top'. + * {String | Number} width + * Width for the timeline, a number in pixels or + * a css string like '1000px' or '75%'. '100%' by default. + * {String | Number} height + * Fixed height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. If undefined, + * The Graph2d will automatically size such that + * its contents fit. + * {String | Number} minHeight + * Minimum height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. + * {String | Number} maxHeight + * Maximum height for the Graph2d, a number in pixels or + * a css string like '400px' or '75%'. + * {Number | Date | String} start + * Start date for the visible window + * {Number | Date | String} end + * End date for the visible window */ - function createEdge(graph, from, to, type, attr) { - var edge = { - from: from, - to: to, - type: type - }; + Graph2d.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation']; + util.selectiveExtend(fields, this.options, options); - if (graph.edge) { - edge.attr = merge({}, graph.edge); // clone default attributes + // enable/disable autoResize + this._initAutoResize(); } - edge.attr = merge(edge.attr || {}, attr); // merge attributes - return edge; - } + // propagate options to all components + this.components.forEach(function (component) { + component.setOptions(options); + }); + + // TODO: remove deprecation error one day (deprecated since version 0.8.0) + if (options && options.order) { + throw new Error('Option order is deprecated. There is no replacement for this feature.'); + } + + // redraw everything + this.redraw(); + }; + /** - * Get next token in the current dot file. - * The token and token type are available as token and tokenType + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - function getToken() { - tokenType = TOKENTYPE.NULL; - token = ''; + Graph2d.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; } - - do { - var isComment = false; - - // skip comment - if (c == '#') { - // find the previous non-space character - var i = index - 1; - while (dot.charAt(i) == ' ' || dot.charAt(i) == '\t') { - i--; - } - if (dot.charAt(i) == '\n' || dot.charAt(i) == '') { - // the # is at the start of a line, this is indeed a line comment - while (c != '' && c != '\n') { - next(); - } - isComment = true; - } - } - if (c == '/' && nextPreview() == '/') { - // skip line comment - while (c != '' && c != '\n') { - next(); - } - isComment = true; - } - if (c == '/' && nextPreview() == '*') { - // skip block comment - while (c != '') { - if (c == '*' && nextPreview() == '/') { - // end of block comment found. skip these last two characters - next(); - next(); - break; - } - else { - next(); - } + else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } + else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' } - isComment = true; - } - - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } + }); } - while (isComment); - // check for end of dot file - if (c == '') { - // token is still empty - tokenType = TOKENTYPE.DELIMITER; - return; - } - - // check for delimiters consisting of 2 characters - var c2 = c + nextPreview(); - if (DELIMITERS[c2]) { - tokenType = TOKENTYPE.DELIMITER; - token = c2; - next(); - next(); - return; - } - - // check for delimiters consisting of 1 character - if (DELIMITERS[c]) { - tokenType = TOKENTYPE.DELIMITER; - token = c; - next(); - return; - } - - // check for an identifier (number or string) - // TODO: more precise parsing of numbers/strings (and the port separator ':') - if (isAlphaNumeric(c) || c == '-') { - token += c; - next(); + // set items + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); - while (isAlphaNumeric(c)) { - token += c; - next(); - } - if (token == 'false') { - token = false; // convert to boolean - } - else if (token == 'true') { - token = true; // convert to boolean - } - else if (!isNaN(Number(token))) { - token = Number(token); // convert to number - } - tokenType = TOKENTYPE.IDENTIFIER; - return; - } + if (initialLoad && ('start' in this.options || 'end' in this.options)) { + this.fit(); - // check for a string enclosed by double quotes - if (c == '"') { - next(); - while (c != '' && (c != '"' || (c == '"' && nextPreview() == '"'))) { - token += c; - if (c == '"') { // skip the escape character - next(); - } - next(); - } - if (c != '"') { - throw newSyntaxError('End of string " expected'); - } - next(); - tokenType = TOKENTYPE.IDENTIFIER; - return; - } + var start = ('start' in this.options) ? util.convert(this.options.start, 'Date') : null; + var end = ('end' in this.options) ? util.convert(this.options.end, 'Date') : null; - // something unknown is found, wrong characters, a syntax error - tokenType = TOKENTYPE.UNKNOWN; - while (c != '') { - token += c; - next(); + this.setWindow(start, end); } - throw new SyntaxError('Syntax error in part "' + chop(token, 30) + '"'); - } + }; /** - * Parse a graph. - * @returns {Object} graph + * Set groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - function parseGraph() { - var graph = {}; - - first(); - getToken(); - - // optional strict keyword - if (token == 'strict') { - graph.strict = true; - getToken(); - } - - // graph or digraph keyword - if (token == 'graph' || token == 'digraph') { - graph.type = token; - getToken(); + Graph2d.prototype.setGroups = function(groups) { + // convert to type DataSet when needed + var newDataSet; + if (!groups) { + newDataSet = null; } - - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - graph.id = token; - getToken(); + else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; } - - // open angle bracket - if (token != '{') { - throw newSyntaxError('Angle bracket { expected'); + else { + // turn an array into a dataset + newDataSet = new DataSet(groups); } - getToken(); - // statements - parseStatements(graph); + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); + }; - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); + /** + * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right). + * @param groupId + * @param width + * @param height + */ + Graph2d.prototype.getLegend = function(groupId, width, height) { + if (width === undefined) {width = 15;} + if (height === undefined) {height = 15;} + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].getLegend(width,height); } - getToken(); - - // end of file - if (token !== '') { - throw newSyntaxError('End of file expected'); + else { + return "cannot find group:" + groupId; } - getToken(); - - // remove temporary default properties - delete graph.node; - delete graph.edge; - delete graph.graph; - - return graph; } /** - * Parse a list with statements. - * @param {Object} graph + * This checks if the visible option of the supplied group (by ID) is true or false. + * @param groupId + * @returns {*} */ - function parseStatements (graph) { - while (token !== '' && token != '}') { - parseStatement(graph); - if (token == ';') { - getToken(); - } + Graph2d.prototype.isGroupVisible = function(groupId) { + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].visible; + } + else { + return false; } } + /** - * Parse a single statement. Can be a an attribute statement, node - * statement, a series of node statements and edge statements, or a - * parameter. - * @param {Object} graph + * Get the data range of the item set. + * @returns {{min: Date, max: Date}} range A range with a start and end Date. + * When no minimum is found, min==null + * When no maximum is found, max==null */ - function parseStatement(graph) { - // parse subgraph - var subgraph = parseSubgraph(graph); - if (subgraph) { - // edge statements - parseEdge(graph, subgraph); + Graph2d.prototype.getItemRange = function() { + var min = null; + var max = null; - return; + // calculate min from start filed + for (var groupId in this.linegraph.groups) { + if (this.linegraph.groups.hasOwnProperty(groupId)) { + if (this.linegraph.groups[groupId].visible == true) { + for (var i = 0; i < this.linegraph.groups[groupId].itemsData.length; i++) { + var item = this.linegraph.groups[groupId].itemsData[i]; + var value = util.convert(item.x, 'Date').valueOf(); + min = min == null ? value : min > value ? value : min; + max = max == null ? value : max < value ? value : max; + } + } + } } - // parse an attribute statement - var attr = parseAttributeStatement(graph); - if (attr) { - return; - } + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; + }; - // parse node - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); - } - var id = token; // id can be a string or a number - getToken(); - if (token == '=') { - // id statement - getToken(); - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); - } - graph[id] = token; - getToken(); - // TODO: implement comma separated list with "a_list: ID=ID [','] [a_list] " - } - else { - parseNodeStatement(graph, id); - } - } - /** - * Parse a subgraph - * @param {Object} graph parent graph object - * @return {Object | null} subgraph - */ - function parseSubgraph (graph) { - var subgraph = null; + module.exports = Graph2d; - // optional subgraph keyword - if (token == 'subgraph') { - subgraph = {}; - subgraph.type = 'subgraph'; - getToken(); - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - subgraph.id = token; - getToken(); - } - } +/***/ }, +/* 36 */ +/***/ function(module, exports, __webpack_require__) { - // open angle bracket - if (token == '{') { - getToken(); + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(6); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var Component = __webpack_require__(22); + var DataAxis = __webpack_require__(37); + var GraphGroup = __webpack_require__(38); + var Legend = __webpack_require__(39); - if (!subgraph) { - subgraph = {}; - } - subgraph.parent = graph; - subgraph.node = graph.node; - subgraph.edge = graph.edge; - subgraph.graph = graph.graph; + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items - // statements - parseStatements(subgraph); + /** + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor + */ + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); + this.defaultOptions = { + yAxisOrientation: 'left', + defaultGroup: 'default', + sort: true, + sampling: true, + graphHeight: '400px', + shaded: { + enabled: false, + orientation: 'bottom' // top, bottom + }, + style: 'line', // line, bar + barChart: { + width: 50, + allowOverlap: true, + align: 'center' // left, center, right + }, + catmullRom: { + enabled: true, + parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: 0.5 + }, + drawPoints: { + enabled: true, + size: 6, + style: 'square' // square, circle + }, + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: '40px', + visible: true, + customRange: { + left: {min:undefined, max:undefined}, + right: {min:undefined, max:undefined} + } + }, + legend: { + enabled: false, + icons: true, + left: { + visible: true, + position: 'top-left' // top/bottom - left,right + }, + right: { + visible: true, + position: 'top-right' // top/bottom - left,right + } } - getToken(); + }; - // remove temporary default properties - delete subgraph.node; - delete subgraph.edge; - delete subgraph.graph; - delete subgraph.parent; + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); + this.dom = {}; + this.props = {}; + this.hammer = null; + this.groups = {}; - // register at the parent graph - if (!graph.subgraphs) { - graph.subgraphs = []; - } - graph.subgraphs.push(subgraph); - } + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - return subgraph; - } + // listeners for the DataSet of the items + this.itemListeners = { + 'add': function (event, params, senderId) { + me._onAdd(params.items); + }, + 'update': function (event, params, senderId) { + me._onUpdate(params.items); + }, + 'remove': function (event, params, senderId) { + me._onRemove(params.items); + } + }; - /** - * parse an attribute statement like "node [shape=circle fontSize=16]". - * Available keywords are 'node', 'edge', 'graph'. - * The previous list with default attributes will be replaced - * @param {Object} graph - * @returns {String | null} keyword Returns the name of the parsed attribute - * (node, edge, graph), or null if nothing - * is parsed. - */ - function parseAttributeStatement (graph) { - // attribute statements - if (token == 'node') { - getToken(); + // listeners for the DataSet of the groups + this.groupListeners = { + 'add': function (event, params, senderId) { + me._onAddGroups(params.items); + }, + 'update': function (event, params, senderId) { + me._onUpdateGroups(params.items); + }, + 'remove': function (event, params, senderId) { + me._onRemoveGroups(params.items); + } + }; - // node attributes - graph.node = parseAttributeList(); - return 'node'; - } - else if (token == 'edge') { - getToken(); + this.items = {}; // object with an Item for every data item + this.selection = []; // list with the ids of all selected nodes + this.lastStart = this.body.range.start; + this.touchParams = {}; // stores properties while dragging - // edge attributes - graph.edge = parseAttributeList(); - return 'edge'; - } - else if (token == 'graph') { - getToken(); + this.svgElements = {}; + this.setOptions(options); + this.groupsUsingDefaultStyles = [0]; - // graph attributes - graph.graph = parseAttributeList(); - return 'graph'; - } + this.body.emitter.on("rangechange",function() { + if (me.lastStart != 0) { + var offset = me.body.range.start - me.lastStart; + var range = me.body.range.end - me.body.range.start; + if (me.width != 0) { + var rangePerPixelInv = me.width/range; + var xOffset = offset * rangePerPixelInv; + me.svg.style.left = (-me.width - xOffset) + "px"; + } + } + }); + this.body.emitter.on("rangechanged", function() { + me.lastStart = me.body.range.start; + me.svg.style.left = util.option.asSize(-me.width); + me._updateGraph.apply(me); + }); - return null; + // create the HTML DOM + this._create(); + this.body.emitter.emit("change"); } - /** - * parse a node statement - * @param {Object} graph - * @param {String | Number} id - */ - function parseNodeStatement(graph, id) { - // node statement - var node = { - id: id - }; - var attr = parseAttributeList(); - if (attr) { - node.attr = attr; - } - addNode(graph, node); - - // edge statements - parseEdge(graph, id); - } + LineGraph.prototype = new Component(); /** - * Parse an edge or a series of edges - * @param {Object} graph - * @param {String | Number} from Id of the from node + * Create the HTML DOM for the ItemSet */ - function parseEdge(graph, from) { - while (token == '->' || token == '--') { - var to; - var type = token; - getToken(); + LineGraph.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'LineGraph'; + this.dom.frame = frame; - var subgraph = parseSubgraph(graph); - if (subgraph) { - to = subgraph; - } - else { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier or subgraph expected'); - } - to = token; - addNode(graph, { - id: to - }); - getToken(); - } + // create svg element for graph drawing. + this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.svg.style.position = "relative"; + this.svg.style.height = ('' + this.options.graphHeight).replace("px",'') + 'px'; + this.svg.style.display = "block"; + frame.appendChild(this.svg); - // parse edge attributes - var attr = parseAttributeList(); + // data axis + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - // create edge - var edge = createEdge(graph, from, to, type, attr); - addEdge(graph, edge); + this.options.dataAxis.orientation = 'right'; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); + delete this.options.dataAxis.orientation; - from = to; - } - } + // legends + this.legendLeft = new Legend(this.body, this.options.legend, 'left'); + this.legendRight = new Legend(this.body, this.options.legend, 'right'); + + this.show(); + }; /** - * Parse a set with attributes, - * for example [label="1.000", shape=solid] - * @return {Object | null} attr + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param options */ - function parseAttributeList() { - var attr = null; - - while (token == '[') { - getToken(); - attr = {}; - while (token !== '' && token != ']') { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute name expected'); - } - var name = token; + LineGraph.prototype.setOptions = function(options) { + if (options) { + var fields = ['sampling','defaultGroup','graphHeight','yAxisOrientation','style','barChart','dataAxis','sort']; + util.selectiveDeepExtend(fields, this.options, options); + util.mergeOptions(this.options, options,'catmullRom'); + util.mergeOptions(this.options, options,'drawPoints'); + util.mergeOptions(this.options, options,'shaded'); + util.mergeOptions(this.options, options,'legend'); - getToken(); - if (token != '=') { - throw newSyntaxError('Equal sign = expected'); + if (options.catmullRom) { + if (typeof options.catmullRom == 'object') { + if (options.catmullRom.parametrization) { + if (options.catmullRom.parametrization == 'uniform') { + this.options.catmullRom.alpha = 0; + } + else if (options.catmullRom.parametrization == 'chordal') { + this.options.catmullRom.alpha = 1.0; + } + else { + this.options.catmullRom.parametrization = 'centripetal'; + this.options.catmullRom.alpha = 0.5; + } + } } - getToken(); + } - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute value expected'); + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); } - var value = token; - setValue(attr, name, value); // name can be a path + } - getToken(); - if (token ==',') { - getToken(); + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); } } - if (token != ']') { - throw newSyntaxError('Bracket ] expected'); + if (this.groups.hasOwnProperty(UNGROUPED)) { + this.groups[UNGROUPED].setOptions(options); } - getToken(); } - - return attr; - } + if (this.dom.frame) { + this._updateGraph(); + } + }; /** - * Create a syntax error with extra information on current token and index. - * @param {String} message - * @returns {SyntaxError} err + * Hide the component from the DOM */ - function newSyntaxError(message) { - return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); - } + LineGraph.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; /** - * Chop off text after a maximum length - * @param {String} text - * @param {Number} maxLength - * @returns {String} + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - function chop (text, maxLength) { - return (text.length <= maxLength) ? text : (text.substr(0, 27) + '...'); - } + LineGraph.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + }; + /** - * Execute a function fn for each pair of elements in two arrays - * @param {Array | *} array1 - * @param {Array | *} array2 - * @param {function} fn + * Set items + * @param {vis.DataSet | null} items */ - function forEach2(array1, array2, fn) { - if (array1 instanceof Array) { - array1.forEach(function (elem1) { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(elem1, elem2); - }); - } - else { - fn(elem1, array2); - } - }); + LineGraph.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; + + // replace the dataset + if (!items) { + this.itemsData = null; + } + else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; } else { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(array1, elem2); - }); - } - else { - fn(array1, array2); - } + throw new TypeError('Data must be an instance of DataSet or DataView'); } - } - /** - * Convert a string containing a graph in DOT language into a map containing - * with nodes and edges in the format of graph. - * @param {String} data Text containing a graph in DOT-notation - * @return {Object} graphData - */ - function DOTToGraph (data) { - // parse the DOT file - var dotData = parseDOT(data); - var graphData = { - nodes: [], - edges: [], - options: {} - }; - - // copy the nodes - if (dotData.nodes) { - dotData.nodes.forEach(function (dotNode) { - var graphNode = { - id: dotNode.id, - label: String(dotNode.label || dotNode.id) - }; - merge(graphNode, dotNode.attr); - if (graphNode.image) { - graphNode.shape = 'image'; - } - graphData.nodes.push(graphNode); + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); }); - } - // copy the edges - if (dotData.edges) { - /** - * Convert an edge in DOT format to an edge with VisGraph format - * @param {Object} dotEdge - * @returns {Object} graphEdge - */ - function convertEdge(dotEdge) { - var graphEdge = { - from: dotEdge.from, - to: dotEdge.to - }; - merge(graphEdge, dotEdge.attr); - graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; - return graphEdge; - } - - dotData.edges.forEach(function (dotEdge) { - var from, to; - if (dotEdge.from instanceof Object) { - from = dotEdge.from.nodes; - } - else { - from = { - id: dotEdge.from - } - } + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - if (dotEdge.to instanceof Object) { - to = dotEdge.to.nodes; - } - else { - to = { - id: dotEdge.to - } - } + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - if (dotEdge.from instanceof Object && dotEdge.from.edges) { - dotEdge.from.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); + }; - forEach2(from, to, function (from, to) { - var subEdge = createEdge(graphData, from.id, to.id, dotEdge.type, dotEdge.attr); - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); + /** + * Set groups + * @param {vis.DataSet} groups + */ + LineGraph.prototype.setGroups = function(groups) { + var me = this, + ids; - if (dotEdge.to instanceof Object && dotEdge.to.edges) { - dotEdge.to.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); }); - } - // copy the options - if (dotData.attr) { - graphData.options = dotData.attr; + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw } - return graphData; - } - - // exports - exports.parseDOT = parseDOT; - exports.DOTToGraph = DOTToGraph; - - -/***/ }, -/* 39 */ -/***/ function(module, exports, __webpack_require__) { - - - function parseGephi(gephiJSON, options) { - var edges = []; - var nodes = []; - this.options = { - edges: { - inheritColor: true - }, - nodes: { - allowedToMove: false, - parseColor: false - } - }; - - if (options !== undefined) { - this.options.nodes['allowedToMove'] = options.allowedToMove | false; - this.options.nodes['parseColor'] = options.parseColor | false; - this.options.edges['inheritColor'] = options.inheritColor | true; + // replace the dataset + if (!groups) { + this.groupsData = null; } - - var gEdges = gephiJSON.edges; - var gNodes = gephiJSON.nodes; - for (var i = 0; i < gEdges.length; i++) { - var edge = {}; - var gEdge = gEdges[i]; - edge['id'] = gEdge.id; - edge['from'] = gEdge.source; - edge['to'] = gEdge.target; - edge['attributes'] = gEdge.attributes; - // edge['value'] = gEdge.attributes !== undefined ? gEdge.attributes.Weight : undefined; - // edge['width'] = edge['value'] !== undefined ? undefined : edgegEdge.size; - edge['color'] = gEdge.color; - edge['inheritColor'] = edge['color'] !== undefined ? false : this.options.inheritColor; - edges.push(edge); + else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; } - - for (var i = 0; i < gNodes.length; i++) { - var node = {}; - var gNode = gNodes[i]; - node['id'] = gNode.id; - node['attributes'] = gNode.attributes; - node['x'] = gNode.x; - node['y'] = gNode.y; - node['label'] = gNode.label; - if (this.options.nodes.parseColor == true) { - node['color'] = gNode.color; - } - else { - node['color'] = gNode.color !== undefined ? {background:gNode.color, border:gNode.color} : undefined; - } - node['radius'] = gNode.size; - node['allowedToMoveX'] = this.options.nodes.allowedToMove; - node['allowedToMoveY'] = this.options.nodes.allowedToMove; - nodes.push(node); + else { + throw new TypeError('Data must be an instance of DataSet or DataView'); } - return {nodes:nodes, edges:edges}; - } - - exports.parseGephi = parseGephi; - -/***/ }, -/* 40 */ -/***/ function(module, exports, __webpack_require__) { + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - // first check if moment.js is already loaded in the browser window, if so, - // use this instance. Else, load via commonjs. - module.exports = (typeof window !== 'undefined') && window['moment'] || __webpack_require__(47); + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + this._onUpdate(); + }; -/***/ }, -/* 41 */ -/***/ function(module, exports, __webpack_require__) { - // Only load hammer.js when in a browser environment - // (loading hammer.js in a node.js environment gives errors) - if (typeof window !== 'undefined') { - module.exports = window['Hammer'] || __webpack_require__(48); - } - else { - module.exports = function () { - throw Error('hammer.js is only available in a browser, not in node.js.'); + LineGraph.prototype._onUpdate = function(ids) { + this._updateUngrouped(); + this._updateAllGroupData(); + this._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAdd = function (ids) {this._onUpdate(ids);}; + LineGraph.prototype._onRemove = function (ids) {this._onUpdate(ids);}; + LineGraph.prototype._onUpdateGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + var group = this.groupsData.get(groupIds[i]); + this._updateGroup(group, groupIds[i]); } - } - -/***/ }, -/* 42 */ -/***/ function(module, exports, __webpack_require__) { + this._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - var Emitter = __webpack_require__(46); - var Hammer = __webpack_require__(41); - var util = __webpack_require__(1); - var DataSet = __webpack_require__(3); - var DataView = __webpack_require__(4); - var Range = __webpack_require__(15); - var TimeAxis = __webpack_require__(27); - var CurrentTime = __webpack_require__(19); - var CustomTime = __webpack_require__(20); - var ItemSet = __webpack_require__(24); + LineGraph.prototype._onRemoveGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + if (!this.groups.hasOwnProperty(groupIds[i])) { + if (this.groups[groupIds[i]].options.yAxisOrientation == 'right') { + this.yAxisRight.removeGroup(groupIds[i]); + this.legendRight.removeGroup(groupIds[i]); + this.legendRight.redraw(); + } + else { + this.yAxisLeft.removeGroup(groupIds[i]); + this.legendLeft.removeGroup(groupIds[i]); + this.legendLeft.redraw(); + } + delete this.groups[groupIds[i]]; + } + } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); + }; /** - * Create a timeline visualization - * @param {HTMLElement} container - * @param {vis.DataSet | Array | google.visualization.DataTable} [items] - * @param {Object} [options] See Core.setOptions for the available options. - * @constructor + * update a group object + * + * @param group + * @param groupId + * @private */ - function Core () {} + LineGraph.prototype._updateGroup = function (group, groupId) { + if (!this.groups.hasOwnProperty(groupId)) { + this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.addGroup(groupId, this.groups[groupId]); + this.legendRight.addGroup(groupId, this.groups[groupId]); + } + else { + this.yAxisLeft.addGroup(groupId, this.groups[groupId]); + this.legendLeft.addGroup(groupId, this.groups[groupId]); + } + } + else { + this.groups[groupId].update(group); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.updateGroup(groupId, this.groups[groupId]); + this.legendRight.updateGroup(groupId, this.groups[groupId]); + } + else { + this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); + this.legendLeft.updateGroup(groupId, this.groups[groupId]); + } + } + this.legendLeft.redraw(); + this.legendRight.redraw(); + }; - // turn Core into an event emitter - Emitter(Core.prototype); + LineGraph.prototype._updateAllGroupData = function () { + if (this.itemsData != null) { + var groupsContent = {}; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupsContent[groupId] = []; + } + } + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + item.x = util.convert(item.x,"Date"); + groupsContent[item.group].push(item); + } + } + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } + }; /** - * Create the main DOM for the Core: a root panel containing left, right, - * top, bottom, content, and background panel. - * @param {Element} container The container element where the Core will - * be attached. - * @private + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. This anonymous group is called 'graph'. + * @protected */ - Core.prototype._create = function (container) { - this.dom = {}; - - this.dom.root = document.createElement('div'); - this.dom.background = document.createElement('div'); - this.dom.backgroundVertical = document.createElement('div'); - this.dom.backgroundHorizontal = document.createElement('div'); - this.dom.centerContainer = document.createElement('div'); - this.dom.leftContainer = document.createElement('div'); - this.dom.rightContainer = document.createElement('div'); - this.dom.center = document.createElement('div'); - this.dom.left = document.createElement('div'); - this.dom.right = document.createElement('div'); - this.dom.top = document.createElement('div'); - this.dom.bottom = document.createElement('div'); - this.dom.shadowTop = document.createElement('div'); - this.dom.shadowBottom = document.createElement('div'); - this.dom.shadowTopLeft = document.createElement('div'); - this.dom.shadowBottomLeft = document.createElement('div'); - this.dom.shadowTopRight = document.createElement('div'); - this.dom.shadowBottomRight = document.createElement('div'); + LineGraph.prototype._updateUngrouped = function() { + if (this.itemsData != null) { + // var t0 = new Date(); + var group = {id: UNGROUPED, content: this.options.defaultGroup}; + this._updateGroup(group, UNGROUPED); + var ungroupedCounter = 0; + if (this.itemsData) { + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + if (item != undefined) { + if (item.hasOwnProperty('group')) { + if (item.group === undefined) { + item.group = UNGROUPED; + } + } + else { + item.group = UNGROUPED; + } + ungroupedCounter = item.group == UNGROUPED ? ungroupedCounter + 1 : ungroupedCounter; + } + } + } + } - this.dom.background.className = 'vispanel background'; - this.dom.backgroundVertical.className = 'vispanel background vertical'; - this.dom.backgroundHorizontal.className = 'vispanel background horizontal'; - this.dom.centerContainer.className = 'vispanel center'; - this.dom.leftContainer.className = 'vispanel left'; - this.dom.rightContainer.className = 'vispanel right'; - this.dom.top.className = 'vispanel top'; - this.dom.bottom.className = 'vispanel bottom'; - this.dom.left.className = 'content'; - this.dom.center.className = 'content'; - this.dom.right.className = 'content'; - this.dom.shadowTop.className = 'shadow top'; - this.dom.shadowBottom.className = 'shadow bottom'; - this.dom.shadowTopLeft.className = 'shadow top'; - this.dom.shadowBottomLeft.className = 'shadow bottom'; - this.dom.shadowTopRight.className = 'shadow top'; - this.dom.shadowBottomRight.className = 'shadow bottom'; - - this.dom.root.appendChild(this.dom.background); - this.dom.root.appendChild(this.dom.backgroundVertical); - this.dom.root.appendChild(this.dom.backgroundHorizontal); - this.dom.root.appendChild(this.dom.centerContainer); - this.dom.root.appendChild(this.dom.leftContainer); - this.dom.root.appendChild(this.dom.rightContainer); - this.dom.root.appendChild(this.dom.top); - this.dom.root.appendChild(this.dom.bottom); - - this.dom.centerContainer.appendChild(this.dom.center); - this.dom.leftContainer.appendChild(this.dom.left); - this.dom.rightContainer.appendChild(this.dom.right); - - this.dom.centerContainer.appendChild(this.dom.shadowTop); - this.dom.centerContainer.appendChild(this.dom.shadowBottom); - this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); - this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); - this.dom.rightContainer.appendChild(this.dom.shadowTopRight); - this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); - - this.on('rangechange', this.redraw.bind(this)); - this.on('change', this.redraw.bind(this)); - this.on('touch', this._onTouch.bind(this)); - this.on('pinch', this._onPinch.bind(this)); - this.on('dragstart', this._onDragStart.bind(this)); - this.on('drag', this._onDrag.bind(this)); - - // create event listeners for all interesting events, these events will be - // emitted via emitter - this.hammer = Hammer(this.dom.root, { - prevent_default: true - }); - this.listeners = {}; - - var me = this; - var events = [ - 'touch', 'pinch', - 'tap', 'doubletap', 'hold', - 'dragstart', 'drag', 'dragend', - 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox - ]; - events.forEach(function (event) { - var listener = function () { - var args = [event].concat(Array.prototype.slice.call(arguments, 0)); - me.emit.apply(me, args); - }; - me.hammer.on(event, listener); - me.listeners[event] = listener; - }); - - // size properties of each of the panels - this.props = { - root: {}, - background: {}, - centerContainer: {}, - leftContainer: {}, - rightContainer: {}, - center: {}, - left: {}, - right: {}, - top: {}, - bottom: {}, - border: {}, - scrollTop: 0, - scrollTopMin: 0 - }; - this.touch = {}; // store state information needed for touch events - - // attach the root panel to the provided container - if (!container) throw new Error('No container provided'); - container.appendChild(this.dom.root); - }; - - /** - * Destroy the Core, clean up all DOM elements and event listeners. - */ - Core.prototype.destroy = function () { - // unbind datasets - this.clear(); - - // remove all event listeners - this.off(); - - // stop checking for changed size - this._stopAutoResize(); - - // remove from DOM - if (this.dom.root.parentNode) { - this.dom.root.parentNode.removeChild(this.dom.root); - } - this.dom = null; - - // cleanup hammer touch events - for (var event in this.listeners) { - if (this.listeners.hasOwnProperty(event)) { - delete this.listeners[event]; + // much much slower + // var datapoints = this.itemsData.get({ + // filter: function (item) {return item.group === undefined;}, + // showInternalIds:true + // }); + // if (datapoints.length > 0) { + // var updateQuery = []; + // for (var i = 0; i < datapoints.length; i++) { + // updateQuery.push({id:datapoints[i].id, group: UNGROUPED}); + // } + // this.itemsData.update(updateQuery, true); + // } + // var t1 = new Date(); + // var pointInUNGROUPED = this.itemsData.get({filter: function (item) {return item.group == UNGROUPED;}}); + if (ungroupedCounter == 0) { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); } + // console.log("getting amount ungrouped",new Date() - t1); + // console.log("putting in ungrouped",new Date() - t0); + } + else { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); } - this.listeners = null; - this.hammer = null; - - // give all components the opportunity to cleanup - this.components.forEach(function (component) { - component.destroy(); - }); - this.body = null; + this.legendLeft.redraw(); + this.legendRight.redraw(); }; /** - * Set a custom time bar - * @param {Date} time + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized */ - Core.prototype.setCustomTime = function (time) { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); + LineGraph.prototype.redraw = function() { + var resized = false; + + this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; + if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { + resized = true; } + // check if this component is resized + resized = this._isResized() || resized; + // check whether zoomed (in that case we need to re-stack everything) + var visibleInterval = this.body.range.end - this.body.range.start; + var zoomed = (visibleInterval != this.lastVisibleInterval) || (this.width != this.lastWidth); + this.lastVisibleInterval = visibleInterval; + this.lastWidth = this.width; - this.customTime.setCustomTime(time); - }; + // calculate actual size and position + this.width = this.dom.frame.offsetWidth; - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - Core.prototype.getCustomTime = function() { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); + // the svg element is three times as big as the width, this allows for fully dragging left and right + // without reloading the graph. the controls for this are bound to events in the constructor + if (resized == true) { + this.svg.style.width = util.option.asSize(3*this.width); + this.svg.style.left = util.option.asSize(-this.width); + } + if (zoomed == true) { + this._updateGraph(); } - return this.customTime.getCustomTime(); - }; - + this.legendLeft.redraw(); + this.legendRight.redraw(); - /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items - */ - Core.prototype.getVisibleItems = function() { - return this.itemSet && this.itemSet.getVisibleItems() || []; + return resized; }; - - /** - * Clear the Core. By Default, items, groups and options are cleared. - * Example usage: - * - * timeline.clear(); // clear items, groups, and options - * timeline.clear({options: true}); // clear options only + * Update and redraw the graph. * - * @param {Object} [what] Optionally specify what to clear. By default: - * {items: true, groups: true, options: true} */ - Core.prototype.clear = function(what) { - // clear items - if (!what || what.items) { - this.setItems(null); - } - - // clear groups - if (!what || what.groups) { - this.setGroups(null); - } + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); - // clear options of timeline and of each of the components - if (!what || what.options) { - this.components.forEach(function (component) { - component.setOptions(component.defaultOptions); - }); + if (this.width != 0 && this.itemsData != null) { + var group, groupData, preprocessedGroup, i; + var preprocessedGroupData = []; + var processedGroupData = []; + var groupRanges = []; + var changeCalled = false; - this.setOptions(this.defaultOptions); // this will also do a redraw - } - }; + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupIds.push(groupId); + } + } - /** - * Set Core window such that it fits all items - */ - Core.prototype.fit = function() { - // apply the data range as range - var dataRange = this.getItemRange(); + // this is the range of the SVG canvas + var minDate = this.body.util.toGlobalTime(- this.body.domProps.root.width); + var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width); - // add 5% space on both sides - var start = dataRange.min; - var end = dataRange.max; - if (start != null && end != null) { - var interval = (end.valueOf() - start.valueOf()); - if (interval <= 0) { - // prevent an empty interval - interval = 24 * 60 * 60 * 1000; // 1 day - } - start = new Date(start.valueOf() - interval * 0.05); - end = new Date(end.valueOf() + interval * 0.05); - } + // first select and preprocess the data from the datasets. + // the groups have their preselection of data, we now loop over this data to see + // what data we need to draw. Sorted data is much faster. + // more optimization is possible by doing the sampling before and using the binary search + // to find the end date to determine the increment. + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.visible == true) { + groupData = []; + // optimization for sorted data + if (group.options.sort == true) { + var guess = Math.max(0,util.binarySearchGeneric(group.itemsData, minDate, 'x', 'before')); - // skip range set if there is no start and end date - if (start === null && end === null) { - return; + for (var j = guess; j < group.itemsData.length; j++) { + var item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > maxDate) { + groupData.push(item); + break; + } + else { + groupData.push(item); + } + } + } + } + else { + for (var j = 0; j < group.itemsData.length; j++) { + var item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > minDate && item.x < maxDate) { + groupData.push(item); + } + } + } + } + // preprocess, split into ranges and data + if (groupData.length > 0) { + preprocessedGroup = this._preprocessData(groupData, group); + groupRanges.push({min: preprocessedGroup.min, max: preprocessedGroup.max}); + preprocessedGroupData.push(preprocessedGroup.data); + } + else { + groupRanges.push({}); + preprocessedGroupData.push([]); + } + } + else { + groupRanges.push({}); + preprocessedGroupData.push([]); + } + } + + // update the Y axis first, we use this data to draw at the correct Y points + // changeCalled is required to clean the SVG on a change emit. + changeCalled = this._updateYAxis(groupIds, groupRanges); + if (changeCalled == true) { + DOMutil.cleanupElements(this.svgElements); + this.body.emitter.emit("change"); + return; + } + + // with the yAxis scaled correctly, use this to get the Y values of the points. + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + processedGroupData.push(this._convertYvalues(preprocessedGroupData[i],group)) + } + + // draw the groups + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.visible == true) { + if (group.options.style == 'line') { + this._drawLineGraph(processedGroupData[i], group); + } + else { + this._drawBarGraph (processedGroupData[i], group); + } + } + } + } } - this.range.setRange(start, end); + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); }; - /** - * Set the visible window. Both parameters are optional, you can change only - * start or only end. Syntax: - * - * TimeLine.setWindow(start, end) - * TimeLine.setWindow(range) - * - * Where start and end can be a Date, number, or string, and range is an - * object with properties start and end. - * - * @param {Date | Number | String | Object} [start] Start date of visible window - * @param {Date | Number | String} [end] End date of visible window + * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. + * @param {array} groupIds + * @private */ - Core.prototype.setWindow = function(start, end) { - if (arguments.length == 1) { - var range = arguments[0]; - this.range.setRange(range.start, range.end); + LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var changeCalled = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal; + var orientation = 'left'; + + // if groups are present + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + orientation = 'left'; + var group = this.groups[groupIds[i]]; + if (group.visible == true) { + if (group.options.yAxisOrientation == 'right') { + orientation = 'right'; + } + + minVal = groupRanges[i].min; + maxVal = groupRanges[i].max; + + if (orientation == 'left') { + yAxisLeftUsed = true; + minLeft = minLeft > minVal ? minVal : minLeft; + maxLeft = maxLeft < maxVal ? maxVal : maxLeft; + } + else { + yAxisRightUsed = true; + minRight = minRight > minVal ? minVal : minRight; + maxRight = maxRight < maxVal ? maxVal : maxRight; + } + } + } + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } + } + + changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; + changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; + + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; } else { - this.range.setRange(start, end); + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; + } + + this.yAxisRight.master = !yAxisLeftUsed; + + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} + else {this.yAxisLeft.lineOffset = 0;} + + changeCalled = this.yAxisLeft.redraw() || changeCalled; + this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; + changeCalled = this.yAxisRight.redraw() || changeCalled; + } + else { + changeCalled = this.yAxisRight.redraw() || changeCalled; } + return changeCalled; }; /** - * Get the visible window - * @return {{start: Date, end: Date}} Visible range + * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function + * + * @param {boolean} axisUsed + * @returns {boolean} + * @private + * @param axis */ - Core.prototype.getWindow = function() { - var range = this.range.getRange(); - return { - start: new Date(range.start), - end: new Date(range.end) - }; + LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { + var changed = false; + if (axisUsed == false) { + if (axis.dom.frame.parentNode) { + axis.hide(); + changed = true; + } + } + else { + if (!axis.dom.frame.parentNode) { + axis.show(); + changed = true; + } + } + return changed; }; + /** - * Force a redraw of the Core. Can be useful to manually redraw when - * option autoResize=false + * draw a bar graph + * @param datapoints + * @param group */ - Core.prototype.redraw = function() { - var resized = false, - options = this.options, - props = this.props, - dom = this.dom; - - if (!dom) return; // when destroyed - - // update class names - dom.root.className = 'vis timeline root ' + options.orientation; + LineGraph.prototype._drawBarGraph = function (dataset, group) { + if (dataset != null) { + if (dataset.length > 0) { + var coreDistance; + var minWidth = 0.1 * group.options.barChart.width; + var offset = 0; - // update root width and height options - dom.root.style.maxHeight = util.option.asSize(options.maxHeight, ''); - dom.root.style.minHeight = util.option.asSize(options.minHeight, ''); - dom.root.style.width = util.option.asSize(options.width, ''); + // check for intersections + var intersections = {}; - // calculate border widths - props.border.left = (dom.centerContainer.offsetWidth - dom.centerContainer.clientWidth) / 2; - props.border.right = props.border.left; - props.border.top = (dom.centerContainer.offsetHeight - dom.centerContainer.clientHeight) / 2; - props.border.bottom = props.border.top; - var borderRootHeight= dom.root.offsetHeight - dom.root.clientHeight; - var borderRootWidth = dom.root.offsetWidth - dom.root.clientWidth; + for (var i = 0; i < dataset.length; i++) { + if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - dataset[i].x);} + if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - dataset[i].x));} + if (coreDistance == 0) { + if (intersections[dataset[i].x] === undefined) { + intersections[dataset[i].x] = {amount:0, resolved:0}; + } + intersections[dataset[i].x].amount += 1; + } + } - // calculate the heights. If any of the side panels is empty, we set the height to - // minus the border width, such that the border will be invisible - props.center.height = dom.center.offsetHeight; - props.left.height = dom.left.offsetHeight; - props.right.height = dom.right.offsetHeight; - props.top.height = dom.top.clientHeight || -props.border.top; - props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; - - // TODO: compensate borders when any of the panels is empty. + // plot the bargraph + var key; + for (var i = 0; i < dataset.length; i++) { + key = dataset[i].x; + if (intersections[key] === undefined) { + if (i+1 < dataset.length) {coreDistance = Math.abs(dataset[i+1].x - key);} + if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[i-1].x - key));} + var drawData = this._getSafeDrawData(coreDistance, group, minWidth); + } + else { + var nextKey = i + (intersections[key].amount - intersections[key].resolved); + var prevKey = i - (intersections[key].resolved + 1); + if (nextKey < dataset.length) {coreDistance = Math.abs(dataset[nextKey].x - key);} + if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(dataset[prevKey].x - key));} + var drawData = this._getSafeDrawData(coreDistance, group, minWidth); + intersections[key].resolved += 1; - // apply auto height - // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) - var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); - var autoHeight = props.top.height + contentHeight + props.bottom.height + - borderRootHeight + props.border.top + props.border.bottom; - dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); + if (group.options.barChart.allowOverlap == false) { + drawData.width = drawData.width / intersections[key].amount; + drawData.offset += (intersections[key].resolved) * drawData.width - (0.5*drawData.width * (intersections[key].amount+1)); + if (group.options.barChart.align == 'left') {offset -= 0.5*drawData.width;} + else if (group.options.barChart.align == 'right') {offset += 0.5*drawData.width;} + } + } + DOMutil.drawBar(dataset[i].x + drawData.offset, dataset[i].y, drawData.width, group.zeroPosition - dataset[i].y, group.className + ' bar', this.svgElements, this.svg); - // calculate heights of the content panels - props.root.height = dom.root.offsetHeight; - props.background.height = props.root.height - borderRootHeight; - var containerHeight = props.root.height - props.top.height - props.bottom.height - - borderRootHeight; - props.centerContainer.height = containerHeight; - props.leftContainer.height = containerHeight; - props.rightContainer.height = props.leftContainer.height; + // draw points + if (group.options.drawPoints.enabled == true) { + DOMutil.drawPoint(dataset[i].x + drawData.offset, dataset[i].y, group, this.svgElements, this.svg); + } + } + } + } + }; - // calculate the widths of the panels - props.root.width = dom.root.offsetWidth; - props.background.width = props.root.width - borderRootWidth; - props.left.width = dom.leftContainer.clientWidth || -props.border.left; - props.leftContainer.width = props.left.width; - props.right.width = dom.rightContainer.clientWidth || -props.border.right; - props.rightContainer.width = props.right.width; - var centerWidth = props.root.width - props.left.width - props.right.width - borderRootWidth; - props.center.width = centerWidth; - props.centerContainer.width = centerWidth; - props.top.width = centerWidth; - props.bottom.width = centerWidth; + LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; - // resize the panels - dom.background.style.height = props.background.height + 'px'; - dom.backgroundVertical.style.height = props.background.height + 'px'; - dom.backgroundHorizontal.style.height = props.centerContainer.height + 'px'; - dom.centerContainer.style.height = props.centerContainer.height + 'px'; - dom.leftContainer.style.height = props.leftContainer.height + 'px'; - dom.rightContainer.style.height = props.rightContainer.height + 'px'; + offset = 0; // recalculate offset with the new width; + if (group.options.slots) { // recalculate the shared width and offset if these options are set. + width = (width / group.options.slots.total); + offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + } + if (group.options.barChart.align == 'left') {offset -= 0.5*coreDistance;} + else if (group.options.barChart.align == 'right') {offset += 0.5*coreDistance;} + } + else { + // no collisions, plot with default settings + width = group.options.barChart.width; + offset = 0; + if (group.options.slots) { + // if the groups are sharing the same points, this allows them to be plotted side by side + width = width / group.options.slots.total; + offset = group.options.slots.slot * width - (0.5*width * (group.options.slots.total+1)); + } + if (group.options.barChart.align == 'left') {offset -= 0.5*group.options.barChart.width;} + else if (group.options.barChart.align == 'right') {offset += 0.5*group.options.barChart.width;} + } - dom.background.style.width = props.background.width + 'px'; - dom.backgroundVertical.style.width = props.centerContainer.width + 'px'; - dom.backgroundHorizontal.style.width = props.background.width + 'px'; - dom.centerContainer.style.width = props.center.width + 'px'; - dom.top.style.width = props.top.width + 'px'; - dom.bottom.style.width = props.bottom.width + 'px'; + return {width: width, offset: offset}; + } - // reposition the panels - dom.background.style.left = '0'; - dom.background.style.top = '0'; - dom.backgroundVertical.style.left = props.left.width + 'px'; - dom.backgroundVertical.style.top = '0'; - dom.backgroundHorizontal.style.left = '0'; - dom.backgroundHorizontal.style.top = props.top.height + 'px'; - dom.centerContainer.style.left = props.left.width + 'px'; - dom.centerContainer.style.top = props.top.height + 'px'; - dom.leftContainer.style.left = '0'; - dom.leftContainer.style.top = props.top.height + 'px'; - dom.rightContainer.style.left = (props.left.width + props.center.width) + 'px'; - dom.rightContainer.style.top = props.top.height + 'px'; - dom.top.style.left = props.left.width + 'px'; - dom.top.style.top = '0'; - dom.bottom.style.left = props.left.width + 'px'; - dom.bottom.style.top = (props.top.height + props.centerContainer.height) + 'px'; - // update the scrollTop, feasible range for the offset can be changed - // when the height of the Core or of the contents of the center changed - this._updateScrollTop(); + /** + * draw a line graph + * + * @param datapoints + * @param group + */ + LineGraph.prototype._drawLineGraph = function (dataset, group) { + if (dataset != null) { + if (dataset.length > 0) { + var path, d; + var svgHeight = Number(this.svg.style.height.replace("px","")); + path = DOMutil.getSVGElement('path', this.svgElements, this.svg); + path.setAttributeNS(null, "class", group.className); - // reposition the scrollable contents - var offset = this.props.scrollTop; - if (options.orientation == 'bottom') { - offset += Math.max(this.props.centerContainer.height - this.props.center.height - - this.props.border.top - this.props.border.bottom, 0); - } - dom.center.style.left = '0'; - dom.center.style.top = offset + 'px'; - dom.left.style.left = '0'; - dom.left.style.top = offset + 'px'; - dom.right.style.left = '0'; - dom.right.style.top = offset + 'px'; + // construct path from dataset + if (group.options.catmullRom.enabled == true) { + d = this._catmullRom(dataset, group); + } + else { + d = this._linear(dataset); + } - // show shadows when vertical scrolling is available - var visibilityTop = this.props.scrollTop == 0 ? 'hidden' : ''; - var visibilityBottom = this.props.scrollTop == this.props.scrollTopMin ? 'hidden' : ''; - dom.shadowTop.style.visibility = visibilityTop; - dom.shadowBottom.style.visibility = visibilityBottom; - dom.shadowTopLeft.style.visibility = visibilityTop; - dom.shadowBottomLeft.style.visibility = visibilityBottom; - dom.shadowTopRight.style.visibility = visibilityTop; - dom.shadowBottomRight.style.visibility = visibilityBottom; + // append with points for fill and finalize the path + if (group.options.shaded.enabled == true) { + var fillPath = DOMutil.getSVGElement('path',this.svgElements, this.svg); + var dFill; + if (group.options.shaded.orientation == 'top') { + dFill = "M" + dataset[0].x + "," + 0 + " " + d + "L" + dataset[dataset.length - 1].x + "," + 0; + } + else { + dFill = "M" + dataset[0].x + "," + svgHeight + " " + d + "L" + dataset[dataset.length - 1].x + "," + svgHeight; + } + fillPath.setAttributeNS(null, "class", group.className + " fill"); + fillPath.setAttributeNS(null, "d", dFill); + } + // copy properties to path for drawing. + path.setAttributeNS(null, "d", "M" + d); - // redraw all components - this.components.forEach(function (component) { - resized = component.redraw() || resized; - }); - if (resized) { - // keep repainting until all sizes are settled - this.redraw(); + // draw points + if (group.options.drawPoints.enabled == true) { + this._drawPoints(dataset, group, this.svgElements, this.svg); + } + } } }; - // TODO: deprecated since version 1.1.0, remove some day - Core.prototype.repaint = function () { - throw new Error('Function repaint is deprecated. Use redraw instead.'); - }; - /** - * Convert a position on screen (pixels) to a datetime - * @param {int} x Position on the screen in pixels - * @return {Date} time The datetime the corresponds with given position x - * @private + * draw the data points + * + * @param dataset + * @param JSONcontainer + * @param svg + * @param group */ - // TODO: move this function to Range - Core.prototype._toTime = function(x) { - var conversion = this.range.conversion(this.props.center.width); - return new Date(x / conversion.scale + conversion.offset); + LineGraph.prototype._drawPoints = function (dataset, group, JSONcontainer, svg, offset) { + if (offset === undefined) {offset = 0;} + for (var i = 0; i < dataset.length; i++) { + DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, group, JSONcontainer, svg); + } }; - /** - * Convert a position on the global screen (pixels) to a datetime - * @param {int} x Position on the screen in pixels - * @return {Date} time The datetime the corresponds with given position x - * @private - */ - // TODO: move this function to Range - Core.prototype._toGlobalTime = function(x) { - var conversion = this.range.conversion(this.props.root.width); - return new Date(x / conversion.scale + conversion.offset); - }; /** - * Convert a datetime (Date object) into a position on the screen - * @param {Date} time A date - * @return {int} x The position on the screen in pixels which corresponds - * with the given date. + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param datapoints + * @returns {Array} * @private */ - // TODO: move this function to Range - Core.prototype._toScreen = function(time) { - var conversion = this.range.conversion(this.props.center.width); - return (time.valueOf() - conversion.offset) * conversion.scale; - }; + LineGraph.prototype._preprocessData = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; + var increment = 1; + var amountOfPoints = datapoints.length; - /** - * Convert a datetime (Date object) into a position on the root - * This is used to get the pixel density estimate for the screen, not the center panel - * @param {Date} time A date - * @return {int} x The position on root in pixels which corresponds - * with the given date. - * @private - */ - // TODO: move this function to Range - Core.prototype._toGlobalScreen = function(time) { - var conversion = this.range.conversion(this.props.root.width); - return (time.valueOf() - conversion.offset) * conversion.scale; - }; + var yMin = datapoints[0].y; + var yMax = datapoints[0].y; + + // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop + // of width changing of the yAxis. + if (group.options.sampling == true) { + var xDistance = this.body.util.toGlobalScreen(datapoints[datapoints.length-1].x) - this.body.util.toGlobalScreen(datapoints[0].x); + var pointsPerPixel = amountOfPoints/xDistance; + increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1,Math.round(pointsPerPixel))); + } + + for (var i = 0; i < amountOfPoints; i += increment) { + xValue = toScreen(datapoints[i].x) + this.width - 1; + yValue = datapoints[i].y; + extractedData.push({x: xValue, y: yValue}); + yMin = yMin > yValue ? yValue : yMin; + yMax = yMax < yValue ? yValue : yMax; + } + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return {min: yMin, max: yMax, data: extractedData}; + }; /** - * Initialize watching when option autoResize is true + * This uses the DataAxis object to generate the correct Y coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. + * + * @param datapoints + * @param options + * @returns {Array} * @private */ - Core.prototype._initAutoResize = function () { - if (this.options.autoResize == true) { - this._startAutoResize(); + LineGraph.prototype._convertYvalues = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var axis = this.yAxisLeft; + var svgHeight = Number(this.svg.style.height.replace("px","")); + + if (group.options.yAxisOrientation == 'right') { + axis = this.yAxisRight; } - else { - this._stopAutoResize(); + + for (var i = 0; i < datapoints.length; i++) { + xValue = datapoints[i].x; + yValue = Math.round(axis.convertValue(datapoints[i].y)); + extractedData.push({x: xValue, y: yValue}); } + + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return extractedData; }; + /** - * Watch for changes in the size of the container. On resize, the Panel will - * automatically redraw itself. + * This uses an uniform parametrization of the CatmullRom algorithm: + * "On the Parameterization of Catmull-Rom Curves" by Cem Yuksel et al. + * @param data + * @returns {string} * @private */ - Core.prototype._startAutoResize = function () { - var me = this; + LineGraph.prototype._catmullRomUniform = function(data) { + // catmull rom + var p0, p1, p2, p3, bp1, bp2; + var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; + var normalization = 1/6; + var length = data.length; + for (var i = 0; i < length - 1; i++) { - this._stopAutoResize(); + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - this._onResize = function() { - if (me.options.autoResize != true) { - // stop watching when the option autoResize is changed to false - me._stopAutoResize(); - return; - } - if (me.dom.root) { - // check whether the frame is resized - if ((me.dom.root.clientWidth != me.props.lastWidth) || - (me.dom.root.clientHeight != me.props.lastHeight)) { - me.props.lastWidth = me.dom.root.clientWidth; - me.props.lastHeight = me.dom.root.clientHeight; + // Catmull-Rom to Cubic Bezier conversion matrix + // 0 1 0 0 + // -1/6 1 1/6 0 + // 0 1/6 1 -1/6 + // 0 0 1 0 - me.emit('change'); - } - } - }; + // bp0 = { x: p1.x, y: p1.y }; + bp1 = { x: ((-p0.x + 6*p1.x + p2.x) *normalization), y: ((-p0.y + 6*p1.y + p2.y) *normalization)}; + bp2 = { x: (( p1.x + 6*p2.x - p3.x) *normalization), y: (( p1.y + 6*p2.y - p3.y) *normalization)}; + // bp0 = { x: p2.x, y: p2.y }; - // add event listener to window resize - util.addEventListener(window, 'resize', this._onResize); + d += "C" + + bp1.x + "," + + bp1.y + " " + + bp2.x + "," + + bp2.y + " " + + p2.x + "," + + p2.y + " "; + } - this.watchTimer = setInterval(this._onResize, 1000); + return d; }; /** - * Stop watching for a resize of the frame. + * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. + * By default, the centripetal parameterization is used because this gives the nicest results. + * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. + * + * One optimization can be used to reuse distances since this is a sliding window approach. + * @param data + * @returns {string} * @private */ - Core.prototype._stopAutoResize = function () { - if (this.watchTimer) { - clearInterval(this.watchTimer); - this.watchTimer = undefined; + LineGraph.prototype._catmullRom = function(data, group) { + var alpha = group.options.catmullRom.alpha; + if (alpha == 0 || alpha === undefined) { + return this._catmullRomUniform(data); } + else { + var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; + var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; + var d = Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; + var length = data.length; + for (var i = 0; i < length - 1; i++) { - // remove event listener on window.resize - util.removeEventListener(window, 'resize', this._onResize); - this._onResize = null; - }; + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onTouch = function (event) { - this.touch.allowDragging = true; - }; + d1 = Math.sqrt(Math.pow(p0.x - p1.x,2) + Math.pow(p0.y - p1.y,2)); + d2 = Math.sqrt(Math.pow(p1.x - p2.x,2) + Math.pow(p1.y - p2.y,2)); + d3 = Math.sqrt(Math.pow(p2.x - p3.x,2) + Math.pow(p2.y - p3.y,2)); - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onPinch = function (event) { - this.touch.allowDragging = false; - }; + // Catmull-Rom to Cubic Bezier conversion matrix + // + // A = 2d1^2a + 3d1^a * d2^a + d3^2a + // B = 2d3^2a + 3d3^a * d2^a + d2^2a + // + // [ 0 1 0 0 ] + // [ -d2^2a/N A/N d1^2a/N 0 ] + // [ 0 d3^2a/M B/M -d2^2a/M ] + // [ 0 0 1 0 ] - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onDragStart = function (event) { - this.touch.initialScrollTop = this.props.scrollTop; - }; + // [ 0 1 0 0 ] + // [ -d2pow2a/N A/N d1pow2a/N 0 ] + // [ 0 d3pow2a/M B/M -d2pow2a/M ] + // [ 0 0 1 0 ] - /** - * Move the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onDrag = function (event) { - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.touch.allowDragging) return; + d3powA = Math.pow(d3, alpha); + d3pow2A = Math.pow(d3,2*alpha); + d2powA = Math.pow(d2, alpha); + d2pow2A = Math.pow(d2,2*alpha); + d1powA = Math.pow(d1, alpha); + d1pow2A = Math.pow(d1,2*alpha); - var delta = event.gesture.deltaY; + A = 2*d1pow2A + 3*d1powA * d2powA + d2pow2A; + B = 2*d3pow2A + 3*d3powA * d2powA + d2pow2A; + N = 3*d1powA * (d1powA + d2powA); + if (N > 0) {N = 1 / N;} + M = 3*d3powA * (d3powA + d2powA); + if (M > 0) {M = 1 / M;} - var oldScrollTop = this._getScrollTop(); - var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), + y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; - if (newScrollTop != oldScrollTop) { - this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already + bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), + y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; + + if (bp1.x == 0 && bp1.y == 0) {bp1 = p1;} + if (bp2.x == 0 && bp2.y == 0) {bp2 = p2;} + d += "C" + + bp1.x + "," + + bp1.y + " " + + bp2.x + "," + + bp2.y + " " + + p2.x + "," + + p2.y + " "; + } + + return d; } }; /** - * Apply a scrollTop - * @param {Number} scrollTop - * @returns {Number} scrollTop Returns the applied scrollTop + * this generates the SVG path for a linear drawing between datapoints. + * @param data + * @returns {string} * @private */ - Core.prototype._setScrollTop = function (scrollTop) { - this.props.scrollTop = scrollTop; - this._updateScrollTop(); - return this.props.scrollTop; + LineGraph.prototype._linear = function(data) { + // linear + var d = ""; + for (var i = 0; i < data.length; i++) { + if (i == 0) { + d += data[i].x + "," + data[i].y; + } + else { + d += " " + data[i].x + "," + data[i].y; + } + } + return d; }; - /** - * Update the current scrollTop when the height of the containers has been changed - * @returns {Number} scrollTop Returns the applied scrollTop - * @private - */ - Core.prototype._updateScrollTop = function () { - // recalculate the scrollTopMin - var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero - if (scrollTopMin != this.props.scrollTopMin) { - // in case of bottom orientation, change the scrollTop such that the contents - // do not move relative to the time axis at the bottom - if (this.options.orientation == 'bottom') { - this.props.scrollTop += (scrollTopMin - this.props.scrollTopMin); - } - this.props.scrollTopMin = scrollTopMin; - } - - // limit the scrollTop to the feasible scroll range - if (this.props.scrollTop > 0) this.props.scrollTop = 0; - if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; - - return this.props.scrollTop; - }; - - /** - * Get the current scrollTop - * @returns {number} scrollTop - * @private - */ - Core.prototype._getScrollTop = function () { - return this.props.scrollTop; - }; - - module.exports = Core; + module.exports = LineGraph; /***/ }, -/* 43 */ +/* 37 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(41); + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(6); + var Component = __webpack_require__(22); + var DataStep = __webpack_require__(40); /** - * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent - * @param {Element} element - * @param {Event} event + * A horizontal time axis + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @constructor DataAxis + * @extends Component + * @param body */ - exports.fakeGesture = function(element, event) { - var eventType = null; - - // for hammer.js 1.0.5 - // var gesture = Hammer.event.collectEventData(this, eventType, event); - - // for hammer.js 1.0.6+ - var touches = Hammer.event.getTouchList(event, eventType); - var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + function DataAxis (body, options, svg) { + this.id = util.randomUUID(); + this.body = body; - // on IE in standards mode, no touches are recognized by hammer.js, - // resulting in NaN values for center.pageX and center.pageY - if (isNaN(gesture.center.pageX)) { - gesture.center.pageX = event.pageX; - } - if (isNaN(gesture.center.pageY)) { - gesture.center.pageY = event.pageY; - } + this.defaultOptions = { + orientation: 'left', // supported: 'left', 'right' + showMinorLabels: true, + showMajorLabels: true, + icons: true, + majorLinesOffset: 7, + minorLinesOffset: 4, + labelOffsetX: 10, + labelOffsetY: 2, + iconWidth: 20, + width: '40px', + visible: true, + customRange: { + left: {min:undefined, max:undefined}, + right: {min:undefined, max:undefined} + } + }; - return gesture; - }; + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {} + }; + this.dom = {}; -/***/ }, -/* 44 */ -/***/ function(module, exports, __webpack_require__) { + this.range = {start:0, end:0}; - /** - * Canvas shapes used by Network - */ - if (typeof CanvasRenderingContext2D !== 'undefined') { + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; - /** - * Draw a circle shape - */ - CanvasRenderingContext2D.prototype.circle = function(x, y, r) { - this.beginPath(); - this.arc(x, y, r, 0, 2*Math.PI, false); - }; + this.setOptions(options); + this.width = Number(('' + this.options.width).replace("px","")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; - /** - * Draw a square shape - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r size, width and height of the square - */ - CanvasRenderingContext2D.prototype.square = function(x, y, r) { - this.beginPath(); - this.rect(x - r, y - r, r * 2, r * 2); - }; + this.stepPixels = 25; + this.stepPixelsForced = 25; + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; - /** - * Draw a triangle shape - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius, half the length of the sides of the triangle - */ - CanvasRenderingContext2D.prototype.triangle = function(x, y, r) { - // http://en.wikipedia.org/wiki/Equilateral_triangle - this.beginPath(); - var s = r * 2; - var s2 = s / 2; - var ir = Math.sqrt(3) / 6 * s; // radius of inner circle - var h = Math.sqrt(s * s - s2 * s2); // height + this.groups = {}; + this.amountOfGroups = 0; - this.moveTo(x, y - (h - ir)); - this.lineTo(x + s2, y + ir); - this.lineTo(x - s2, y + ir); - this.lineTo(x, y - (h - ir)); - this.closePath(); - }; + // create the HTML DOM + this._create(); + } - /** - * Draw a triangle shape in downward orientation - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius - */ - CanvasRenderingContext2D.prototype.triangleDown = function(x, y, r) { - // http://en.wikipedia.org/wiki/Equilateral_triangle - this.beginPath(); + DataAxis.prototype = new Component(); - var s = r * 2; - var s2 = s / 2; - var ir = Math.sqrt(3) / 6 * s; // radius of inner circle - var h = Math.sqrt(s * s - s2 * s2); // height - this.moveTo(x, y + (h - ir)); - this.lineTo(x + s2, y - ir); - this.lineTo(x - s2, y - ir); - this.lineTo(x, y + (h - ir)); - this.closePath(); - }; - /** - * Draw a star shape, a star with 5 points - * @param {Number} x horizontal center - * @param {Number} y vertical center - * @param {Number} r radius, half the length of the sides of the triangle - */ - CanvasRenderingContext2D.prototype.star = function(x, y, r) { - // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ - this.beginPath(); + DataAxis.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; - for (var n = 0; n < 10; n++) { - var radius = (n % 2 === 0) ? r * 1.3 : r * 0.5; - this.lineTo( - x + radius * Math.sin(n * 2 * Math.PI / 10), - y - radius * Math.cos(n * 2 * Math.PI / 10) - ); - } + DataAxis.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - this.closePath(); - }; + DataAxis.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; - /** - * http://stackoverflow.com/questions/1255512/how-to-draw-a-rounded-rectangle-on-html-canvas - */ - CanvasRenderingContext2D.prototype.roundRect = function(x, y, w, h, r) { - var r2d = Math.PI/180; - if( w - ( 2 * r ) < 0 ) { r = ( w / 2 ); } //ensure that the radius isn't too large for x - if( h - ( 2 * r ) < 0 ) { r = ( h / 2 ); } //ensure that the radius isn't too large for y - this.beginPath(); - this.moveTo(x+r,y); - this.lineTo(x+w-r,y); - this.arc(x+w-r,y+r,r,r2d*270,r2d*360,false); - this.lineTo(x+w,y+h-r); - this.arc(x+w-r,y+h-r,r,0,r2d*90,false); - this.lineTo(x+r,y+h); - this.arc(x+r,y+h-r,r,r2d*90,r2d*180,false); - this.lineTo(x,y+r); - this.arc(x+r,y+r,r,r2d*180,r2d*270,false); - }; - /** - * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas - */ - CanvasRenderingContext2D.prototype.ellipse = function(x, y, w, h) { - var kappa = .5522848, - ox = (w / 2) * kappa, // control point offset horizontal - oy = (h / 2) * kappa, // control point offset vertical - xe = x + w, // x-end - ye = y + h, // y-end - xm = x + w / 2, // x-middle - ym = y + h / 2; // y-middle + DataAxis.prototype.setOptions = function (options) { + if (options) { + var redraw = false; + if (this.options.orientation != options.orientation && options.orientation !== undefined) { + redraw = true; + } + var fields = [ + 'orientation', + 'showMinorLabels', + 'showMajorLabels', + 'icons', + 'majorLinesOffset', + 'minorLinesOffset', + 'labelOffsetX', + 'labelOffsetY', + 'iconWidth', + 'width', + 'visible', + 'customRange' + ]; + util.selectiveExtend(fields, this.options, options); - this.beginPath(); - this.moveTo(x, ym); - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); - }; + this.minWidth = Number(('' + this.options.width).replace("px","")); + if (redraw == true && this.dom.frame) { + this.hide(); + this.show(); + } + } + }; - /** - * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas - */ - CanvasRenderingContext2D.prototype.database = function(x, y, w, h) { - var f = 1/3; - var wEllipse = w; - var hEllipse = h * f; - - var kappa = .5522848, - ox = (wEllipse / 2) * kappa, // control point offset horizontal - oy = (hEllipse / 2) * kappa, // control point offset vertical - xe = x + wEllipse, // x-end - ye = y + hEllipse, // y-end - xm = x + wEllipse / 2, // x-middle - ym = y + hEllipse / 2, // y-middle - ymb = y + (h - hEllipse/2), // y-midlle, bottom ellipse - yeb = y + h; // y-end, bottom ellipse - - this.beginPath(); - this.moveTo(xe, ym); - - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); - - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - - this.lineTo(xe, ymb); - - this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); - this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); - - this.lineTo(x, ym); - }; - + /** + * Create the HTML DOM for the DataAxis + */ + DataAxis.prototype._create = function() { + this.dom.frame = document.createElement('div'); + this.dom.frame.style.width = this.options.width; + this.dom.frame.style.height = this.height; - /** - * Draw an arrow point (no line) - */ - CanvasRenderingContext2D.prototype.arrow = function(x, y, angle, length) { - // tail - var xt = x - length * Math.cos(angle); - var yt = y - length * Math.sin(angle); + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; - // inner tail - // TODO: allow to customize different shapes - var xi = x - length * 0.9 * Math.cos(angle); - var yi = y - length * 0.9 * Math.sin(angle); + // create svg element for graph drawing. + this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.svg.style.position = "absolute"; + this.svg.style.top = '0px'; + this.svg.style.height = '100%'; + this.svg.style.width = '100%'; + this.svg.style.display = "block"; + this.dom.frame.appendChild(this.svg); + }; - // left - var xl = xt + length / 3 * Math.cos(angle + 0.5 * Math.PI); - var yl = yt + length / 3 * Math.sin(angle + 0.5 * Math.PI); + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); - // right - var xr = xt + length / 3 * Math.cos(angle - 0.5 * Math.PI); - var yr = yt + length / 3 * Math.sin(angle - 0.5 * Math.PI); + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; - this.beginPath(); - this.moveTo(x, y); - this.lineTo(xl, yl); - this.lineTo(xi, yi); - this.lineTo(xr, yr); - this.closePath(); - }; + if (this.options.orientation == 'left') { + x = iconOffset; + } + else { + x = this.width - iconWidth - iconOffset; + } - /** - * Sets up the dashedLine functionality for drawing - * Original code came from http://stackoverflow.com/questions/4576724/dotted-stroke-in-canvas - * @author David Jordan - * @date 2012-08-08 - */ - CanvasRenderingContext2D.prototype.dashedLine = function(x,y,x2,y2,dashArray){ - if (!dashArray) dashArray=[10,5]; - if (dashLength==0) dashLength = 0.001; // Hack for Safari - var dashCount = dashArray.length; - this.moveTo(x, y); - var dx = (x2-x), dy = (y2-y); - var slope = dy/dx; - var distRemaining = Math.sqrt( dx*dx + dy*dy ); - var dashIndex=0, draw=true; - while (distRemaining>=0.1){ - var dashLength = dashArray[dashIndex++%dashCount]; - if (dashLength > distRemaining) dashLength = distRemaining; - var xStep = Math.sqrt( dashLength*dashLength / (1 + slope*slope) ); - if (dx<0) xStep = -xStep; - x += xStep; - y += slope*xStep; - this[draw ? 'lineTo' : 'moveTo'](x,y); - distRemaining -= dashLength; - draw = !draw; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + iconOffset; + } } - }; - - // TODO: add diamond shape - } - - -/***/ }, -/* 45 */ -/***/ function(module, exports, __webpack_require__) { + } - var PhysicsMixin = __webpack_require__(56); - var ClusterMixin = __webpack_require__(50); - var SectorsMixin = __webpack_require__(51); - var SelectionMixin = __webpack_require__(52); - var ManipulationMixin = __webpack_require__(53); - var NavigationMixin = __webpack_require__(54); - var HierarchicalLayoutMixin = __webpack_require__(55); + DOMutil.cleanupElements(this.svgElements); + }; /** - * Load a mixin into the network object - * - * @param {Object} sourceVariable | this object has to contain functions. - * @private + * Create the HTML DOM for the DataAxis */ - exports._loadMixin = function (sourceVariable) { - for (var mixinFunction in sourceVariable) { - if (sourceVariable.hasOwnProperty(mixinFunction)) { - this[mixinFunction] = sourceVariable[mixinFunction]; + DataAxis.prototype.show = function() { + if (!this.dom.frame.parentNode) { + if (this.options.orientation == 'left') { + this.body.dom.left.appendChild(this.dom.frame); + } + else { + this.body.dom.right.appendChild(this.dom.frame); } } - }; - - /** - * removes a mixin from the network object. - * - * @param {Object} sourceVariable | this object has to contain functions. - * @private - */ - exports._clearMixin = function (sourceVariable) { - for (var mixinFunction in sourceVariable) { - if (sourceVariable.hasOwnProperty(mixinFunction)) { - this[mixinFunction] = undefined; - } + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); } }; - /** - * Mixin the physics system and initialize the parameters required. - * - * @private + * Create the HTML DOM for the DataAxis */ - exports._loadPhysicsSystem = function () { - this._loadMixin(PhysicsMixin); - this._loadSelectedForceSolver(); - if (this.constants.configurePhysics == true) { - this._loadPhysicsConfiguration(); + DataAxis.prototype.hide = function() { + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); } - }; + if (this.dom.lineContainer.parentNode) { + this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); + } + }; /** - * Mixin the cluster system and initialize the parameters required. - * - * @private + * Set a range (start and end) + * @param end + * @param start + * @param end */ - exports._loadClusterSystem = function () { - this.clusterSession = 0; - this.hubThreshold = 5; - this._loadMixin(ClusterMixin); + DataAxis.prototype.setRange = function (start, end) { + this.range.start = start; + this.range.end = end; }; - /** - * Mixin the sector system and initialize the parameters required - * - * @private + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - exports._loadSectorSystem = function () { - this.sectors = {}; - this.activeSector = ["default"]; - this.sectors["active"] = {}; - this.sectors["active"]["default"] = {"nodes": {}, - "edges": {}, - "nodeIndices": [], - "formationScale": 1.0, - "drawingNode": undefined }; - this.sectors["frozen"] = {}; - this.sectors["support"] = {"nodes": {}, - "edges": {}, - "nodeIndices": [], - "formationScale": 1.0, - "drawingNode": undefined }; - - this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields + DataAxis.prototype.redraw = function () { + var changeCalled = false; + var activeGroups = 0; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + activeGroups++; + } + } + } + if (this.amountOfGroups == 0 || activeGroups == 0) { + this.hide(); + } + else { + this.show(); + this.height = Number(this.linegraphSVG.style.height.replace("px","")); + // svg offsetheight did not work in firefox and explorer... - this._loadMixin(SectorsMixin); - }; + this.dom.lineContainer.style.height = this.height + 'px'; + this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; + var props = this.props; + var frame = this.dom.frame; - /** - * Mixin the selection system and initialize the parameters required - * - * @private - */ - exports._loadSelectionSystem = function () { - this.selectionObj = {nodes: {}, edges: {}}; + // update classname + frame.className = 'dataaxis'; - this._loadMixin(SelectionMixin); - }; + // calculate character width and height + this._calculateCharSize(); + var orientation = this.options.orientation; + 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.minorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; + props.minorLineHeight = 1; + props.majorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; + props.majorLineHeight = 1; + + // take frame offline while updating (is almost twice as fast) + if (orientation == 'left') { + frame.style.top = '0'; + frame.style.left = '0'; + frame.style.bottom = ''; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + } + else { // right + frame.style.top = ''; + frame.style.bottom = '0'; + frame.style.left = '0'; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + } + changeCalled = this._redrawLabels(); + if (this.options.icons == true) { + this._redrawGroupIcons(); + } + } + return changeCalled; + }; /** - * Mixin the navigationUI (User Interface) system and initialize the parameters required - * + * Repaint major and minor text labels and vertical grid lines * @private */ - exports._loadManipulationSystem = function () { - // reset global variables -- these are used by the selection of nodes and edges. - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; + DataAxis.prototype._redrawLabels = function () { + DOMutil.prepareElements(this.DOMelements.lines); + DOMutil.prepareElements(this.DOMelements.labels); - if (this.constants.dataManipulation.enabled == true) { - // load the manipulator HTML elements. All styling done in css. - if (this.manipulationDiv === undefined) { - this.manipulationDiv = document.createElement('div'); - this.manipulationDiv.className = 'network-manipulationDiv'; - this.manipulationDiv.id = 'network-manipulationDiv'; - if (this.editMode == true) { - this.manipulationDiv.style.display = "block"; - } - else { - this.manipulationDiv.style.display = "none"; - } - this.containerElement.insertBefore(this.manipulationDiv, this.frame); + var orientation = this.options['orientation']; + + // calculate range and step (step such that we have space for 7 characters per label) + var minimumStep = this.master ? this.props.majorCharHeight || 10 : this.stepPixelsForced; + var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight, this.options.customRange[this.options.orientation]); + this.step = step; + // get the distance in pixels for a step + // dead space is space that is "left over" after a step + var stepPixels = (this.dom.frame.offsetHeight - (step.deadSpace * (this.dom.frame.offsetHeight / step.marginRange))) / (((step.marginRange - step.deadSpace) / step.step)); + this.stepPixels = stepPixels; + + var amountOfSteps = this.height / stepPixels; + var stepDifference = 0; + + if (this.master == false) { + stepPixels = this.stepPixelsForced; + stepDifference = Math.round((this.dom.frame.offsetHeight / stepPixels) - amountOfSteps); + for (var i = 0; i < 0.5 * stepDifference; i++) { + step.previous(); } + amountOfSteps = this.height / stepPixels; + } + else { + amountOfSteps += 0.25; + } - if (this.editModeDiv === undefined) { - this.editModeDiv = document.createElement('div'); - this.editModeDiv.className = 'network-manipulation-editMode'; - this.editModeDiv.id = 'network-manipulation-editMode'; - if (this.editMode == true) { - this.editModeDiv.style.display = "none"; - } - else { - this.editModeDiv.style.display = "block"; - } - this.containerElement.insertBefore(this.editModeDiv, this.frame); + + this.valueAtZero = step.marginEnd; + var marginStartPos = 0; + + // do not draw the first label + var max = 1; + + this.maxLabelSize = 0; + var y = 0; + while (max < Math.round(amountOfSteps)) { + step.next(); + y = Math.round(max * stepPixels); + marginStartPos = max * stepPixels; + var isMajor = step.isMajor(); + + if (this.options['showMinorLabels'] && isMajor == false || this.master == false && this.options['showMinorLabels'] == true) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis minor', this.props.minorCharHeight); } - if (this.closeDiv === undefined) { - this.closeDiv = document.createElement('div'); - this.closeDiv.className = 'network-manipulation-closeDiv'; - this.closeDiv.id = 'network-manipulation-closeDiv'; - this.closeDiv.style.display = this.manipulationDiv.style.display; - this.containerElement.insertBefore(this.closeDiv, this.frame); + if (isMajor && this.options['showMajorLabels'] && this.master == true || + this.options['showMinorLabels'] == false && this.master == false && isMajor == true) { + if (y >= 0) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'yAxis major', this.props.majorCharHeight); + } + this._redrawLine(y, orientation, 'grid horizontal major', this.options.majorLinesOffset, this.props.majorLineWidth); + } + else { + this._redrawLine(y, orientation, 'grid horizontal minor', this.options.minorLinesOffset, this.props.minorLineWidth); } - // load the manipulation functions - this._loadMixin(ManipulationMixin); + max++; + } - // create the manipulator toolbar - this._createManipulatorBar(); + if (this.master == false) { + this.conversionFactor = y / (this.valueAtZero - step.current); } else { - if (this.manipulationDiv !== undefined) { - // removes all the bindings and overloads - this._createManipulatorBar(); - // remove the manipulation divs - this.containerElement.removeChild(this.manipulationDiv); - this.containerElement.removeChild(this.editModeDiv); - this.containerElement.removeChild(this.closeDiv); + this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; + } - this.manipulationDiv = undefined; - this.editModeDiv = undefined; - this.closeDiv = undefined; - // remove the mixin functions - this._clearMixin(ManipulationMixin); - } + var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; + // this will resize the yAxis to accomodate the labels. + if (this.maxLabelSize > (this.width - offset) && this.options.visible == true) { + this.width = this.maxLabelSize + offset; + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + return true; + } + // this will resize the yAxis if it is too big for the labels. + else if (this.maxLabelSize < (this.width - offset) && this.options.visible == true && this.width > this.minWidth) { + this.width = Math.max(this.minWidth,this.maxLabelSize + offset); + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + return true; + } + else { + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + return false; } }; + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; + }; /** - * Mixin the navigation (User Interface) system and initialize the parameters required - * + * Create a label for the axis at position x * @private + * @param y + * @param text + * @param orientation + * @param className + * @param characterHeight */ - exports._loadNavigationControls = function () { - this._loadMixin(NavigationMixin); + DataAxis.prototype._redrawLabel = function (y, text, orientation, className, characterHeight) { + // reuse redundant label + var label = DOMutil.getDOMElement('div',this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift(); + label.className = className; + label.innerHTML = text; + if (orientation == 'left') { + label.style.left = '-' + this.options.labelOffsetX + 'px'; + label.style.textAlign = "right"; + } + else { + label.style.right = '-' + this.options.labelOffsetX + 'px'; + label.style.textAlign = "left"; + } - // the clean function removes the button divs, this is done to remove the bindings. - this._cleanNavigation(); - if (this.constants.navigation.enabled == true) { - this._loadNavigationElements(); + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; + + text += ''; + + var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; } }; - /** - * Mixin the hierarchical layout system. - * - * @private + * Create a minor line for the axis at position y + * @param y + * @param orientation + * @param className + * @param offset + * @param width */ - exports._loadHierarchySystem = function () { - this._loadMixin(HierarchicalLayoutMixin); - }; + DataAxis.prototype._redrawLine = function (y, orientation, className, offset, width) { + if (this.master == true) { + var line = DOMutil.getDOMElement('div',this.DOMelements.lines, this.dom.lineContainer);//this.dom.redundant.lines.shift(); + line.className = className; + line.innerHTML = ''; + if (orientation == 'left') { + line.style.left = (this.width - offset) + 'px'; + } + else { + line.style.right = (this.width - offset) + 'px'; + } -/***/ }, -/* 46 */ -/***/ function(module, exports, __webpack_require__) { + line.style.width = width + 'px'; + line.style.top = y + 'px'; + } + }; - - /** - * Expose `Emitter`. - */ - module.exports = Emitter; - /** - * Initialize a new `Emitter`. - * - * @api public - */ - function Emitter(obj) { - if (obj) return mixin(obj); - }; /** - * Mixin the emitter properties. - * - * @param {Object} obj - * @return {Object} - * @api private + * 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 */ + DataAxis.prototype._calculateCharSize = function () { + // determine the char width and height on the minor axis + if (!('minorCharHeight' in this.props)) { + var textMinor = document.createTextNode('0'); + var measureCharMinor = document.createElement('DIV'); + measureCharMinor.className = 'yAxis minor measure'; + measureCharMinor.appendChild(textMinor); + this.dom.frame.appendChild(measureCharMinor); - function mixin(obj) { - for (var key in Emitter.prototype) { - obj[key] = Emitter.prototype[key]; - } - return obj; - } - - /** - * Listen on the given `event` with `fn`. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; - Emitter.prototype.on = - Emitter.prototype.addEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - (this._callbacks[event] = this._callbacks[event] || []) - .push(fn); - return this; - }; + this.dom.frame.removeChild(measureCharMinor); + } - /** - * Adds an `event` listener that will be invoked a single - * time then automatically removed. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ + if (!('majorCharHeight' in this.props)) { + var textMajor = document.createTextNode('0'); + var measureCharMajor = document.createElement('DIV'); + measureCharMajor.className = 'yAxis major measure'; + measureCharMajor.appendChild(textMajor); + this.dom.frame.appendChild(measureCharMajor); - Emitter.prototype.once = function(event, fn){ - var self = this; - this._callbacks = this._callbacks || {}; + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; - function on() { - self.off(event, on); - fn.apply(this, arguments); + this.dom.frame.removeChild(measureCharMajor); } - - on.fn = fn; - this.on(event, on); - return this; }; /** - * Remove the given callback for `event` or all - * registered callbacks. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ + DataAxis.prototype.snap = function(date) { + return this.step.snap(date); + }; - Emitter.prototype.off = - Emitter.prototype.removeListener = - Emitter.prototype.removeAllListeners = - Emitter.prototype.removeEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; + module.exports = DataAxis; - // all - if (0 == arguments.length) { - this._callbacks = {}; - return this; - } - // specific event - var callbacks = this._callbacks[event]; - if (!callbacks) return this; +/***/ }, +/* 38 */ +/***/ function(module, exports, __webpack_require__) { - // remove all handlers - if (1 == arguments.length) { - delete this._callbacks[event]; - return this; + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(6); + + /** + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function GraphGroup (group, groupId, options, groupsUsingDefaultStyles) { + this.id = groupId; + var fields = ['sampling','style','sort','yAxisOrientation','barChart','drawPoints','shaded','catmullRom','slots'] + this.options = util.selectiveBridgeObject(fields,options); + this.usingDefaultStyle = group.className === undefined; + this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; + this.zeroPosition = 0; + this.update(group); + if (this.usingDefaultStyle == true) { + this.groupsUsingDefaultStyles[0] += 1; } + this.itemsData = []; + this.visible = group.visible === undefined ? true : group.visible; + } - // remove specific handler - var cb; - for (var i = 0; i < callbacks.length; i++) { - cb = callbacks[i]; - if (cb === fn || cb.fn === fn) { - callbacks.splice(i, 1); - break; + GraphGroup.prototype.setItems = function(items) { + if (items != null) { + this.itemsData = items; + if (this.options.sort == true) { + this.itemsData.sort(function (a,b) {return a.x - b.x;}) } } - return this; + else { + this.itemsData = []; + } }; - /** - * Emit `event` with the given args. - * - * @param {String} event - * @param {Mixed} ... - * @return {Emitter} - */ + GraphGroup.prototype.setZeroPosition = function(pos) { + this.zeroPosition = pos; + }; - Emitter.prototype.emit = function(event){ - this._callbacks = this._callbacks || {}; - var args = [].slice.call(arguments, 1) - , callbacks = this._callbacks[event]; + GraphGroup.prototype.setOptions = function(options) { + if (options !== undefined) { + var fields = ['sampling','style','sort','yAxisOrientation','barChart','slots']; + util.selectiveDeepExtend(fields, this.options, options); - if (callbacks) { - callbacks = callbacks.slice(0); - for (var i = 0, len = callbacks.length; i < len; ++i) { - callbacks[i].apply(this, args); + util.mergeOptions(this.options, options,'catmullRom'); + util.mergeOptions(this.options, options,'drawPoints'); + util.mergeOptions(this.options, options,'shaded'); + + if (options.catmullRom) { + if (typeof options.catmullRom == 'object') { + if (options.catmullRom.parametrization) { + if (options.catmullRom.parametrization == 'uniform') { + this.options.catmullRom.alpha = 0; + } + else if (options.catmullRom.parametrization == 'chordal') { + this.options.catmullRom.alpha = 1.0; + } + else { + this.options.catmullRom.parametrization = 'centripetal'; + this.options.catmullRom.alpha = 0.5; + } + } + } } } + }; - return this; + GraphGroup.prototype.update = function(group) { + this.group = group; + this.content = group.content || 'graph'; + this.className = group.className || this.className || "graphGroup" + this.groupsUsingDefaultStyles[0] % 10; + this.visible = group.visible === undefined ? true : group.visible; + this.setOptions(group.options); }; - /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public - */ + GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks[event] || []; + var outline = DOMutil.getSVGElement("rect", JSONcontainer, SVGcontainer); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2*fillHeight); + outline.setAttributeNS(null, "class", "outline"); + + if (this.options.style == 'line') { + path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + path.setAttributeNS(null, "class", this.className); + path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + iconWidth) + ","+y+""); + if (this.options.shaded.enabled == true) { + fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + if (this.options.shaded.orientation == 'top') { + fillPath.setAttributeNS(null, "d", "M"+x+", " + (y - fillHeight) + + "L"+x+","+y+" L"+ (x + iconWidth) + ","+y+" L"+ (x + iconWidth) + "," + (y - fillHeight)); + } + else { + fillPath.setAttributeNS(null, "d", "M"+x+","+y+" " + + "L"+x+"," + (y + fillHeight) + " " + + "L"+ (x + iconWidth) + "," + (y + fillHeight) + + "L"+ (x + iconWidth) + ","+y); + } + fillPath.setAttributeNS(null, "class", this.className + " iconFill"); + } + + if (this.options.drawPoints.enabled == true) { + DOMutil.drawPoint(x + 0.5 * iconWidth,y, this, JSONcontainer, SVGcontainer); + } + } + else { + var barWidth = Math.round(0.3 * iconWidth); + var bar1Height = Math.round(0.4 * iconHeight); + var bar2Height = Math.round(0.75 * iconHeight); + + var offset = Math.round((iconWidth - (2 * barWidth))/3); + + DOMutil.drawBar(x + 0.5*barWidth + offset , y + fillHeight - bar1Height - 1, barWidth, bar1Height, this.className + ' bar', JSONcontainer, SVGcontainer); + DOMutil.drawBar(x + 1.5*barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, this.className + ' bar', JSONcontainer, SVGcontainer); + } }; /** - * Check if this emitter has `event` handlers. * - * @param {String} event - * @return {Boolean} - * @api public + * @param iconWidth + * @param iconHeight + * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} */ + GraphGroup.prototype.getLegend = function(iconWidth, iconHeight) { + var svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.drawIcon(0,0.5*iconHeight,[],svg,iconWidth,iconHeight); + return {icon: svg, label: this.content, orientation:this.options.yAxisOrientation}; + } - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; - }; + module.exports = GraphGroup; /***/ }, -/* 47 */ +/* 39 */ /***/ function(module, exports, __webpack_require__) { - var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js - //! version : 2.7.0 - //! authors : Tim Wood, Iskren Chernev, Moment.js contributors - //! license : MIT - //! momentjs.com - - (function (undefined) { + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(6); + var Component = __webpack_require__(22); - /************************************ - Constants - ************************************/ + /** + * Legend for Graph2d + */ + function Legend(body, options, side) { + this.body = body; + this.defaultOptions = { + enabled: true, + icons: true, + iconSize: 20, + iconSpacing: 6, + left: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + }, + right: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + } + } + this.side = side; + this.options = util.extend({},this.defaultOptions); - var moment, - VERSION = "2.7.0", - // the global-scope this is NOT the global object in Node.js - globalScope = typeof global !== 'undefined' ? global : this, - oldGlobalMoment, - round = Math.round, - i, + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); - YEAR = 0, - MONTH = 1, - DATE = 2, - HOUR = 3, - MINUTE = 4, - SECOND = 5, - MILLISECOND = 6, + this.setOptions(options); + } - // internal storage for language config files - languages = {}, + Legend.prototype = new Component(); - // moment internal properties - momentProperties = { - _isAMomentObject: null, - _i : null, - _f : null, - _l : null, - _strict : null, - _tzm : null, - _isUTC : null, - _offset : null, // optional. Combine with _isUTC - _pf : null, - _lang : null // optional - }, - // check for nodeJS - hasModule = (typeof module !== 'undefined' && module.exports), + Legend.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; - // ASP.NET json date format regex - aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, - aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, + Legend.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html - // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere - isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/, + Legend.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; - // format tokens - formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g, - localFormattingTokens = /(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g, + Legend.prototype._create = function() { + this.dom.frame = document.createElement('div'); + this.dom.frame.className = 'legend'; + this.dom.frame.style.position = "absolute"; + this.dom.frame.style.top = "10px"; + this.dom.frame.style.display = "block"; - // parsing token regexes - parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99 - parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999 - parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999 - parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999 - parseTokenDigits = /\d+/, // nonzero number of digits - parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic. - parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z - parseTokenT = /T/i, // T (ISO separator) - parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 - parseTokenOrdinal = /\d{1,2}/, + this.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'legendText'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; - //strict parsing regexes - parseTokenOneDigit = /\d/, // 0 - 9 - parseTokenTwoDigits = /\d\d/, // 00 - 99 - parseTokenThreeDigits = /\d{3}/, // 000 - 999 - parseTokenFourDigits = /\d{4}/, // 0000 - 9999 - parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999 - parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf + this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); + this.svg.style.position = 'absolute'; + this.svg.style.top = 0 +'px'; + this.svg.style.width = this.options.iconSize + 5 + 'px'; - // iso 8601 regex - // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) - isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/, + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); + }; - isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', + /** + * Hide the component from the DOM + */ + Legend.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; - isoDates = [ - ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/], - ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/], - ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/], - ['GGGG-[W]WW', /\d{4}-W\d{2}/], - ['YYYY-DDD', /\d{4}-\d{3}/] - ], + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + Legend.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + }; - // iso time formats and regexes - isoTimes = [ - ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/], - ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/], - ['HH:mm', /(T| )\d\d:\d\d/], - ['HH', /(T| )\d\d/] - ], + Legend.prototype.setOptions = function(options) { + var fields = ['enabled','orientation','icons','left','right']; + util.selectiveDeepExtend(fields, this.options, options); + }; - // timezone chunker "+10:00" > ["10", "00"] or "-1530" > ["-15", "30"] - parseTimezoneChunker = /([\+\-]|\d\d)/gi, + Legend.prototype.redraw = function() { + var activeGroups = 0; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + activeGroups++; + } + } + } - // getter and setter names - proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'), - unitMillisecondFactors = { - 'Milliseconds' : 1, - 'Seconds' : 1e3, - 'Minutes' : 6e4, - 'Hours' : 36e5, - 'Days' : 864e5, - 'Months' : 2592e6, - 'Years' : 31536e6 - }, + if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { + this.hide(); + } + else { + this.show(); + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'bottom-left') { + this.dom.frame.style.left = '4px'; + this.dom.frame.style.textAlign = "left"; + this.dom.textArea.style.textAlign = "left"; + this.dom.textArea.style.left = (this.options.iconSize + 15) + 'px'; + this.dom.textArea.style.right = ''; + this.svg.style.left = 0 +'px'; + this.svg.style.right = ''; + } + else { + this.dom.frame.style.right = '4px'; + this.dom.frame.style.textAlign = "right"; + this.dom.textArea.style.textAlign = "right"; + this.dom.textArea.style.right = (this.options.iconSize + 15) + 'px'; + this.dom.textArea.style.left = ''; + this.svg.style.right = 0 +'px'; + this.svg.style.left = ''; + } - unitAliases = { - ms : 'millisecond', - s : 'second', - m : 'minute', - h : 'hour', - d : 'day', - D : 'date', - w : 'week', - W : 'isoWeek', - M : 'month', - Q : 'quarter', - y : 'year', - DDD : 'dayOfYear', - e : 'weekday', - E : 'isoWeekday', - gg: 'weekYear', - GG: 'isoWeekYear' - }, + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { + this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; + this.dom.frame.style.bottom = ''; + } + else { + this.dom.frame.style.bottom = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; + this.dom.frame.style.top = ''; + } - camelFunctions = { - dayofyear : 'dayOfYear', - isoweekday : 'isoWeekday', - isoweek : 'isoWeek', - weekyear : 'weekYear', - isoweekyear : 'isoWeekYear' - }, + if (this.options.icons == false) { + this.dom.frame.style.width = this.dom.textArea.offsetWidth + 10 + 'px'; + this.dom.textArea.style.right = ''; + this.dom.textArea.style.left = ''; + this.svg.style.width = '0px'; + } + else { + this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px' + this.drawLegendIcons(); + } - // format function strings - formatFunctions = {}, + var content = ''; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + content += this.groups[groupId].content + '
'; + } + } + } + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = ((0.75 * this.options.iconSize) + this.options.iconSpacing) + 'px'; + } + }; + + Legend.prototype.drawLegendIcons = function() { + if (this.dom.frame.parentNode) { + DOMutil.prepareElements(this.svgElements); + var padding = window.getComputedStyle(this.dom.frame).paddingTop; + var iconOffset = Number(padding.replace('px','')); + var x = iconOffset; + var iconWidth = this.options.iconSize; + var iconHeight = 0.75 * this.options.iconSize; + var y = iconOffset + 0.5 * iconHeight + 3; + + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + this.options.iconSpacing; + } + } + } + + DOMutil.cleanupElements(this.svgElements); + } + }; + + module.exports = Legend; + + +/***/ }, +/* 40 */ +/***/ function(module, exports, __webpack_require__) { + + /** + * @constructor DataStep + * The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an + * end data point. The class itself determines the best scale (step size) based on the + * provided start Date, end Date, and minimumStep. + * + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The DataStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + function DataStep(start, end, minimumStep, containerHeight, customRange) { + // variables + this.current = 0; + + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 1; + + this.marginStart; + this.marginEnd; + this.deadSpace = 0; + + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + + this.setRange(start, end, minimumStep, containerHeight, customRange); + } + + + + /** + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Number} [start] The start date and time. + * @param {Number} [end] The end date and time. + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, customRange) { + this._start = customRange.min === undefined ? start : customRange.min; + this._end = customRange.max === undefined ? end : customRange.max; + + if (start == end) { + this._start = start - 0.75; + this._end = end + 1; + } + + if (this.autoScale) { + this.setMinimumStep(minimumStep, containerHeight); + } + this.setFirst(customRange); + }; + + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds + */ + DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { + // round to floor + var size = this._end - this._start; + var safeSize = size * 1.2; + var minimumStepValue = minimumStep * (safeSize / containerHeight); + var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); + + var minorStepIdx = -1; + var magnitudefactor = Math.pow(10,orderOfMagnitude); + + var start = 0; + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; + } + + var solutionFound = false; + for (var i = start; Math.abs(i) <= Math.abs(orderOfMagnitude); i++) { + magnitudefactor = Math.pow(10,i); + for (var j = 0; j < this.minorSteps.length; j++) { + var stepSize = magnitudefactor * this.minorSteps[j]; + if (stepSize >= minimumStepValue) { + solutionFound = true; + minorStepIdx = j; + break; + } + } + if (solutionFound == true) { + break; + } + } + this.stepIndex = minorStepIdx; + this.scale = magnitudefactor; + this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + }; + + + + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + DataStep.prototype.setFirst = function(customRange) { + if (customRange === undefined) { + customRange = {}; + } + var niceStart = customRange.min === undefined ? this._start - (this.scale * 2 * this.minorSteps[this.stepIndex]) : customRange.min; + var niceEnd = customRange.max === undefined ? this._end + (this.scale * this.minorSteps[this.stepIndex]) : customRange.max; + + this.marginEnd = customRange.max === undefined ? this.roundToMinor(niceEnd) : customRange.max; + this.marginStart = customRange.min === undefined ? this.roundToMinor(niceStart) : customRange.min; + this.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; + this.marginRange = this.marginEnd - this.marginStart; + + this.current = this.marginEnd; + + }; + + DataStep.prototype.roundToMinor = function(value) { + var rounded = value - (value % (this.scale * this.minorSteps[this.stepIndex])); + if (value % (this.scale * this.minorSteps[this.stepIndex]) > 0.5 * (this.scale * this.minorSteps[this.stepIndex])) { + return rounded + (this.scale * this.minorSteps[this.stepIndex]); + } + else { + return rounded; + } + } + + + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + DataStep.prototype.hasNext = function () { + return (this.current >= this.marginStart); + }; + + /** + * Do the next step + */ + DataStep.prototype.next = function() { + var prev = this.current; + this.current -= this.step; + + // safety mechanism: if current time is still unchanged, move to the end + if (this.current == prev) { + this.current = this._end; + } + }; + + /** + * Do the next step + */ + DataStep.prototype.previous = function() { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; + }; + + + + /** + * Get the current datetime + * @return {String} current The current date + */ + DataStep.prototype.getCurrent = function() { + var toPrecision = '' + Number(this.current).toPrecision(5); + for (var i = toPrecision.length-1; i > 0; i--) { + if (toPrecision[i] == "0") { + toPrecision = toPrecision.slice(0,i); + } + else if (toPrecision[i] == "." || toPrecision[i] == ",") { + toPrecision = toPrecision.slice(0,i); + break; + } + else{ + break; + } + } + + return toPrecision; + }; + + + + /** + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate + */ + DataStep.prototype.snap = function(date) { + + }; + + /** + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. + */ + DataStep.prototype.isMajor = function() { + return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); + }; + + module.exports = DataStep; + + +/***/ }, +/* 41 */ +/***/ function(module, exports, __webpack_require__) { + + var Emitter = __webpack_require__(10); + var Hammer = __webpack_require__(18); + var mousetrap = __webpack_require__(42); + var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(21); + var DataSet = __webpack_require__(7); + var DataView = __webpack_require__(8); + var dotparser = __webpack_require__(43); + var gephiParser = __webpack_require__(44); + var Groups = __webpack_require__(45); + var Images = __webpack_require__(46); + var Node = __webpack_require__(47); + var Edge = __webpack_require__(48); + var Popup = __webpack_require__(49); + var MixinLoader = __webpack_require__(50); + + // Load custom shapes into CanvasRenderingContext2D + __webpack_require__(61); + + /** + * @constructor Network + * Create a network visualization, displaying nodes and edges. + * + * @param {Element} container The DOM element in which the Network will + * be created. Normally a div element. + * @param {Object} data An object containing parameters + * {Array} nodes + * {Array} edges + * @param {Object} options Options + */ + function Network (container, data, options) { + if (!(this instanceof Network)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } + + this._initializeMixinLoaders(); - // default relative time thresholds - relativeTimeThresholds = { - s: 45, //seconds to minutes - m: 45, //minutes to hours - h: 22, //hours to days - dd: 25, //days to month (month == 1) - dm: 45, //days to months (months > 1) - dy: 345 //days to year - }, + // create variables and set default values + this.containerElement = container; - // tokens to ordinalize and pad - ordinalizeTokens = 'DDD w W M D d'.split(' '), - paddedTokens = 'M D H h m s w W'.split(' '), + // render and calculation settings + this.renderRefreshRate = 60; // hz (fps) + this.renderTimestep = 1000 / this.renderRefreshRate; // ms -- saves calculation later on + this.renderTime = 0.5 * this.renderTimestep; // measured time it takes to render a frame + this.maxPhysicsTicksPerRender = 3; // max amount of physics ticks per render step. + this.physicsDiscreteStepsize = 0.50; // discrete stepsize of the simulation - formatTokenFunctions = { - M : function () { - return this.month() + 1; - }, - MMM : function (format) { - return this.lang().monthsShort(this, format); - }, - MMMM : function (format) { - return this.lang().months(this, format); - }, - D : function () { - return this.date(); - }, - DDD : function () { - return this.dayOfYear(); - }, - d : function () { - return this.day(); - }, - dd : function (format) { - return this.lang().weekdaysMin(this, format); - }, - ddd : function (format) { - return this.lang().weekdaysShort(this, format); - }, - dddd : function (format) { - return this.lang().weekdays(this, format); - }, - w : function () { - return this.week(); - }, - W : function () { - return this.isoWeek(); - }, - YY : function () { - return leftZeroFill(this.year() % 100, 2); - }, - YYYY : function () { - return leftZeroFill(this.year(), 4); - }, - YYYYY : function () { - return leftZeroFill(this.year(), 5); - }, - YYYYYY : function () { - var y = this.year(), sign = y >= 0 ? '+' : '-'; - return sign + leftZeroFill(Math.abs(y), 6); - }, - gg : function () { - return leftZeroFill(this.weekYear() % 100, 2); - }, - gggg : function () { - return leftZeroFill(this.weekYear(), 4); - }, - ggggg : function () { - return leftZeroFill(this.weekYear(), 5); - }, - GG : function () { - return leftZeroFill(this.isoWeekYear() % 100, 2); - }, - GGGG : function () { - return leftZeroFill(this.isoWeekYear(), 4); - }, - GGGGG : function () { - return leftZeroFill(this.isoWeekYear(), 5); - }, - e : function () { - return this.weekday(); - }, - E : function () { - return this.isoWeekday(); - }, - a : function () { - return this.lang().meridiem(this.hours(), this.minutes(), true); - }, - A : function () { - return this.lang().meridiem(this.hours(), this.minutes(), false); - }, - H : function () { - return this.hours(); - }, - h : function () { - return this.hours() % 12 || 12; - }, - m : function () { - return this.minutes(); - }, - s : function () { - return this.seconds(); - }, - S : function () { - return toInt(this.milliseconds() / 100); - }, - SS : function () { - return leftZeroFill(toInt(this.milliseconds() / 10), 2); - }, - SSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - SSSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - Z : function () { - var a = -this.zone(), - b = "+"; - if (a < 0) { - a = -a; - b = "-"; - } - return b + leftZeroFill(toInt(a / 60), 2) + ":" + leftZeroFill(toInt(a) % 60, 2); - }, - ZZ : function () { - var a = -this.zone(), - b = "+"; - if (a < 0) { - a = -a; - b = "-"; - } - return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); - }, - z : function () { - return this.zoneAbbr(); - }, - zz : function () { - return this.zoneName(); - }, - X : function () { - return this.unix(); - }, - Q : function () { - return this.quarter(); - } + this.initializing = true; + + this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; + + // set constant values + this.defaultOptions = { + nodes: { + mass: 1, + radiusMin: 10, + radiusMax: 30, + radius: 10, + shape: 'ellipse', + image: undefined, + widthMin: 16, // px + widthMax: 64, // px + fixed: false, + fontColor: 'black', + fontSize: 14, // px + fontFace: 'verdana', + level: -1, + color: { + border: '#2B7CE9', + background: '#97C2FC', + highlight: { + border: '#2B7CE9', + background: '#D2E5FF' }, + hover: { + border: '#2B7CE9', + background: '#D2E5FF' + } + }, + borderColor: '#2B7CE9', + backgroundColor: '#97C2FC', + highlightColor: '#D2E5FF', + group: undefined, + borderWidth: 1 + }, + edges: { + widthMin: 1, + widthMax: 15, + width: 1, + widthSelectionMultiplier: 2, + hoverWidth: 1.5, + style: 'line', + color: { + color:'#848484', + highlight:'#848484', + hover: '#848484' + }, + fontColor: '#343434', + fontSize: 14, // px + fontFace: 'arial', + fontFill: 'white', + arrowScaleFactor: 1, + dash: { + length: 10, + gap: 5, + altLength: undefined + }, + inheritColor: "from" // to, from, false, true (== from) + }, + configurePhysics:false, + physics: { + barnesHut: { + enabled: true, + theta: 1 / 0.6, // inverted to save time during calculation + gravitationalConstant: -2000, + centralGravity: 0.3, + springLength: 95, + springConstant: 0.04, + damping: 0.09 + }, + repulsion: { + centralGravity: 0.0, + springLength: 200, + springConstant: 0.05, + nodeDistance: 100, + damping: 0.09 + }, + hierarchicalRepulsion: { + enabled: false, + centralGravity: 0.0, + springLength: 100, + springConstant: 0.01, + nodeDistance: 150, + damping: 0.09 + }, + damping: null, + centralGravity: null, + springLength: null, + springConstant: null + }, + clustering: { // Per Node in Cluster = PNiC + enabled: false, // (Boolean) | global on/off switch for clustering. + initialMaxNodes: 100, // (# nodes) | if the initial amount of nodes is larger than this, we cluster until the total number is less than this threshold. + clusterThreshold:500, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than this. If it is, cluster until reduced to reduceToNodes + reduceToNodes:300, // (# nodes) | during calculate forces, we check if the total number of nodes is larger than clusterThreshold. If it is, cluster until reduced to this + chainThreshold: 0.4, // (% of all drawn nodes)| maximum percentage of allowed chainnodes (long strings of connected nodes) within all nodes. (lower means less chains). + clusterEdgeThreshold: 20, // (px) | edge length threshold. if smaller, this node is clustered. + sectorThreshold: 100, // (# nodes in cluster) | cluster size threshold. If larger, expanding in own sector. + screenSizeThreshold: 0.2, // (% of canvas) | relative size threshold. If the width or height of a clusternode takes up this much of the screen, decluster node. + fontSizeMultiplier: 4.0, // (px PNiC) | how much the cluster font size grows per node in cluster (in px). + maxFontSize: 1000, + forceAmplification: 0.1, // (multiplier PNiC) | factor of increase fo the repulsion force of a cluster (per node in cluster). + distanceAmplification: 0.1, // (multiplier PNiC) | factor how much the repulsion distance of a cluster increases (per node in cluster). + edgeGrowth: 20, // (px PNiC) | amount of clusterSize connected to the edge is multiplied with this and added to edgeLength. + nodeScaling: {width: 1, // (px PNiC) | growth of the width per node in cluster. + height: 1, // (px PNiC) | growth of the height per node in cluster. + radius: 1}, // (px PNiC) | growth of the radius per node in cluster. + maxNodeSizeIncrements: 600, // (# increments) | max growth of the width per node in cluster. + activeAreaBoxSize: 80, // (px) | box area around the curser where clusters are popped open. + clusterLevelDifference: 2 + }, + navigation: { + enabled: false + }, + keyboard: { + enabled: false, + speed: {x: 10, y: 10, zoom: 0.02} + }, + dataManipulation: { + enabled: false, + initiallyVisible: false + }, + hierarchicalLayout: { + enabled:false, + levelSeparation: 150, + nodeSpacing: 100, + direction: "UD" // UD, DU, LR, RL + }, + freezeForStabilization: false, + smoothCurves: { + enabled: true, + dynamic: true, + type: "continuous", + roundness: 0.5 + }, + dynamicSmoothCurves: true, + maxVelocity: 30, + minVelocity: 0.1, // px/s + stabilize: true, // stabilize before displaying the network + stabilizationIterations: 1000, // maximum number of iteration to stabilize + labels:{ + add:"Add Node", + edit:"Edit", + link:"Add Link", + del:"Delete selected", + editNode:"Edit Node", + editEdge:"Edit Edge", + back:"Back", + addDescription:"Click in an empty space to place a new node.", + linkDescription:"Click on a node and drag the edge to another node to connect them.", + editEdgeDescription:"Click on the control points and drag them to a node to connect to it.", + addError:"The function for add does not support two arguments (data,callback).", + linkError:"The function for connect does not support two arguments (data,callback).", + editError:"The function for edit does not support two arguments (data, callback).", + editBoundError:"No edit function has been bound to this button.", + deleteError:"The function for delete does not support two arguments (data, callback).", + deleteClusterError:"Clusters cannot be deleted." + }, + tooltip: { + delay: 300, + fontColor: 'black', + fontSize: 14, // px + fontFace: 'verdana', + color: { + border: '#666', + background: '#FFFFC6' + } + }, + dragNetwork: true, + dragNodes: true, + zoomable: true, + hover: false, + hideEdgesOnDrag: false, + hideNodesOnDrag: false, + width : '100%', + height : '100%', + selectable: true + }; + this.constants = util.extend({}, this.defaultOptions); - lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; + this.hoverObj = {nodes:{},edges:{}}; + this.controlNodesActive = false; - // Pick the first defined of two or three arguments. dfl comes from - // default. - function dfl(a, b, c) { - switch (arguments.length) { - case 2: return a != null ? a : b; - case 3: return a != null ? a : b != null ? b : c; - default: throw new Error("Implement me"); - } - } + // Node variables + var network = this; + this.groups = new Groups(); // object with groups + this.images = new Images(); // object with images + this.images.setOnloadCallback(function () { + network._redraw(); + }); - function defaultParsingFlags() { - // We need to deep clone this object, and es5 standard is not very - // helpful. - return { - empty : false, - unusedTokens : [], - unusedInput : [], - overflow : -2, - charsLeftOver : 0, - nullInput : false, - invalidMonth : null, - invalidFormat : false, - userInvalidated : false, - iso: false - }; - } + // keyboard navigation variables + this.xIncrement = 0; + this.yIncrement = 0; + this.zoomIncrement = 0; - function deprecate(msg, fn) { - var firstTime = true; - function printMsg() { - if (moment.suppressDeprecationWarnings === false && - typeof console !== 'undefined' && console.warn) { - console.warn("Deprecation warning: " + msg); - } - } - return extend(function () { - if (firstTime) { - printMsg(); - firstTime = false; - } - return fn.apply(this, arguments); - }, fn); - } + // loading all the mixins: + // load the force calculation functions, grouped under the physics system. + this._loadPhysicsSystem(); + // create a frame and canvas + this._create(); + // load the sector system. (mandatory, fully integrated with Network) + this._loadSectorSystem(); + // load the cluster system. (mandatory, even when not using the cluster system, there are function calls to it) + this._loadClusterSystem(); + // load the selection system. (mandatory, required by Network) + this._loadSelectionSystem(); + // load the selection system. (mandatory, required by Network) + this._loadHierarchySystem(); - function padToken(func, count) { - return function (a) { - return leftZeroFill(func.call(this, a), count); - }; - } - function ordinalizeToken(func, period) { - return function (a) { - return this.lang().ordinal(func.call(this, a), period); - }; - } + // apply options + this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); + this._setScale(1); + this.setOptions(options); - while (ordinalizeTokens.length) { - i = ordinalizeTokens.pop(); - formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); - } - while (paddedTokens.length) { - i = paddedTokens.pop(); - formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); - } - formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); + // other vars + this.freezeSimulation = false;// freeze the simulation + this.cachedFunctions = {}; + // containers for nodes and edges + this.calculationNodes = {}; + this.calculationNodeIndices = []; + this.nodeIndices = []; // array with all the indices of the nodes. Used to speed up forces calculation + this.nodes = {}; // object with Node objects + this.edges = {}; // object with Edge objects - /************************************ - Constructors - ************************************/ + // position and scale variables and objects + this.canvasTopLeft = {"x": 0,"y": 0}; // coordinates of the top left of the canvas. they will be set during _redraw. + this.canvasBottomRight = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw + this.pointerPosition = {"x": 0,"y": 0}; // coordinates of the bottom right of the canvas. they will be set during _redraw + this.areaCenter = {}; // object with x and y elements used for determining the center of the zoom action + this.scale = 1; // defining the global scale variable in the constructor + this.previousScale = this.scale; // this is used to check if the zoom operation is zooming in or out - function Language() { + // datasets or dataviews + this.nodesData = null; // A DataSet or DataView + this.edgesData = null; // A DataSet or DataView + // create event listeners used to subscribe on the DataSets of the nodes and edges + this.nodesListeners = { + 'add': function (event, params) { + network._addNodes(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateNodes(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeNodes(params.items); + network.start(); } - - // Moment prototype object - function Moment(config) { - checkOverflow(config); - extend(this, config); + }; + this.edgesListeners = { + 'add': function (event, params) { + network._addEdges(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateEdges(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeEdges(params.items); + network.start(); } + }; - // Duration Constructor - function Duration(duration) { - var normalizedInput = normalizeObjectUnits(duration), - years = normalizedInput.year || 0, - quarters = normalizedInput.quarter || 0, - months = normalizedInput.month || 0, - weeks = normalizedInput.week || 0, - days = normalizedInput.day || 0, - hours = normalizedInput.hour || 0, - minutes = normalizedInput.minute || 0, - seconds = normalizedInput.second || 0, - milliseconds = normalizedInput.millisecond || 0; - - // representation for dateAddRemove - this._milliseconds = +milliseconds + - seconds * 1e3 + // 1000 - minutes * 6e4 + // 1000 * 60 - hours * 36e5; // 1000 * 60 * 60 - // Because of dateAddRemove treats 24 hours as different from a - // day when working around DST, we need to store them separately - this._days = +days + - weeks * 7; - // It is impossible translate months into days without knowing - // which months you are are talking about, so we have to store - // it separately. - this._months = +months + - quarters * 3 + - years * 12; + // properties for the animation + this.moving = true; + this.timer = undefined; // Scheduling function. Is definded in this.start(); - this._data = {}; + // load data (the disable start variable will be the same as the enabled clustering) + this.setData(data,this.constants.clustering.enabled || this.constants.hierarchicalLayout.enabled); - this._bubble(); + // hierarchical layout + this.initializing = false; + if (this.constants.hierarchicalLayout.enabled == true) { + this._setupHierarchicalLayout(); + } + else { + // zoom so all data will fit on the screen, if clustering is enabled, we do not want start to be called here. + if (this.constants.stabilize == false) { + this.zoomExtent(true,this.constants.clustering.enabled); } + } - /************************************ - Helpers - ************************************/ + // if clustering is disabled, the simulation will have started in the setData function + if (this.constants.clustering.enabled) { + this.startWithClustering(); + } + } + // Extend Network with an Emitter mixin + Emitter(Network.prototype); - function extend(a, b) { - for (var i in b) { - if (b.hasOwnProperty(i)) { - a[i] = b[i]; - } - } + /** + * Get the script path where the vis.js library is located + * + * @returns {string | null} path Path or null when not found. Path does not + * end with a slash. + * @private + */ + Network.prototype._getScriptPath = function() { + var scripts = document.getElementsByTagName( 'script' ); - if (b.hasOwnProperty("toString")) { - a.toString = b.toString; - } + // find script named vis.js or vis.min.js + for (var i = 0; i < scripts.length; i++) { + var src = scripts[i].src; + var match = src && /\/?vis(.min)?\.js$/.exec(src); + if (match) { + // return path without the script name + return src.substring(0, src.length - match[0].length); + } + } - if (b.hasOwnProperty("valueOf")) { - a.valueOf = b.valueOf; - } + return null; + }; - return a; + + /** + * Find the center position of the network + * @private + */ + Network.prototype._getRange = function() { + var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (minX > (node.x)) {minX = node.x;} + if (maxX < (node.x)) {maxX = node.x;} + if (minY > (node.y)) {minY = node.y;} + if (maxY < (node.y)) {maxY = node.y;} } + } + if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { + minY = 0, maxY = 0, minX = 0, maxX = 0; + } + return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + }; - function cloneMoment(m) { - var result = {}, i; - for (i in m) { - if (m.hasOwnProperty(i) && momentProperties.hasOwnProperty(i)) { - result[i] = m[i]; - } - } - return result; - } + /** + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} + * @private + */ + Network.prototype._findCenter = function(range) { + return {x: (0.5 * (range.maxX + range.minX)), + y: (0.5 * (range.maxY + range.minY))}; + }; - function absRound(number) { - if (number < 0) { - return Math.ceil(number); - } else { - return Math.floor(number); - } - } - // left zero fill a number - // see http://jsperf.com/left-zero-filling for performance comparison - function leftZeroFill(number, targetLength, forceSign) { - var output = '' + Math.abs(number), - sign = number >= 0; + /** + * center the network + * + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + */ + Network.prototype._centerNetwork = function(range) { + var center = this._findCenter(range); - while (output.length < targetLength) { - output = '0' + output; - } - return (sign ? (forceSign ? '+' : '') : '-') + output; - } + center.x *= this.scale; + center.y *= this.scale; + center.x -= 0.5 * this.frame.canvas.clientWidth; + center.y -= 0.5 * this.frame.canvas.clientHeight; - // helper function for _.addTime and _.subtractTime - function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { - var milliseconds = duration._milliseconds, - days = duration._days, - months = duration._months; - updateOffset = updateOffset == null ? true : updateOffset; + this._setTranslation(-center.x,-center.y); // set at 0,0 + }; - if (milliseconds) { - mom._d.setTime(+mom._d + milliseconds * isAdding); - } - if (days) { - rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); - } - if (months) { - rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); - } - if (updateOffset) { - moment.updateOffset(mom, days || months); - } - } - // check if is an array - function isArray(input) { - return Object.prototype.toString.call(input) === '[object Array]'; - } + /** + * This function zooms out to fit all data on screen based on amount of nodes + * + * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; + * @param {Boolean} [disableStart] | If true, start is not called. + */ + Network.prototype.zoomExtent = function(initialZoom, disableStart) { + if (initialZoom === undefined) { + initialZoom = false; + } + if (disableStart === undefined) { + disableStart = false; + } - function isDate(input) { - return Object.prototype.toString.call(input) === '[object Date]' || - input instanceof Date; - } + var range = this._getRange(); + var zoomLevel; - // compare two arrays, return the number of differences - function compareArrays(array1, array2, dontConvert) { - var len = Math.min(array1.length, array2.length), - lengthDiff = Math.abs(array1.length - array2.length), - diffs = 0, - i; - for (i = 0; i < len; i++) { - if ((dontConvert && array1[i] !== array2[i]) || - (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { - diffs++; - } - } - return diffs + lengthDiff; + if (initialZoom == true) { + var numberOfNodes = this.nodeIndices.length; + if (this.constants.smoothCurves == true) { + if (this.constants.clustering.enabled == true && + numberOfNodes >= this.constants.clustering.initialMaxNodes) { + zoomLevel = 49.07548 / (numberOfNodes + 142.05338) + 9.1444e-04; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + else { + zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } } - - function normalizeUnits(units) { - if (units) { - var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); - units = unitAliases[units] || camelFunctions[lowered] || lowered; - } - return units; + else { + if (this.constants.clustering.enabled == true && + numberOfNodes >= this.constants.clustering.initialMaxNodes) { + zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + else { + zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } } - function normalizeObjectUnits(inputObject) { - var normalizedInput = {}, - normalizedProp, - prop; - - for (prop in inputObject) { - if (inputObject.hasOwnProperty(prop)) { - normalizedProp = normalizeUnits(prop); - if (normalizedProp) { - normalizedInput[normalizedProp] = inputObject[prop]; - } - } - } + // correct for larger canvasses. + var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); + zoomLevel *= factor; + } + else { + var xDistance = (Math.abs(range.minX) + Math.abs(range.maxX)) * 1.1; + var yDistance = (Math.abs(range.minY) + Math.abs(range.maxY)) * 1.1; - return normalizedInput; - } + var xZoomLevel = this.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.frame.canvas.clientHeight / yDistance; - function makeList(field) { - var count, setter; + zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; + } - if (field.indexOf('week') === 0) { - count = 7; - setter = 'day'; - } - else if (field.indexOf('month') === 0) { - count = 12; - setter = 'month'; - } - else { - return; - } + if (zoomLevel > 1.0) { + zoomLevel = 1.0; + } - moment[field] = function (format, index) { - var i, getter, - method = moment.fn._lang[field], - results = []; - if (typeof format === 'number') { - index = format; - format = undefined; - } + this._setScale(zoomLevel); + this._centerNetwork(range); + if (disableStart == false) { + this.moving = true; + this.start(); + } + }; - getter = function (i) { - var m = moment().utc().set(setter, i); - return method.call(moment.fn._lang, m, format || ''); - }; - if (index != null) { - return getter(index); - } - else { - for (i = 0; i < count; i++) { - results.push(getter(i)); - } - return results; - } - }; + /** + * Update the this.nodeIndices with the most recent node index list + * @private + */ + Network.prototype._updateNodeIndexList = function() { + this._clearNodeIndexList(); + for (var idx in this.nodes) { + if (this.nodes.hasOwnProperty(idx)) { + this.nodeIndices.push(idx); } + } + }; - function toInt(argumentForCoercion) { - var coercedNumber = +argumentForCoercion, - value = 0; - if (coercedNumber !== 0 && isFinite(coercedNumber)) { - if (coercedNumber >= 0) { - value = Math.floor(coercedNumber); - } else { - value = Math.ceil(coercedNumber); - } - } + /** + * Set nodes and edges, and optionally options as well. + * + * @param {Object} data Object containing parameters: + * {Array | DataSet | DataView} [nodes] Array with nodes + * {Array | DataSet | DataView} [edges] Array with edges + * {String} [dot] String containing data in DOT format + * {String} [gephi] String containing data in gephi JSON format + * {Options} [options] Object with options + * @param {Boolean} [disableStart] | optional: disable the calling of the start function. + */ + Network.prototype.setData = function(data, disableStart) { + if (disableStart === undefined) { + disableStart = false; + } - return value; - } + if (data && data.dot && (data.nodes || data.edges)) { + throw new SyntaxError('Data must contain either parameter "dot" or ' + + ' parameter pair "nodes" and "edges", but not both.'); + } - function daysInMonth(year, month) { - return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); - } + // set options + this.setOptions(data && data.options); - function weeksInYear(year, dow, doy) { - return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + // set all data + if (data && data.dot) { + // parse DOT file + if(data && data.dot) { + var dotData = dotparser.DOTToGraph(data.dot); + this.setData(dotData); + return; } - - function daysInYear(year) { - return isLeapYear(year) ? 366 : 365; + } + else if (data && data.gephi) { + // parse DOT file + if(data && data.gephi) { + var gephiData = gephiParser.parseGephi(data.gephi); + this.setData(gephiData); + return; } + } + else { + this._setNodes(data && data.nodes); + this._setEdges(data && data.edges); + } - function isLeapYear(year) { - return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + this._putDataInSector(); + if (!disableStart) { + // find a stable position or start animating to a stable position + if (this.constants.stabilize) { + var me = this; + setTimeout(function() {me._stabilize(); me.start();},0) + } + else { + this.start(); } + } + }; - function checkOverflow(m) { - var overflow; - if (m._a && m._pf.overflow === -2) { - overflow = - m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : - m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : - m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : - m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : - m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : - m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : - -1; + /** + * Set options + * @param {Object} options + * @param {Boolean} [initializeView] | set zoom and translation to default. + */ + Network.prototype.setOptions = function (options) { + if (options) { + var prop; - if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { - overflow = DATE; - } + var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', + 'onAdd','onEdit','onEditEdge','onConnect','onDelete' + ]; + util.selectiveNotDeepExtend(fields,this.constants, options); + util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); + util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); - m._pf.overflow = overflow; + if (options.physics) { + util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); + util.mergeOptions(this.constants.physics, options.physics,'repulsion'); + + if (options.physics.hierarchicalRepulsion) { + this.constants.hierarchicalLayout.enabled = true; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this.constants.physics.barnesHut.enabled = false; + for (prop in options.physics.hierarchicalRepulsion) { + if (options.physics.hierarchicalRepulsion.hasOwnProperty(prop)) { + this.constants.physics.hierarchicalRepulsion[prop] = options.physics.hierarchicalRepulsion[prop]; + } } + } } - function isValid(m) { - if (m._isValid == null) { - m._isValid = !isNaN(m._d.getTime()) && - m._pf.overflow < 0 && - !m._pf.empty && - !m._pf.invalidMonth && - !m._pf.nullInput && - !m._pf.invalidFormat && - !m._pf.userInvalidated; + if (options.onAdd) {this.triggerFunctions.add = options.onAdd;} + if (options.onEdit) {this.triggerFunctions.edit = options.onEdit;} + if (options.onEditEdge) {this.triggerFunctions.editEdge = options.onEditEdge;} + if (options.onConnect) {this.triggerFunctions.connect = options.onConnect;} + if (options.onDelete) {this.triggerFunctions.del = options.onDelete;} - if (m._strict) { - m._isValid = m._isValid && - m._pf.charsLeftOver === 0 && - m._pf.unusedTokens.length === 0; - } - } - return m._isValid; - } + util.mergeOptions(this.constants, options,'smoothCurves'); + util.mergeOptions(this.constants, options,'hierarchicalLayout'); + util.mergeOptions(this.constants, options,'clustering'); + util.mergeOptions(this.constants, options,'navigation'); + util.mergeOptions(this.constants, options,'keyboard'); + util.mergeOptions(this.constants, options,'dataManipulation'); - function normalizeLanguage(key) { - return key ? key.toLowerCase().replace('_', '-') : key; - } - // Return a moment from input, that is local/utc/zone equivalent to model. - function makeAs(input, model) { - return model._isUTC ? moment(input).zone(model._offset || 0) : - moment(input).local(); + if (options.dataManipulation) { + this.editMode = this.constants.dataManipulation.initiallyVisible; } - /************************************ - Languages - ************************************/ + // TODO: work out these options and document them + if (options.edges) { + if (options.edges.color !== undefined) { + if (util.isString(options.edges.color)) { + this.constants.edges.color = {}; + this.constants.edges.color.color = options.edges.color; + this.constants.edges.color.highlight = options.edges.color; + this.constants.edges.color.hover = options.edges.color; + } + else { + if (options.edges.color.color !== undefined) {this.constants.edges.color.color = options.edges.color.color;} + if (options.edges.color.highlight !== undefined) {this.constants.edges.color.highlight = options.edges.color.highlight;} + if (options.edges.color.hover !== undefined) {this.constants.edges.color.hover = options.edges.color.hover;} + } + } - extend(Language.prototype, { + if (!options.edges.fontColor) { + if (options.edges.color !== undefined) { + if (util.isString(options.edges.color)) {this.constants.edges.fontColor = options.edges.color;} + else if (options.edges.color.color !== undefined) {this.constants.edges.fontColor = options.edges.color.color;} + } + } + } - set : function (config) { - var prop, i; - for (i in config) { - prop = config[i]; - if (typeof prop === 'function') { - this[i] = prop; - } else { - this['_' + i] = prop; - } - } - }, + if (options.nodes) { + if (options.nodes.color) { + var newColorObj = util.parseColor(options.nodes.color); + this.constants.nodes.color.background = newColorObj.background; + this.constants.nodes.color.border = newColorObj.border; + this.constants.nodes.color.highlight.background = newColorObj.highlight.background; + this.constants.nodes.color.highlight.border = newColorObj.highlight.border; + this.constants.nodes.color.hover.background = newColorObj.hover.background; + this.constants.nodes.color.hover.border = newColorObj.hover.border; + } + } + if (options.groups) { + for (var groupname in options.groups) { + if (options.groups.hasOwnProperty(groupname)) { + var group = options.groups[groupname]; + this.groups.add(groupname, group); + } + } + } - _months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), - months : function (m) { - return this._months[m.month()]; - }, + if (options.tooltip) { + for (prop in options.tooltip) { + if (options.tooltip.hasOwnProperty(prop)) { + this.constants.tooltip[prop] = options.tooltip[prop]; + } + } + if (options.tooltip.color) { + this.constants.tooltip.color = util.parseColor(options.tooltip.color); + } + } + } - _monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), - monthsShort : function (m) { - return this._monthsShort[m.month()]; - }, + // (Re)loading the mixins that can be enabled or disabled in the options. + // load the force calculation functions, grouped under the physics system. + this._loadPhysicsSystem(); + // load the navigation system. + this._loadNavigationControls(); + // load the data manipulation system + this._loadManipulationSystem(); + // configure the smooth curves + this._configureSmoothCurves(); - monthsParse : function (monthName) { - var i, mom, regex; - if (!this._monthsParse) { - this._monthsParse = []; - } + // bind keys. If disabled, this will not do anything; + this._createKeyBinds(); + this.setSize(this.constants.width, this.constants.height); + this.moving = true; + this.start(); - for (i = 0; i < 12; i++) { - // make the regex if we don't have it already - if (!this._monthsParse[i]) { - mom = moment.utc([2000, i]); - regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); - this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (this._monthsParse[i].test(monthName)) { - return i; - } - } - }, + }; - _weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), - weekdays : function (m) { - return this._weekdays[m.day()]; - }, + /** + * Create the main frame for the Network. + * This function is executed once when a Network object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + * @private + */ + Network.prototype._create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } - _weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), - weekdaysShort : function (m) { - return this._weekdaysShort[m.day()]; - }, + this.frame = document.createElement('div'); + this.frame.className = 'network-frame'; + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - _weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), - weekdaysMin : function (m) { - return this._weekdaysMin[m.day()]; - }, + // create the network canvas (HTML canvas element) + this.frame.canvas = document.createElement( 'canvas' ); + this.frame.canvas.style.position = 'relative'; + this.frame.appendChild(this.frame.canvas); + if (!this.frame.canvas.getContext) { + var noCanvas = document.createElement( 'DIV' ); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold' ; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.frame.canvas.appendChild(noCanvas); + } - weekdaysParse : function (weekdayName) { - var i, mom, regex; + var me = this; + this.drag = {}; + this.pinch = {}; + this.hammer = Hammer(this.frame.canvas, { + prevent_default: true + }); + this.hammer.on('tap', me._onTap.bind(me) ); + this.hammer.on('doubletap', me._onDoubleTap.bind(me) ); + this.hammer.on('hold', me._onHold.bind(me) ); + this.hammer.on('pinch', me._onPinch.bind(me) ); + this.hammer.on('touch', me._onTouch.bind(me) ); + this.hammer.on('dragstart', me._onDragStart.bind(me) ); + this.hammer.on('drag', me._onDrag.bind(me) ); + this.hammer.on('dragend', me._onDragEnd.bind(me) ); + this.hammer.on('release', me._onRelease.bind(me) ); + this.hammer.on('mousewheel',me._onMouseWheel.bind(me) ); + this.hammer.on('DOMMouseScroll',me._onMouseWheel.bind(me) ); // for FF + this.hammer.on('mousemove', me._onMouseMoveTitle.bind(me) ); - if (!this._weekdaysParse) { - this._weekdaysParse = []; - } + // add the frame to the container element + this.containerElement.appendChild(this.frame); - for (i = 0; i < 7; i++) { - // make the regex if we don't have it already - if (!this._weekdaysParse[i]) { - mom = moment([2000, 1]).day(i); - regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); - this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (this._weekdaysParse[i].test(weekdayName)) { - return i; - } - } - }, + }; - _longDateFormat : { - LT : "h:mm A", - L : "MM/DD/YYYY", - LL : "MMMM D YYYY", - LLL : "MMMM D YYYY LT", - LLLL : "dddd, MMMM D YYYY LT" - }, - longDateFormat : function (key) { - var output = this._longDateFormat[key]; - if (!output && this._longDateFormat[key.toUpperCase()]) { - output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { - return val.slice(1); - }); - this._longDateFormat[key] = output; - } - return output; - }, - isPM : function (input) { - // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays - // Using charAt should be more compatible. - return ((input + '').toLowerCase().charAt(0) === 'p'); - }, + /** + * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin + * @private + */ + Network.prototype._createKeyBinds = function() { + var me = this; + this.mousetrap = mousetrap; - _meridiemParse : /[ap]\.?m?\.?/i, - meridiem : function (hours, minutes, isLower) { - if (hours > 11) { - return isLower ? 'pm' : 'PM'; - } else { - return isLower ? 'am' : 'AM'; - } - }, + this.mousetrap.reset(); - _calendar : { - sameDay : '[Today at] LT', - nextDay : '[Tomorrow at] LT', - nextWeek : 'dddd [at] LT', - lastDay : '[Yesterday at] LT', - lastWeek : '[Last] dddd [at] LT', - sameElse : 'L' - }, - calendar : function (key, mom) { - var output = this._calendar[key]; - return typeof output === 'function' ? output.apply(mom) : output; - }, + if (this.constants.keyboard.enabled == true) { + this.mousetrap.bind("up", this._moveUp.bind(me) , "keydown"); + this.mousetrap.bind("up", this._yStopMoving.bind(me), "keyup"); + this.mousetrap.bind("down", this._moveDown.bind(me) , "keydown"); + this.mousetrap.bind("down", this._yStopMoving.bind(me), "keyup"); + this.mousetrap.bind("left", this._moveLeft.bind(me) , "keydown"); + this.mousetrap.bind("left", this._xStopMoving.bind(me), "keyup"); + this.mousetrap.bind("right",this._moveRight.bind(me), "keydown"); + this.mousetrap.bind("right",this._xStopMoving.bind(me), "keyup"); + this.mousetrap.bind("=", this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("=", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("-", this._zoomOut.bind(me), "keydown"); + this.mousetrap.bind("-", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("[", this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("[", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("]", this._zoomOut.bind(me), "keydown"); + this.mousetrap.bind("]", this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("pageup",this._zoomIn.bind(me), "keydown"); + this.mousetrap.bind("pageup",this._stopZoom.bind(me), "keyup"); + this.mousetrap.bind("pagedown",this._zoomOut.bind(me),"keydown"); + this.mousetrap.bind("pagedown",this._stopZoom.bind(me), "keyup"); + } - _relativeTime : { - future : "in %s", - past : "%s ago", - s : "a few seconds", - m : "a minute", - mm : "%d minutes", - h : "an hour", - hh : "%d hours", - d : "a day", - dd : "%d days", - M : "a month", - MM : "%d months", - y : "a year", - yy : "%d years" - }, - relativeTime : function (number, withoutSuffix, string, isFuture) { - var output = this._relativeTime[string]; - return (typeof output === 'function') ? - output(number, withoutSuffix, string, isFuture) : - output.replace(/%d/i, number); - }, - pastFuture : function (diff, output) { - var format = this._relativeTime[diff > 0 ? 'future' : 'past']; - return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); - }, + if (this.constants.dataManipulation.enabled == true) { + this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); + this.mousetrap.bind("del",this._deleteSelected.bind(me)); + } + }; - ordinal : function (number) { - return this._ordinal.replace("%d", number); - }, - _ordinal : "%d", + /** + * Get the pointer location from a touch location + * @param {{pageX: Number, pageY: Number}} touch + * @return {{x: Number, y: Number}} pointer + * @private + */ + Network.prototype._getPointer = function (touch) { + return { + x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), + y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) + }; + }; - preparse : function (string) { - return string; - }, + /** + * On start of a touch gesture, store the pointer + * @param event + * @private + */ + Network.prototype._onTouch = function (event) { + this.drag.pointer = this._getPointer(event.gesture.center); + this.drag.pinched = false; + this.pinch.scale = this._getScale(); - postformat : function (string) { - return string; - }, + this._handleTouch(this.drag.pointer); + }; - week : function (mom) { - return weekOfYear(mom, this._week.dow, this._week.doy).week; - }, + /** + * handle drag start event + * @private + */ + Network.prototype._onDragStart = function () { + this._handleDragStart(); + }; - _week : { - dow : 0, // Sunday is the first day of the week. - doy : 6 // The week that contains Jan 1st is the first week of the year. - }, - _invalidDate: 'Invalid date', - invalidDate: function () { - return this._invalidDate; - } - }); + /** + * This function is called by _onDragStart. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private + */ + Network.prototype._handleDragStart = function() { + var drag = this.drag; + var node = this._getNodeAt(drag.pointer); + // note: drag.pointer is set in _onTouch to get the initial touch location - // Loads a language definition into the `languages` cache. The function - // takes a key and optionally values. If not in the browser and no values - // are provided, it will load the language file module. As a convenience, - // this function also returns the language values. - function loadLang(key, values) { - values.abbr = key; - if (!languages[key]) { - languages[key] = new Language(); - } - languages[key].set(values); - return languages[key]; - } + drag.dragging = true; + drag.selection = []; + drag.translation = this._getTranslation(); + drag.nodeId = null; - // Remove a language from the `languages` cache. Mostly useful in tests. - function unloadLang(key) { - delete languages[key]; + if (node != null) { + drag.nodeId = node.id; + // select the clicked node if not yet selected + if (!node.isSelected()) { + this._selectObject(node,false); } - // Determines which language definition to use and returns it. - // - // With no parameters, it will return the global language. If you - // pass in a language key, such as 'en', it will return the - // definition for 'en', so long as 'en' has already been loaded using - // moment.lang. - function getLangDefinition(key) { - var i = 0, j, lang, next, split, - get = function (k) { - if (!languages[k] && hasModule) { - try { - __webpack_require__(57)("./" + k); - } catch (e) { } - } - return languages[k]; - }; + // create an array with the selected nodes and their original location and status + for (var objectId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(objectId)) { + var object = this.selectionObj.nodes[objectId]; + var s = { + id: object.id, + node: object, - if (!key) { - return moment.fn._lang; - } + // store original x, y, xFixed and yFixed, make the node temporarily Fixed + x: object.x, + y: object.y, + xFixed: object.xFixed, + yFixed: object.yFixed + }; - if (!isArray(key)) { - //short-circuit everything else - lang = get(key); - if (lang) { - return lang; - } - key = [key]; - } + object.xFixed = true; + object.yFixed = true; - //pick the language from the array - //try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each - //substring from most specific to least, but move to the next array item if it's a more specific variant than the current root - while (i < key.length) { - split = normalizeLanguage(key[i]).split('-'); - j = split.length; - next = normalizeLanguage(key[i + 1]); - next = next ? next.split('-') : null; - while (j > 0) { - lang = get(split.slice(0, j).join('-')); - if (lang) { - return lang; - } - if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { - //the next array item is better than a shallower substring of this one - break; - } - j--; - } - i++; - } - return moment.fn._lang; + drag.selection.push(s); + } } + } + }; - /************************************ - Formatting - ************************************/ + /** + * handle drag event + * @private + */ + Network.prototype._onDrag = function (event) { + this._handleOnDrag(event) + }; - function removeFormattingTokens(input) { - if (input.match(/\[[\s\S]/)) { - return input.replace(/^\[|\]$/g, ""); - } - return input.replace(/\\/g, ""); - } - function makeFormatFunction(format) { - var array = format.match(formattingTokens), i, length; + /** + * This function is called by _onDrag. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private + */ + Network.prototype._handleOnDrag = function(event) { + if (this.drag.pinched) { + return; + } - for (i = 0, length = array.length; i < length; i++) { - if (formatTokenFunctions[array[i]]) { - array[i] = formatTokenFunctions[array[i]]; - } else { - array[i] = removeFormattingTokens(array[i]); - } - } + var pointer = this._getPointer(event.gesture.center); - return function (mom) { - var output = ""; - for (i = 0; i < length; i++) { - output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; - } - return output; - }; - } + var me = this; + var drag = this.drag; + var selection = drag.selection; + if (selection && selection.length && this.constants.dragNodes == true) { + // calculate delta's and new location + var deltaX = pointer.x - drag.pointer.x; + var deltaY = pointer.y - drag.pointer.y; - // format date using native date object - function formatMoment(m, format) { + // update position of all selected nodes + selection.forEach(function (s) { + var node = s.node; - if (!m.isValid()) { - return m.lang().invalidDate(); - } + if (!s.xFixed) { + node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); + } - format = expandFormat(format, m.lang()); + if (!s.yFixed) { + node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); + } + }); - if (!formatFunctions[format]) { - formatFunctions[format] = makeFormatFunction(format); - } - return formatFunctions[format](m); + // start _animationStep if not yet running + if (!this.moving) { + this.moving = true; + this.start(); + } + } + else { + if (this.constants.dragNetwork == true) { + // move the network + var diffX = pointer.x - this.drag.pointer.x; + var diffY = pointer.y - this.drag.pointer.y; + + this._setTranslation( + this.drag.translation.x + diffX, + this.drag.translation.y + diffY + ); + this._redraw(); + // this.moving = true; + // this.start(); } + } + }; - function expandFormat(format, lang) { - var i = 5; + /** + * handle drag start event + * @private + */ + Network.prototype._onDragEnd = function () { + this.drag.dragging = false; + var selection = this.drag.selection; + if (selection && selection.length) { + selection.forEach(function (s) { + // restore original xFixed and yFixed + s.node.xFixed = s.xFixed; + s.node.yFixed = s.yFixed; + }); + this.moving = true; + this.start(); + } + else { + this._redraw(); + } - function replaceLongDateFormatTokens(input) { - return lang.longDateFormat(input) || input; - } + }; - localFormattingTokens.lastIndex = 0; - while (i >= 0 && localFormattingTokens.test(format)) { - format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); - localFormattingTokens.lastIndex = 0; - i -= 1; - } + /** + * handle tap/click event: select/unselect a node + * @private + */ + Network.prototype._onTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleTap(pointer); - return format; - } + }; - /************************************ - Parsing - ************************************/ + /** + * handle doubletap event + * @private + */ + Network.prototype._onDoubleTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleDoubleTap(pointer); + }; - // get the regex to find the next token - function getParseRegexForToken(token, config) { - var a, strict = config._strict; - switch (token) { - case 'Q': - return parseTokenOneDigit; - case 'DDDD': - return parseTokenThreeDigits; - case 'YYYY': - case 'GGGG': - case 'gggg': - return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; - case 'Y': - case 'G': - case 'g': - return parseTokenSignedNumber; - case 'YYYYYY': - case 'YYYYY': - case 'GGGGG': - case 'ggggg': - return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; - case 'S': - if (strict) { return parseTokenOneDigit; } - /* falls through */ - case 'SS': - if (strict) { return parseTokenTwoDigits; } - /* falls through */ - case 'SSS': - if (strict) { return parseTokenThreeDigits; } - /* falls through */ - case 'DDD': - return parseTokenOneToThreeDigits; - case 'MMM': - case 'MMMM': - case 'dd': - case 'ddd': - case 'dddd': - return parseTokenWord; - case 'a': - case 'A': - return getLangDefinition(config._l)._meridiemParse; - case 'X': - return parseTokenTimestampMs; - case 'Z': - case 'ZZ': - return parseTokenTimezone; - case 'T': - return parseTokenT; - case 'SSSS': - return parseTokenDigits; - case 'MM': - case 'DD': - case 'YY': - case 'GG': - case 'gg': - case 'HH': - case 'hh': - case 'mm': - case 'ss': - case 'ww': - case 'WW': - return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; - case 'M': - case 'D': - case 'd': - case 'H': - case 'h': - case 'm': - case 's': - case 'w': - case 'W': - case 'e': - case 'E': - return parseTokenOneOrTwoDigits; - case 'Do': - return parseTokenOrdinal; - default : - a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), "i")); - return a; - } - } + /** + * handle long tap event: multi select nodes + * @private + */ + Network.prototype._onHold = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleOnHold(pointer); + }; - function timezoneMinutesFromString(string) { - string = string || ""; - var possibleTzMatches = (string.match(parseTokenTimezone) || []), - tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], - parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], - minutes = +(parts[1] * 60) + toInt(parts[2]); + /** + * handle the release of the screen + * + * @private + */ + Network.prototype._onRelease = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleOnRelease(pointer); + }; - return parts[0] === '+' ? -minutes : minutes; - } + /** + * Handle pinch event + * @param event + * @private + */ + Network.prototype._onPinch = function (event) { + var pointer = this._getPointer(event.gesture.center); - // function to convert string input to date - function addTimeToArrayFromToken(token, input, config) { - var a, datePartArray = config._a; + this.drag.pinched = true; + if (!('scale' in this.pinch)) { + this.pinch.scale = 1; + } - switch (token) { - // QUARTER - case 'Q': - if (input != null) { - datePartArray[MONTH] = (toInt(input) - 1) * 3; - } - break; - // MONTH - case 'M' : // fall through to MM - case 'MM' : - if (input != null) { - datePartArray[MONTH] = toInt(input) - 1; - } - break; - case 'MMM' : // fall through to MMMM - case 'MMMM' : - a = getLangDefinition(config._l).monthsParse(input); - // if we didn't find a month name, mark the date as invalid. - if (a != null) { - datePartArray[MONTH] = a; - } else { - config._pf.invalidMonth = input; - } - break; - // DAY OF MONTH - case 'D' : // fall through to DD - case 'DD' : - if (input != null) { - datePartArray[DATE] = toInt(input); - } - break; - case 'Do' : - if (input != null) { - datePartArray[DATE] = toInt(parseInt(input, 10)); - } - break; - // DAY OF YEAR - case 'DDD' : // fall through to DDDD - case 'DDDD' : - if (input != null) { - config._dayOfYear = toInt(input); - } + // TODO: enabled moving while pinching? + var scale = this.pinch.scale * event.gesture.scale; + this._zoom(scale, pointer) + }; - break; - // YEAR - case 'YY' : - datePartArray[YEAR] = moment.parseTwoDigitYear(input); - break; - case 'YYYY' : - case 'YYYYY' : - case 'YYYYYY' : - datePartArray[YEAR] = toInt(input); - break; - // AM / PM - case 'a' : // fall through to A - case 'A' : - config._isPm = getLangDefinition(config._l).isPM(input); - break; - // 24 HOUR - case 'H' : // fall through to hh - case 'HH' : // fall through to hh - case 'h' : // fall through to hh - case 'hh' : - datePartArray[HOUR] = toInt(input); - break; - // MINUTE - case 'm' : // fall through to mm - case 'mm' : - datePartArray[MINUTE] = toInt(input); - break; - // SECOND - case 's' : // fall through to ss - case 'ss' : - datePartArray[SECOND] = toInt(input); - break; - // MILLISECOND - case 'S' : - case 'SS' : - case 'SSS' : - case 'SSSS' : - datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); - break; - // UNIX TIMESTAMP WITH MS - case 'X': - config._d = new Date(parseFloat(input) * 1000); - break; - // TIMEZONE - case 'Z' : // fall through to ZZ - case 'ZZ' : - config._useUTC = true; - config._tzm = timezoneMinutesFromString(input); - break; - // WEEKDAY - human - case 'dd': - case 'ddd': - case 'dddd': - a = getLangDefinition(config._l).weekdaysParse(input); - // if we didn't get a weekday name, mark the date as invalid - if (a != null) { - config._w = config._w || {}; - config._w['d'] = a; - } else { - config._pf.invalidWeekday = input; - } - break; - // WEEK, WEEK DAY - numeric - case 'w': - case 'ww': - case 'W': - case 'WW': - case 'd': - case 'e': - case 'E': - token = token.substr(0, 1); - /* falls through */ - case 'gggg': - case 'GGGG': - case 'GGGGG': - token = token.substr(0, 2); - if (input) { - config._w = config._w || {}; - config._w[token] = toInt(input); - } - break; - case 'gg': - case 'GG': - config._w = config._w || {}; - config._w[token] = moment.parseTwoDigitYear(input); - } + /** + * Zoom the network in or out + * @param {Number} scale a number around 1, and between 0.01 and 10 + * @param {{x: Number, y: Number}} pointer Position on screen + * @return {Number} appliedScale scale is limited within the boundaries + * @private + */ + Network.prototype._zoom = function(scale, pointer) { + if (this.constants.zoomable == true) { + var scaleOld = this._getScale(); + if (scale < 0.00001) { + scale = 0.00001; + } + if (scale > 10) { + scale = 10; } - function dayOfYearFromWeekInfo(config) { - var w, weekYear, week, weekday, dow, doy, temp, lang; + var preScaleDragPointer = null; + if (this.drag !== undefined) { + if (this.drag.dragging == true) { + preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); + } + } + // + this.frame.canvas.clientHeight / 2 + var translation = this._getTranslation(); - w = config._w; - if (w.GG != null || w.W != null || w.E != null) { - dow = 1; - doy = 4; + var scaleFrac = scale / scaleOld; + var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; + var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; - // TODO: We need to take the current isoWeekYear, but that depends on - // how we interpret now (local, utc, fixed offset). So create - // a now version of current config (take local/utc/offset flags, and - // create now). - weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); - week = dfl(w.W, 1); - weekday = dfl(w.E, 1); - } else { - lang = getLangDefinition(config._l); - dow = lang._week.dow; - doy = lang._week.doy; + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; - weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); - week = dfl(w.w, 1); + this._setScale(scale); + this._setTranslation(tx, ty); + this.updateClustersDefault(); - if (w.d != null) { - // weekday -- low day numbers are considered next week - weekday = w.d; - if (weekday < dow) { - ++week; - } - } else if (w.e != null) { - // local weekday -- counting starts from begining of week - weekday = w.e + dow; - } else { - // default to begining of week - weekday = dow; - } - } - temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); + if (preScaleDragPointer != null) { + var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); + this.drag.pointer.x = postScaleDragPointer.x; + this.drag.pointer.y = postScaleDragPointer.y; + } - config._a[YEAR] = temp.year; - config._dayOfYear = temp.dayOfYear; + this._redraw(); + + if (scaleOld < scale) { + this.emit("zoom", {direction:"+"}); + } + else { + this.emit("zoom", {direction:"-"}); } - // convert an array to a date. - // the array should mirror the parameters below - // note: all values past the year are optional and will default to the lowest possible value. - // [year, month, day , hour, minute, second, millisecond] - function dateFromConfig(config) { - var i, date, input = [], currentDate, yearToUse; + return scale; + } + }; - if (config._d) { - return; - } - currentDate = currentDateArray(config); + /** + * Event handler for mouse wheel event, used to zoom the timeline + * See http://adomas.org/javascript-mouse-wheel/ + * https://github.com/EightMedia/hammer.js/issues/256 + * @param {MouseEvent} event + * @private + */ + Network.prototype._onMouseWheel = function(event) { + // retrieve delta + var delta = 0; + if (event.wheelDelta) { /* IE/Opera. */ + delta = event.wheelDelta/120; + } else if (event.detail) { /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail/3; + } - //compute day of the year from weeks and weekdays - if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { - dayOfYearFromWeekInfo(config); + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + + // calculate the new scale + var scale = this._getScale(); + var zoom = delta / 10; + if (delta < 0) { + zoom = zoom / (1 - zoom); + } + scale *= (1 + zoom); + + // calculate the pointer location + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); + + // apply the new scale + this._zoom(scale, pointer); + } + + // Prevent default actions caused by mouse wheel. + event.preventDefault(); + }; + + + /** + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event + * @private + */ + Network.prototype._onMouseMoveTitle = function (event) { + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); + + // check if the previously selected node is still selected + if (this.popupObj) { + this._checkHidePopup(pointer); + } + + // start a timeout that will check if the mouse is positioned above + // an element + var me = this; + var checkShow = function() { + me._checkShowPopup(pointer); + }; + if (this.popupTimer) { + clearInterval(this.popupTimer); // stop any running calculationTimer + } + if (!this.drag.dragging) { + this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); + } + + + /** + * Adding hover highlights + */ + if (this.constants.hover == true) { + // removing all hover highlights + for (var edgeId in this.hoverObj.edges) { + if (this.hoverObj.edges.hasOwnProperty(edgeId)) { + this.hoverObj.edges[edgeId].hover = false; + delete this.hoverObj.edges[edgeId]; + } + } + + // adding hover highlights + var obj = this._getNodeAt(pointer); + if (obj == null) { + obj = this._getEdgeAt(pointer); + } + if (obj != null) { + this._hoverObject(obj); + } + + // removing all node hover highlights except for the selected one. + for (var nodeId in this.hoverObj.nodes) { + if (this.hoverObj.nodes.hasOwnProperty(nodeId)) { + if (obj instanceof Node && obj.id != nodeId || obj instanceof Edge || obj == null) { + this._blurObject(this.hoverObj.nodes[nodeId]); + delete this.hoverObj.nodes[nodeId]; } + } + } + this.redraw(); + } + }; - //if the day of the year is set, figure out what it is - if (config._dayOfYear) { - yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + /** + * Check if there is an element on the given position in the network + * (a node or edge). If so, and if this element has a title, + * show a popup window with its title. + * + * @param {{x:Number, y:Number}} pointer + * @private + */ + Network.prototype._checkShowPopup = function (pointer) { + var obj = { + left: this._XconvertDOMtoCanvas(pointer.x), + top: this._YconvertDOMtoCanvas(pointer.y), + right: this._XconvertDOMtoCanvas(pointer.x), + bottom: this._YconvertDOMtoCanvas(pointer.y) + }; - if (config._dayOfYear > daysInYear(yearToUse)) { - config._pf._overflowDayOfYear = true; - } + var id; + var lastPopupNode = this.popupObj; - date = makeUTCDate(yearToUse, 0, config._dayOfYear); - config._a[MONTH] = date.getUTCMonth(); - config._a[DATE] = date.getUTCDate(); + if (this.popupObj == undefined) { + // search the nodes for overlap, select the top one in case of multiple nodes + var nodes = this.nodes; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + var node = nodes[id]; + if (node.getTitle() !== undefined && node.isOverlappingWith(obj)) { + this.popupObj = node; + break; + } + } + } + } + + if (this.popupObj === undefined) { + // search the edges for overlap + var edges = this.edges; + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + if (edge.connected && (edge.getTitle() !== undefined) && + edge.isOverlappingWith(obj)) { + this.popupObj = edge; + break; } + } + } + } + + if (this.popupObj) { + // show popup message window + if (this.popupObj != lastPopupNode) { + var me = this; + if (!me.popup) { + me.popup = new Popup(me.frame, me.constants.tooltip); + } - // Default to current date. - // * if no year, month, day of month are given, default to today - // * if day of month is given, default month and year - // * if month is given, default only year - // * if year is given, don't default anything - for (i = 0; i < 3 && config._a[i] == null; ++i) { - config._a[i] = input[i] = currentDate[i]; - } + // adjust a small offset such that the mouse cursor is located in the + // bottom left location of the popup, and you can easily move over the + // popup area + me.popup.setPosition(pointer.x - 3, pointer.y - 3); + me.popup.setText(me.popupObj.getTitle()); + me.popup.show(); + } + } + else { + if (this.popup) { + this.popup.hide(); + } + } + }; - // Zero out whatever was not defaulted, including time - for (; i < 7; i++) { - config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; - } - config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); - // Apply timezone offset from input. The actual zone can be changed - // with parseZone. - if (config._tzm != null) { - config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); - } + /** + * Check if the popup must be hided, which is the case when the mouse is no + * longer hovering on the object + * @param {{x:Number, y:Number}} pointer + * @private + */ + Network.prototype._checkHidePopup = function (pointer) { + if (!this.popupObj || !this._getNodeAt(pointer) ) { + this.popupObj = undefined; + if (this.popup) { + this.popup.hide(); } + } + }; - function dateFromObject(config) { - var normalizedInput; - if (config._d) { - return; - } + /** + * Set a new size for the network + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + Network.prototype.setSize = function(width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - normalizedInput = normalizeObjectUnits(config._i); - config._a = [ - normalizedInput.year, - normalizedInput.month, - normalizedInput.day, - normalizedInput.hour, - normalizedInput.minute, - normalizedInput.second, - normalizedInput.millisecond - ]; + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; - dateFromConfig(config); - } + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - function currentDateArray(config) { - var now = new Date(); - if (config._useUTC) { - return [ - now.getUTCFullYear(), - now.getUTCMonth(), - now.getUTCDate() - ]; - } else { - return [now.getFullYear(), now.getMonth(), now.getDate()]; - } + if (this.manipulationDiv !== undefined) { + this.manipulationDiv.style.width = this.frame.canvas.clientWidth + "px"; + } + if (this.navigationDivs !== undefined) { + if (this.navigationDivs['wrapper'] !== undefined) { + this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; + this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; } + } - // date from string and format string - function makeDateFromStringAndFormat(config) { + this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); + }; - if (config._f === moment.ISO_8601) { - parseISO(config); - return; - } + /** + * Set a data set with nodes for the network + * @param {Array | DataSet | DataView} nodes The data containing the nodes. + * @private + */ + Network.prototype._setNodes = function(nodes) { + var oldNodesData = this.nodesData; - config._a = []; - config._pf.empty = true; + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.nodesData = nodes; + } + else if (nodes instanceof Array) { + this.nodesData = new DataSet(); + this.nodesData.add(nodes); + } + else if (!nodes) { + this.nodesData = new DataSet(); + } + else { + throw new TypeError('Array or DataSet expected'); + } - // This array is used to make a Date, either with `new Date` or `Date.UTC` - var lang = getLangDefinition(config._l), - string = '' + config._i, - i, parsedInput, tokens, token, skipped, - stringLength = string.length, - totalParsedInputLength = 0; + if (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); + } - tokens = expandFormat(config._f, lang).match(formattingTokens) || []; + // remove drawn nodes + this.nodes = {}; - for (i = 0; i < tokens.length; i++) { - token = tokens[i]; - parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; - if (parsedInput) { - skipped = string.substr(0, string.indexOf(parsedInput)); - if (skipped.length > 0) { - config._pf.unusedInput.push(skipped); - } - string = string.slice(string.indexOf(parsedInput) + parsedInput.length); - totalParsedInputLength += parsedInput.length; - } - // don't parse if it's not a known token - if (formatTokenFunctions[token]) { - if (parsedInput) { - config._pf.empty = false; - } - else { - config._pf.unusedTokens.push(token); - } - addTimeToArrayFromToken(token, parsedInput, config); - } - else if (config._strict && !parsedInput) { - config._pf.unusedTokens.push(token); - } - } + if (this.nodesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.nodesListeners, function (callback, event) { + me.nodesData.on(event, callback); + }); - // add remaining unparsed input length to the string - config._pf.charsLeftOver = stringLength - totalParsedInputLength; - if (string.length > 0) { - config._pf.unusedInput.push(string); - } + // draw all new nodes + var ids = this.nodesData.getIds(); + this._addNodes(ids); + } + this._updateSelection(); + }; + + /** + * Add nodes + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._addNodes = function(ids) { + var id; + for (var i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + var data = this.nodesData.get(id); + var node = new Node(data, this.images, this.groups, this.constants); + this.nodes[id] = node; // note: this may replace an existing node + if ((node.xFixed == false || node.yFixed == false) && (node.x === null || node.y === null)) { + var radius = 10 * 0.1*ids.length + 10; + var angle = 2 * Math.PI * Math.random(); + if (node.xFixed == false) {node.x = radius * Math.cos(angle);} + if (node.yFixed == false) {node.y = radius * Math.sin(angle);} + } + this.moving = true; + } + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateValueRange(this.nodes); + this.updateLabels(); + }; + + /** + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._updateNodes = function(ids) { + var nodes = this.nodes, + nodesData = this.nodesData; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var node = nodes[id]; + var data = nodesData.get(id); + if (node) { + // update node + node.setProperties(data, this.constants); + } + else { + // create node + node = new Node(properties, this.images, this.groups, this.constants); + nodes[id] = node; + } + } + this.moving = true; + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateNodeIndexList(); + this._reconnectEdges(); + this._updateValueRange(nodes); + }; + + /** + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._removeNodes = function(ids) { + var nodes = this.nodes; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + delete nodes[id]; + } + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateSelection(); + this._updateValueRange(nodes); + }; - // handle am pm - if (config._isPm && config._a[HOUR] < 12) { - config._a[HOUR] += 12; - } - // if is 12 am, change hours to 0 - if (config._isPm === false && config._a[HOUR] === 12) { - config._a[HOUR] = 0; - } + /** + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private + * @private + */ + Network.prototype._setEdges = function(edges) { + var oldEdgesData = this.edgesData; - dateFromConfig(config); - checkOverflow(config); - } + if (edges instanceof DataSet || edges instanceof DataView) { + this.edgesData = edges; + } + else if (edges instanceof Array) { + this.edgesData = new DataSet(); + this.edgesData.add(edges); + } + else if (!edges) { + this.edgesData = new DataSet(); + } + else { + throw new TypeError('Array or DataSet expected'); + } - function unescapeFormat(s) { - return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { - return p1 || p2 || p3 || p4; - }); - } + if (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); + }); + } - // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript - function regexpEscape(s) { - return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - } + // remove drawn edges + this.edges = {}; - // date from string and array of format strings - function makeDateFromStringAndArray(config) { - var tempConfig, - bestMoment, + if (this.edgesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.edgesListeners, function (callback, event) { + me.edgesData.on(event, callback); + }); - scoreToBeat, - i, - currentScore; + // draw all new nodes + var ids = this.edgesData.getIds(); + this._addEdges(ids); + } - if (config._f.length === 0) { - config._pf.invalidFormat = true; - config._d = new Date(NaN); - return; - } + this._reconnectEdges(); + }; - for (i = 0; i < config._f.length; i++) { - currentScore = 0; - tempConfig = extend({}, config); - tempConfig._pf = defaultParsingFlags(); - tempConfig._f = config._f[i]; - makeDateFromStringAndFormat(tempConfig); + /** + * Add edges + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._addEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; - if (!isValid(tempConfig)) { - continue; - } + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - // if there is any input that was not parsed add a penalty for that format - currentScore += tempConfig._pf.charsLeftOver; + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); + } - //or tokens - currentScore += tempConfig._pf.unusedTokens.length * 10; + var data = edgesData.get(id, {"showInternalIds" : true}); + edges[id] = new Edge(data, this, this.constants); + } - tempConfig._pf.score = currentScore; + this.moving = true; + this._updateValueRange(edges); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + }; - if (scoreToBeat == null || currentScore < scoreToBeat) { - scoreToBeat = currentScore; - bestMoment = tempConfig; - } - } + /** + * Update existing edges, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._updateEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - extend(config, bestMoment || tempConfig); + var data = edgesData.get(id); + var edge = edges[id]; + if (edge) { + // update edge + edge.disconnect(); + edge.setProperties(data, this.constants); + edge.connect(); + } + else { + // create edge + edge = new Edge(data, this, this.constants); + this.edges[id] = edge; } + } - // date from iso format - function parseISO(config) { - var i, l, - string = config._i, - match = isoRegex.exec(string); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.moving = true; + this._updateValueRange(edges); + }; - if (match) { - config._pf.iso = true; - for (i = 0, l = isoDates.length; i < l; i++) { - if (isoDates[i][1].exec(string)) { - // match[5] should be "T" or undefined - config._f = isoDates[i][0] + (match[6] || " "); - break; - } - } - for (i = 0, l = isoTimes.length; i < l; i++) { - if (isoTimes[i][1].exec(string)) { - config._f += isoTimes[i][0]; - break; - } - } - if (string.match(parseTokenTimezone)) { - config._f += "Z"; - } - makeDateFromStringAndFormat(config); - } else { - config._isValid = false; - } + /** + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids + * @private + */ + Network.prototype._removeEdges = function (ids) { + var edges = this.edges; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var edge = edges[id]; + if (edge) { + if (edge.via != null) { + delete this.sectors['support']['nodes'][edge.via.id]; + } + edge.disconnect(); + delete edges[id]; } + } - // date from iso format or fallback - function makeDateFromString(config) { - parseISO(config); - if (config._isValid === false) { - delete config._isValid; - moment.createFromInputFallback(config); - } - } + this.moving = true; + this._updateValueRange(edges); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + }; - function makeDateFromInput(config) { - var input = config._i, - matched = aspNetJsonRegex.exec(input); + /** + * Reconnect all edges + * @private + */ + Network.prototype._reconnectEdges = function() { + var id, + nodes = this.nodes, + edges = this.edges; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; + } + } - if (input === undefined) { - config._d = new Date(); - } else if (matched) { - config._d = new Date(+matched[1]); - } else if (typeof input === 'string') { - makeDateFromString(config); - } else if (isArray(input)) { - config._a = input.slice(0); - dateFromConfig(config); - } else if (isDate(input)) { - config._d = new Date(+input); - } else if (typeof(input) === 'object') { - dateFromObject(config); - } else if (typeof(input) === 'number') { - // from milliseconds - config._d = new Date(input); - } else { - moment.createFromInputFallback(config); - } + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); } + } + }; - function makeDate(y, m, d, h, M, s, ms) { - //can't just apply() to create a date: - //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply - var date = new Date(y, m, d, h, M, s, ms); + /** + * Update the values of all object in the given array according to the current + * value range of the objects in the array. + * @param {Object} obj An object containing a set of Edges or Nodes + * The objects must have a method getValue() and + * setValueRange(min, max). + * @private + */ + Network.prototype._updateValueRange = function(obj) { + var id; - //the date constructor doesn't accept years < 1970 - if (y < 1970) { - date.setFullYear(y); - } - return date; + // determine the range of the objects + var valueMin = undefined; + var valueMax = undefined; + for (id in obj) { + if (obj.hasOwnProperty(id)) { + var value = obj[id].getValue(); + if (value !== undefined) { + valueMin = (valueMin === undefined) ? value : Math.min(value, valueMin); + valueMax = (valueMax === undefined) ? value : Math.max(value, valueMax); + } } + } - function makeUTCDate(y) { - var date = new Date(Date.UTC.apply(null, arguments)); - if (y < 1970) { - date.setUTCFullYear(y); - } - return date; + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax); + } } + } + }; - function parseWeekday(input, language) { - if (typeof input === 'string') { - if (!isNaN(input)) { - input = parseInt(input, 10); - } - else { - input = language.weekdaysParse(input); - if (typeof input !== 'number') { - return null; - } - } - } - return input; - } + /** + * Redraw the network with the current data + * chart will be resized too. + */ + Network.prototype.redraw = function() { + this.setSize(this.constants.width, this.constants.height); + this._redraw(); + }; - /************************************ - Relative Time - ************************************/ + /** + * Redraw the network with the current data + * @private + */ + Network.prototype._redraw = function() { + var ctx = this.frame.canvas.getContext('2d'); + // clear the canvas + var w = this.frame.canvas.width; + var h = this.frame.canvas.height; + ctx.clearRect(0, 0, w, h); + // set scaling and translation + ctx.save(); + ctx.translate(this.translation.x, this.translation.y); + ctx.scale(this.scale, this.scale); - // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize - function substituteTimeAgo(string, number, withoutSuffix, isFuture, lang) { - return lang.relativeTime(number || 1, !!withoutSuffix, string, isFuture); - } + this.canvasTopLeft = { + "x": this._XconvertDOMtoCanvas(0), + "y": this._YconvertDOMtoCanvas(0) + }; + this.canvasBottomRight = { + "x": this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth), + "y": this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight) + }; - function relativeTime(milliseconds, withoutSuffix, lang) { - var seconds = round(Math.abs(milliseconds) / 1000), - minutes = round(seconds / 60), - hours = round(minutes / 60), - days = round(hours / 24), - years = round(days / 365), - args = seconds < relativeTimeThresholds.s && ['s', seconds] || - minutes === 1 && ['m'] || - minutes < relativeTimeThresholds.m && ['mm', minutes] || - hours === 1 && ['h'] || - hours < relativeTimeThresholds.h && ['hh', hours] || - days === 1 && ['d'] || - days <= relativeTimeThresholds.dd && ['dd', days] || - days <= relativeTimeThresholds.dm && ['M'] || - days < relativeTimeThresholds.dy && ['MM', round(days / 30)] || - years === 1 && ['y'] || ['yy', years]; - args[2] = withoutSuffix; - args[3] = milliseconds > 0; - args[4] = lang; - return substituteTimeAgo.apply({}, args); - } + this._doInAllSectors("_drawAllSectorNodes",ctx); + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { + this._doInAllSectors("_drawEdges",ctx); + } + + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { + this._doInAllSectors("_drawNodes",ctx,false); + } - /************************************ - Week of Year - ************************************/ + if (this.controlNodesActive == true) { + this._doInAllSectors("_drawControlNodes",ctx); + } + // this._doInSupportSector("_drawNodes",ctx,true); + // this._drawTree(ctx,"#F00F0F"); - // firstDayOfWeek 0 = sun, 6 = sat - // the day of the week that starts the week - // (usually sunday or monday) - // firstDayOfWeekOfYear 0 = sun, 6 = sat - // the first week is the week that contains the first - // of this day of the week - // (eg. ISO weeks use thursday (4)) - function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { - var end = firstDayOfWeekOfYear - firstDayOfWeek, - daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), - adjustedMoment; + // restore original scaling and translation + ctx.restore(); + }; + /** + * Set the translation of the network + * @param {Number} offsetX Horizontal offset + * @param {Number} offsetY Vertical offset + * @private + */ + Network.prototype._setTranslation = function(offsetX, offsetY) { + if (this.translation === undefined) { + this.translation = { + x: 0, + y: 0 + }; + } - if (daysToDayOfWeek > end) { - daysToDayOfWeek -= 7; - } + if (offsetX !== undefined) { + this.translation.x = offsetX; + } + if (offsetY !== undefined) { + this.translation.y = offsetY; + } - if (daysToDayOfWeek < end - 7) { - daysToDayOfWeek += 7; - } + this.emit('viewChanged'); + }; - adjustedMoment = moment(mom).add('d', daysToDayOfWeek); - return { - week: Math.ceil(adjustedMoment.dayOfYear() / 7), - year: adjustedMoment.year() - }; - } + /** + * Get the translation of the network + * @return {Object} translation An object with parameters x and y, both a number + * @private + */ + Network.prototype._getTranslation = function() { + return { + x: this.translation.x, + y: this.translation.y + }; + }; - //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday - function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { - var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; + /** + * Scale the network + * @param {Number} scale Scaling factor 1.0 is unscaled + * @private + */ + Network.prototype._setScale = function(scale) { + this.scale = scale; + }; - d = d === 0 ? 7 : d; - weekday = weekday != null ? weekday : firstDayOfWeek; - daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); - dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; + /** + * Get the current scale of the network + * @return {Number} scale Scaling factor 1.0 is unscaled + * @private + */ + Network.prototype._getScale = function() { + return this.scale; + }; - return { - year: dayOfYear > 0 ? year : year - 1, - dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear - }; - } + /** + * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} x + * @returns {number} + * @private + */ + Network.prototype._XconvertDOMtoCanvas = function(x) { + return (x - this.translation.x) / this.scale; + }; - /************************************ - Top Level Functions - ************************************/ + /** + * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the X coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} x + * @returns {number} + * @private + */ + Network.prototype._XconvertCanvasToDOM = function(x) { + return x * this.scale + this.translation.x; + }; - function makeMoment(config) { - var input = config._i, - format = config._f; + /** + * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} y + * @returns {number} + * @private + */ + Network.prototype._YconvertDOMtoCanvas = function(y) { + return (y - this.translation.y) / this.scale; + }; - if (input === null || (format === undefined && input === '')) { - return moment.invalid({nullInput: true}); - } + /** + * Convert the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the Y coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} y + * @returns {number} + * @private + */ + Network.prototype._YconvertCanvasToDOM = function(y) { + return y * this.scale + this.translation.y ; + }; - if (typeof input === 'string') { - config._i = input = getLangDefinition().preparse(input); - } - if (moment.isMoment(input)) { - config = cloneMoment(input); + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + Network.prototype.canvasToDOM = function(pos) { + return {x:this._XconvertCanvasToDOM(pos.x),y:this._YconvertCanvasToDOM(pos.y)}; + } - config._d = new Date(+input._d); - } else if (format) { - if (isArray(format)) { - makeDateFromStringAndArray(config); - } else { - makeDateFromStringAndFormat(config); - } - } else { - makeDateFromInput(config); - } + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + Network.prototype.DOMtoCanvas = function(pos) { + return {x:this._XconvertDOMtoCanvas(pos.x),y:this._YconvertDOMtoCanvas(pos.y)}; + } - return new Moment(config); - } + /** + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private + */ + Network.prototype._drawNodes = function(ctx,alwaysShow) { + if (alwaysShow === undefined) { + alwaysShow = false; + } - moment = function (input, format, lang, strict) { - var c; + // first draw the unselected nodes + var nodes = this.nodes; + var selected = []; - if (typeof(lang) === "boolean") { - strict = lang; - lang = undefined; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight); + if (nodes[id].isSelected()) { + selected.push(id); + } + else { + if (nodes[id].inArea() || alwaysShow) { + nodes[id].draw(ctx); } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._i = input; - c._f = format; - c._l = lang; - c._strict = strict; - c._isUTC = false; - c._pf = defaultParsingFlags(); - - return makeMoment(c); - }; + } + } + } - moment.suppressDeprecationWarnings = false; + // draw the selected nodes on top + for (var s = 0, sMax = selected.length; s < sMax; s++) { + if (nodes[selected[s]].inArea() || alwaysShow) { + nodes[selected[s]].draw(ctx); + } + } + }; - moment.createFromInputFallback = deprecate( - "moment construction falls back to js Date. This is " + - "discouraged and will be removed in upcoming major " + - "release. Please refer to " + - "https://github.com/moment/moment/issues/1407 for more info.", - function (config) { - config._d = new Date(config._i); - }); + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Network.prototype._drawEdges = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.setScale(this.scale); + if (edge.connected) { + edges[id].draw(ctx); + } + } + } + }; - // Pick a moment m from moments so that m[fn](other) is true for all - // other. This relies on the function fn to be transitive. - // - // moments should either be an array of moment objects or an array, whose - // first element is an array of moment objects. - function pickBy(fn, moments) { - var res, i; - if (moments.length === 1 && isArray(moments[0])) { - moments = moments[0]; - } - if (!moments.length) { - return moment(); - } - res = moments[0]; - for (i = 1; i < moments.length; ++i) { - if (moments[i][fn](res)) { - res = moments[i]; - } - } - return res; + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Network.prototype._drawControlNodes = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + edges[id]._drawControlNodes(ctx); } + } + }; - moment.min = function () { - var args = [].slice.call(arguments, 0); + /** + * Find a stable position for all nodes + * @private + */ + Network.prototype._stabilize = function() { + if (this.constants.freezeForStabilization == true) { + this._freezeDefinedNodes(); + } - return pickBy('isBefore', args); - }; + // find stable position + var count = 0; + while (this.moving && count < this.constants.stabilizationIterations) { + this._physicsTick(); + count++; + } + this.zoomExtent(false,true); + if (this.constants.freezeForStabilization == true) { + this._restoreFrozenNodes(); + } + this.emit("stabilized",{iterations:count}); + }; - moment.max = function () { - var args = [].slice.call(arguments, 0); + /** + * When initializing and stabilizing, we can freeze nodes with a predefined position. This greatly speeds up stabilization + * because only the supportnodes for the smoothCurves have to settle. + * + * @private + */ + Network.prototype._freezeDefinedNodes = function() { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (nodes[id].x != null && nodes[id].y != null) { + nodes[id].fixedData.x = nodes[id].xFixed; + nodes[id].fixedData.y = nodes[id].yFixed; + nodes[id].xFixed = true; + nodes[id].yFixed = true; + } + } + } + }; - return pickBy('isAfter', args); - }; + /** + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @private + */ + Network.prototype._restoreFrozenNodes = function() { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (nodes[id].fixedData.x != null) { + nodes[id].xFixed = nodes[id].fixedData.x; + nodes[id].yFixed = nodes[id].fixedData.y; + } + } + } + }; - // creating with utc - moment.utc = function (input, format, lang, strict) { - var c; - if (typeof(lang) === "boolean") { - strict = lang; - lang = undefined; - } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._useUTC = true; - c._isUTC = true; - c._l = lang; - c._i = input; - c._f = format; - c._strict = strict; - c._pf = defaultParsingFlags(); + /** + * Check if any of the nodes is still moving + * @param {number} vmin the minimum velocity considered as 'moving' + * @return {boolean} true if moving, false if non of the nodes is moving + * @private + */ + Network.prototype._isMoving = function(vmin) { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { + return true; + } + } + return false; + }; - return makeMoment(c).utc(); - }; - // creating with unix timestamp (in seconds) - moment.unix = function (input) { - return moment(input * 1000); - }; + /** + * /** + * Perform one discrete step for all nodes + * + * @private + */ + Network.prototype._discreteStepNodes = function(checkMovement) { + var interval = this.physicsDiscreteStepsize; + var nodes = this.nodes; + var nodeId; + var nodesPresent = false; - // duration - moment.duration = function (input, key) { - var duration = input, - // matching against regexp is expensive, do it on demand - match = null, - sign, - ret, - parseIso; + if (this.constants.maxVelocity > 0) { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStepLimited(interval, this.constants.maxVelocity); + nodesPresent = true; + } + } + } + else { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStep(interval); + nodesPresent = true; + } + } + } - if (moment.isDuration(input)) { - duration = { - ms: input._milliseconds, - d: input._days, - M: input._months - }; - } else if (typeof input === 'number') { - duration = {}; - if (key) { - duration[key] = input; - } else { - duration.milliseconds = input; - } - } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) { - sign = (match[1] === "-") ? -1 : 1; - duration = { - y: 0, - d: toInt(match[DATE]) * sign, - h: toInt(match[HOUR]) * sign, - m: toInt(match[MINUTE]) * sign, - s: toInt(match[SECOND]) * sign, - ms: toInt(match[MILLISECOND]) * sign - }; - } else if (!!(match = isoDurationRegex.exec(input))) { - sign = (match[1] === "-") ? -1 : 1; - parseIso = function (inp) { - // We'd normally use ~~inp for this, but unfortunately it also - // converts floats to ints. - // inp may be undefined, so careful calling replace on it. - var res = inp && parseFloat(inp.replace(',', '.')); - // apply sign while we're at it - return (isNaN(res) ? 0 : res) * sign; - }; - duration = { - y: parseIso(match[2]), - M: parseIso(match[3]), - d: parseIso(match[4]), - h: parseIso(match[5]), - m: parseIso(match[6]), - s: parseIso(match[7]), - w: parseIso(match[8]) - }; - } + if (nodesPresent == true && (checkMovement === undefined || checkMovement == true)) { + var vminCorrected = this.constants.minVelocity / Math.max(this.scale,0.05); + if (vminCorrected > 0.5*this.constants.maxVelocity) { + this.moving = true; + } + else { + this.moving = this._isMoving(vminCorrected); + if (this.moving == false) { + this.emit("stabilized",{iterations:null}); + } + this.moving = this.moving || this.configurePhysics; - ret = new Duration(duration); + } + } + }; - if (moment.isDuration(input) && input.hasOwnProperty('_lang')) { - ret._lang = input._lang; - } + /** + * A single simulation step (or "tick") in the physics simulation + * + * @private + */ + Network.prototype._physicsTick = function() { + if (!this.freezeSimulation) { + if (this.moving == true) { + this._doInAllActiveSectors("_initializeForceCalculation"); + this._doInAllActiveSectors("_discreteStepNodes"); + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._doInSupportSector("_discreteStepNodes", false); + } + this._findCenter(this._getRange()) + } + } + }; - return ret; - }; - // version number - moment.version = VERSION; + /** + * This function runs one step of the animation. It calls an x amount of physics ticks and one render tick. + * It reschedules itself at the beginning of the function + * + * @private + */ + Network.prototype._animationStep = function() { + // reset the timer so a new scheduled animation step can be set + this.timer = undefined; + // handle the keyboad movement + this._handleNavigation(); - // default format - moment.defaultFormat = isoFormat; + // this schedules a new animation step + this.start(); - // constant that refers to the ISO standard - moment.ISO_8601 = function () {}; + // start the physics simulation + var calculationTime = Date.now(); + var maxSteps = 1; + this._physicsTick(); + var timeRequired = Date.now() - calculationTime; + while (timeRequired < 0.9*(this.renderTimestep - this.renderTime) && maxSteps < this.maxPhysicsTicksPerRender) { + this._physicsTick(); + timeRequired = Date.now() - calculationTime; + maxSteps++; + } + // start the rendering process + var renderTime = Date.now(); + this._redraw(); + this.renderTime = Date.now() - renderTime; - // Plugins that add properties should also add the key here (null value), - // so we can properly clone ourselves. - moment.momentProperties = momentProperties; + }; - // This function will be called whenever a moment is mutated. - // It is intended to keep the offset in sync with the timezone. - moment.updateOffset = function () {}; + if (typeof window !== 'undefined') { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || + window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } - // This function allows you to set a threshold for relative time strings - moment.relativeTimeThreshold = function(threshold, limit) { - if (relativeTimeThresholds[threshold] === undefined) { - return false; - } - relativeTimeThresholds[threshold] = limit; - return true; - }; + /** + * Schedule a animation step with the refreshrate interval. + */ + Network.prototype.start = function() { + if (this.moving == true || this.xIncrement != 0 || this.yIncrement != 0 || this.zoomIncrement != 0) { + if (!this.timer) { + var ua = navigator.userAgent.toLowerCase(); - // This function will load languages and then set the global language. If - // no arguments are passed in, it will simply return the current global - // language key. - moment.lang = function (key, values) { - var r; - if (!key) { - return moment.fn._lang._abbr; - } - if (values) { - loadLang(normalizeLanguage(key), values); - } else if (values === null) { - unloadLang(key); - key = 'en'; - } else if (!languages[key]) { - getLangDefinition(key); + var requiresTimeout = false; + if (ua.indexOf('msie 9.0') != -1) { // IE 9 + requiresTimeout = true; + } + else if (ua.indexOf('safari') != -1) { // safari + if (ua.indexOf('chrome') <= -1) { + requiresTimeout = true; } - r = moment.duration.fn._lang = moment.fn._lang = getLangDefinition(key); - return r._abbr; - }; + } - // returns language data - moment.langData = function (key) { - if (key && key._lang && key._lang._abbr) { - key = key._lang._abbr; - } - return getLangDefinition(key); - }; + if (requiresTimeout == true) { + this.timer = window.setTimeout(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function + } + else{ + this.timer = window.requestAnimationFrame(this._animationStep.bind(this), this.renderTimestep); // wait this.renderTimeStep milliseconds and perform the animation step function + } + } + } + else { + this._redraw(); + } + }; - // compare moment object - moment.isMoment = function (obj) { - return obj instanceof Moment || - (obj != null && obj.hasOwnProperty('_isAMomentObject')); - }; - // for typechecking Duration objects - moment.isDuration = function (obj) { - return obj instanceof Duration; + /** + * Move the network according to the keyboard presses. + * + * @private + */ + Network.prototype._handleNavigation = function() { + if (this.xIncrement != 0 || this.yIncrement != 0) { + var translation = this._getTranslation(); + this._setTranslation(translation.x+this.xIncrement, translation.y+this.yIncrement); + } + if (this.zoomIncrement != 0) { + var center = { + x: this.frame.canvas.clientWidth / 2, + y: this.frame.canvas.clientHeight / 2 }; + this._zoom(this.scale*(1 + this.zoomIncrement), center); + } + }; + - for (i = lists.length - 1; i >= 0; --i) { - makeList(lists[i]); - } + /** + * Freeze the _animationStep + */ + Network.prototype.toggleFreeze = function() { + if (this.freezeSimulation == false) { + this.freezeSimulation = true; + } + else { + this.freezeSimulation = false; + this.start(); + } + }; - moment.normalizeUnits = function (units) { - return normalizeUnits(units); - }; - moment.invalid = function (flags) { - var m = moment.utc(NaN); - if (flags != null) { - extend(m._pf, flags); - } - else { - m._pf.userInvalidated = true; + /** + * This function cleans the support nodes if they are not needed and adds them when they are. + * + * @param {boolean} [disableStart] + * @private + */ + Network.prototype._configureSmoothCurves = function(disableStart) { + if (disableStart === undefined) { + disableStart = true; + } + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._createBezierNodes(); + // cleanup unused support nodes + for (var nodeId in this.sectors['support']['nodes']) { + if (this.sectors['support']['nodes'].hasOwnProperty(nodeId)) { + if (this.edges[this.sectors['support']['nodes'][nodeId].parentEdgeId] === undefined) { + delete this.sectors['support']['nodes'][nodeId]; } + } + } + } + else { + // delete the support nodes + this.sectors['support']['nodes'] = {}; + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.edges[edgeId].via = null; + } + } + } - return m; - }; - - moment.parseZone = function () { - return moment.apply(null, arguments).parseZone(); - }; - moment.parseTwoDigitYear = function (input) { - return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); - }; + this._updateCalculationNodes(); + if (!disableStart) { + this.moving = true; + this.start(); + } + }; - /************************************ - Moment Prototype - ************************************/ + /** + * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but + * are used for the force calculation. + * + * @private + */ + Network.prototype._createBezierNodes = function() { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + var edge = this.edges[edgeId]; + if (edge.via == null) { + var nodeId = "edgeId:".concat(edge.id); + this.sectors['support']['nodes'][nodeId] = new Node( + {id:nodeId, + mass:1, + shape:'circle', + image:"", + internalMultiplier:1 + },{},{},this.constants); + edge.via = this.sectors['support']['nodes'][nodeId]; + edge.via.parentEdgeId = edge.id; + edge.positionBezierNode(); + } + } + } + } + }; - extend(moment.fn = Moment.prototype, { + /** + * load the functions that load the mixins into the prototype. + * + * @private + */ + Network.prototype._initializeMixinLoaders = function () { + for (var mixin in MixinLoader) { + if (MixinLoader.hasOwnProperty(mixin)) { + Network.prototype[mixin] = MixinLoader[mixin]; + } + } + }; - clone : function () { - return moment(this); - }, + /** + * Load the XY positions of the nodes into the dataset. + */ + Network.prototype.storePosition = function() { + var dataArray = []; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + var allowedToMoveX = !this.nodes.xFixed; + var allowedToMoveY = !this.nodes.yFixed; + if (this.nodesData._data[nodeId].x != Math.round(node.x) || this.nodesData._data[nodeId].y != Math.round(node.y)) { + dataArray.push({id:nodeId,x:Math.round(node.x),y:Math.round(node.y),allowedToMoveX:allowedToMoveX,allowedToMoveY:allowedToMoveY}); + } + } + } + this.nodesData.update(dataArray); + }; - valueOf : function () { - return +this._d + ((this._offset || 0) * 60000); - }, - unix : function () { - return Math.floor(+this / 1000); - }, + /** + * Center a node in view. + * + * @param {Number} nodeId + * @param {Number} [zoomLevel] + */ + Network.prototype.focusOnNode = function (nodeId, zoomLevel) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (zoomLevel === undefined) { + zoomLevel = this._getScale(); + } + var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; - toString : function () { - return this.clone().lang('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); - }, + var requiredScale = zoomLevel; + this._setScale(requiredScale); - toDate : function () { - return this._offset ? new Date(+this) : this._d; - }, + var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); + var translation = this._getTranslation(); - toISOString : function () { - var m = moment(this).utc(); - if (0 < m.year() && m.year() <= 9999) { - return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } else { - return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } - }, + var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, + y:canvasCenter.y - nodePosition.y}; - toArray : function () { - var m = this; - return [ - m.year(), - m.month(), - m.date(), - m.hours(), - m.minutes(), - m.seconds(), - m.milliseconds() - ]; - }, + this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, + translation.y + requiredScale * distanceFromCenter.y); + this.redraw(); + } + else { + console.log("This nodeId cannot be found.") + } + }; - isValid : function () { - return isValid(this); - }, + module.exports = Network; - isDSTShifted : function () { - if (this._a) { - return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; - } +/***/ }, +/* 42 */ +/***/ function(module, exports, __webpack_require__) { - return false; - }, + /** + * Copyright 2012 Craig Campbell + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Mousetrap is a simple keyboard shortcut library for Javascript with + * no external dependencies + * + * @version 1.1.2 + * @url craig.is/killing/mice + */ - parsingFlags : function () { - return extend({}, this._pf); - }, + /** + * mapping of special keycodes to their corresponding keys + * + * everything in this dictionary cannot use keypress events + * so it has to be here to map to the correct keycodes for + * keyup/keydown events + * + * @type {Object} + */ + var _MAP = { + 8: 'backspace', + 9: 'tab', + 13: 'enter', + 16: 'shift', + 17: 'ctrl', + 18: 'alt', + 20: 'capslock', + 27: 'esc', + 32: 'space', + 33: 'pageup', + 34: 'pagedown', + 35: 'end', + 36: 'home', + 37: 'left', + 38: 'up', + 39: 'right', + 40: 'down', + 45: 'ins', + 46: 'del', + 91: 'meta', + 93: 'meta', + 224: 'meta' + }, - invalidAt: function () { - return this._pf.overflow; - }, + /** + * mapping for special characters so they can support + * + * this dictionary is only used incase you want to bind a + * keyup or keydown event to one of these keys + * + * @type {Object} + */ + _KEYCODE_MAP = { + 106: '*', + 107: '+', + 109: '-', + 110: '.', + 111 : '/', + 186: ';', + 187: '=', + 188: ',', + 189: '-', + 190: '.', + 191: '/', + 192: '`', + 219: '[', + 220: '\\', + 221: ']', + 222: '\'' + }, - utc : function () { - return this.zone(0); - }, + /** + * this is a mapping of keys that require shift on a US keypad + * back to the non shift equivelents + * + * this is so you can use keyup events with these keys + * + * note that this will only work reliably on US keyboards + * + * @type {Object} + */ + _SHIFT_MAP = { + '~': '`', + '!': '1', + '@': '2', + '#': '3', + '$': '4', + '%': '5', + '^': '6', + '&': '7', + '*': '8', + '(': '9', + ')': '0', + '_': '-', + '+': '=', + ':': ';', + '\"': '\'', + '<': ',', + '>': '.', + '?': '/', + '|': '\\' + }, - local : function () { - this.zone(0); - this._isUTC = false; - return this; - }, + /** + * this is a list of special strings you can use to map + * to modifier keys when you specify your keyboard shortcuts + * + * @type {Object} + */ + _SPECIAL_ALIASES = { + 'option': 'alt', + 'command': 'meta', + 'return': 'enter', + 'escape': 'esc' + }, - format : function (inputString) { - var output = formatMoment(this, inputString || moment.defaultFormat); - return this.lang().postformat(output); - }, + /** + * variable to store the flipped version of _MAP from above + * needed to check if we should use keypress or not when no action + * is specified + * + * @type {Object|undefined} + */ + _REVERSE_MAP, - add : function (input, val) { - var dur; - // switch args to support add('s', 1) and add(1, 's') - if (typeof input === 'string' && typeof val === 'string') { - dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); - } else if (typeof input === 'string') { - dur = moment.duration(+val, input); - } else { - dur = moment.duration(input, val); - } - addOrSubtractDurationFromMoment(this, dur, 1); - return this; - }, + /** + * a list of all the callbacks setup via Mousetrap.bind() + * + * @type {Object} + */ + _callbacks = {}, - subtract : function (input, val) { - var dur; - // switch args to support subtract('s', 1) and subtract(1, 's') - if (typeof input === 'string' && typeof val === 'string') { - dur = moment.duration(isNaN(+val) ? +input : +val, isNaN(+val) ? val : input); - } else if (typeof input === 'string') { - dur = moment.duration(+val, input); - } else { - dur = moment.duration(input, val); - } - addOrSubtractDurationFromMoment(this, dur, -1); - return this; - }, + /** + * direct map of string combinations to callbacks used for trigger() + * + * @type {Object} + */ + _direct_map = {}, - diff : function (input, units, asFloat) { - var that = makeAs(input, this), - zoneDiff = (this.zone() - that.zone()) * 6e4, - diff, output; + /** + * keeps track of what level each sequence is at since multiple + * sequences can start out with the same sequence + * + * @type {Object} + */ + _sequence_levels = {}, - units = normalizeUnits(units); + /** + * variable to store the setTimeout call + * + * @type {null|number} + */ + _reset_timer, - if (units === 'year' || units === 'month') { - // average number of days in the months in the given dates - diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 - // difference in months - output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); - // adjust by taking difference in days, average number of days - // and dst in the given months. - output += ((this - moment(this).startOf('month')) - - (that - moment(that).startOf('month'))) / diff; - // same as above but with zones, to negate all dst - output -= ((this.zone() - moment(this).startOf('month').zone()) - - (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; - if (units === 'year') { - output = output / 12; - } - } else { - diff = (this - that); - output = units === 'second' ? diff / 1e3 : // 1000 - units === 'minute' ? diff / 6e4 : // 1000 * 60 - units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 - units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst - units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst - diff; - } - return asFloat ? output : absRound(output); - }, + /** + * temporary state where we will ignore the next keyup + * + * @type {boolean|string} + */ + _ignore_next_keyup = false, - from : function (time, withoutSuffix) { - return moment.duration(this.diff(time)).lang(this.lang()._abbr).humanize(!withoutSuffix); - }, + /** + * are we currently inside of a sequence? + * type of action ("keyup" or "keydown" or "keypress") or false + * + * @type {boolean|string} + */ + _inside_sequence = false; - fromNow : function (withoutSuffix) { - return this.from(moment(), withoutSuffix); - }, + /** + * loop through the f keys, f1 to f19 and add them to the map + * programatically + */ + for (var i = 1; i < 20; ++i) { + _MAP[111 + i] = 'f' + i; + } - calendar : function (time) { - // We want to compare the start of today, vs this. - // Getting start-of-today depends on whether we're zone'd or not. - var now = time || moment(), - sod = makeAs(now, this).startOf('day'), - diff = this.diff(sod, 'days', true), - format = diff < -6 ? 'sameElse' : - diff < -1 ? 'lastWeek' : - diff < 0 ? 'lastDay' : - diff < 1 ? 'sameDay' : - diff < 2 ? 'nextDay' : - diff < 7 ? 'nextWeek' : 'sameElse'; - return this.format(this.lang().calendar(format, this)); - }, + /** + * loop through to map numbers on the numeric keypad + */ + for (i = 0; i <= 9; ++i) { + _MAP[i + 96] = i; + } - isLeapYear : function () { - return isLeapYear(this.year()); - }, + /** + * cross browser add event method + * + * @param {Element|HTMLDocument} object + * @param {string} type + * @param {Function} callback + * @returns void + */ + function _addEvent(object, type, callback) { + if (object.addEventListener) { + return object.addEventListener(type, callback, false); + } - isDST : function () { - return (this.zone() < this.clone().month(0).zone() || - this.zone() < this.clone().month(5).zone()); - }, + object.attachEvent('on' + type, callback); + } - day : function (input) { - var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); - if (input != null) { - input = parseWeekday(input, this.lang()); - return this.add({ d : input - day }); - } else { - return day; - } - }, + /** + * takes the event and returns the key character + * + * @param {Event} e + * @return {string} + */ + function _characterFromEvent(e) { - month : makeAccessor('Month', true), + // for keypress events we should return the character as is + if (e.type == 'keypress') { + return String.fromCharCode(e.which); + } - startOf: function (units) { - units = normalizeUnits(units); - // the following switch intentionally omits break keywords - // to utilize falling through the cases. - switch (units) { - case 'year': - this.month(0); - /* falls through */ - case 'quarter': - case 'month': - this.date(1); - /* falls through */ - case 'week': - case 'isoWeek': - case 'day': - this.hours(0); - /* falls through */ - case 'hour': - this.minutes(0); - /* falls through */ - case 'minute': - this.seconds(0); - /* falls through */ - case 'second': - this.milliseconds(0); - /* falls through */ - } + // for non keypress events the special maps are needed + if (_MAP[e.which]) { + return _MAP[e.which]; + } - // weeks are a special case - if (units === 'week') { - this.weekday(0); - } else if (units === 'isoWeek') { - this.isoWeekday(1); - } + if (_KEYCODE_MAP[e.which]) { + return _KEYCODE_MAP[e.which]; + } - // quarters are also special - if (units === 'quarter') { - this.month(Math.floor(this.month() / 3) * 3); - } + // if it is not in the special map + return String.fromCharCode(e.which).toLowerCase(); + } - return this; - }, + /** + * should we stop this event before firing off callbacks + * + * @param {Event} e + * @return {boolean} + */ + function _stop(e) { + var element = e.target || e.srcElement, + tag_name = element.tagName; - endOf: function (units) { - units = normalizeUnits(units); - return this.startOf(units).add((units === 'isoWeek' ? 'week' : units), 1).subtract('ms', 1); - }, + // if the element has the class "mousetrap" then no need to stop + if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { + return false; + } - isAfter: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) > +moment(input).startOf(units); - }, + // stop for input, select, and textarea + return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); + } - isBefore: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) < +moment(input).startOf(units); - }, + /** + * checks if two arrays are equal + * + * @param {Array} modifiers1 + * @param {Array} modifiers2 + * @returns {boolean} + */ + function _modifiersMatch(modifiers1, modifiers2) { + return modifiers1.sort().join(',') === modifiers2.sort().join(','); + } - isSame: function (input, units) { - units = units || 'ms'; - return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); - }, + /** + * resets all sequence counters except for the ones passed in + * + * @param {Object} do_not_reset + * @returns void + */ + function _resetSequences(do_not_reset) { + do_not_reset = do_not_reset || {}; - min: deprecate( - "moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548", - function (other) { - other = moment.apply(null, arguments); - return other < this ? this : other; - } - ), + var active_sequences = false, + key; - max: deprecate( - "moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548", - function (other) { - other = moment.apply(null, arguments); - return other > this ? this : other; - } - ), + for (key in _sequence_levels) { + if (do_not_reset[key]) { + active_sequences = true; + continue; + } + _sequence_levels[key] = 0; + } - // keepTime = true means only change the timezone, without affecting - // the local hour. So 5:31:26 +0300 --[zone(2, true)]--> 5:31:26 +0200 - // It is possible that 5:31:26 doesn't exist int zone +0200, so we - // adjust the time as needed, to be valid. - // - // Keeping the time actually adds/subtracts (one hour) - // from the actual represented time. That is why we call updateOffset - // a second time. In case it wants us to change the offset again - // _changeInProgress == true case, then we have to adjust, because - // there is no such time in the given timezone. - zone : function (input, keepTime) { - var offset = this._offset || 0; - if (input != null) { - if (typeof input === "string") { - input = timezoneMinutesFromString(input); - } - if (Math.abs(input) < 16) { - input = input * 60; - } - this._offset = input; - this._isUTC = true; - if (offset !== input) { - if (!keepTime || this._changeInProgress) { - addOrSubtractDurationFromMoment(this, - moment.duration(offset - input, 'm'), 1, false); - } else if (!this._changeInProgress) { - this._changeInProgress = true; - moment.updateOffset(this, true); - this._changeInProgress = null; - } - } - } else { - return this._isUTC ? offset : this._d.getTimezoneOffset(); - } - return this; - }, + if (!active_sequences) { + _inside_sequence = false; + } + } - zoneAbbr : function () { - return this._isUTC ? "UTC" : ""; - }, + /** + * finds all callbacks that match based on the keycode, modifiers, + * and action + * + * @param {string} character + * @param {Array} modifiers + * @param {string} action + * @param {boolean=} remove - should we remove any matches + * @param {string=} combination + * @returns {Array} + */ + function _getMatches(character, modifiers, action, remove, combination) { + var i, + callback, + matches = []; - zoneName : function () { - return this._isUTC ? "Coordinated Universal Time" : ""; - }, + // if there are no events related to this keycode + if (!_callbacks[character]) { + return []; + } - parseZone : function () { - if (this._tzm) { - this.zone(this._tzm); - } else if (typeof this._i === 'string') { - this.zone(this._i); - } - return this; - }, + // if a modifier key is coming up on its own we should allow it + if (action == 'keyup' && _isModifier(character)) { + modifiers = [character]; + } - hasAlignedHourOffset : function (input) { - if (!input) { - input = 0; - } - else { - input = moment(input).zone(); - } + // loop through all callbacks for the key that was pressed + // and see if any of them match + for (i = 0; i < _callbacks[character].length; ++i) { + callback = _callbacks[character][i]; - return (this.zone() - input) % 60 === 0; - }, + // if this is a sequence but it is not at the right level + // then move onto the next match + if (callback.seq && _sequence_levels[callback.seq] != callback.level) { + continue; + } - daysInMonth : function () { - return daysInMonth(this.year(), this.month()); - }, + // if the action we are looking for doesn't match the action we got + // then we should keep going + if (action != callback.action) { + continue; + } - dayOfYear : function (input) { - var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; - return input == null ? dayOfYear : this.add("d", (input - dayOfYear)); - }, + // if this is a keypress event that means that we need to only + // look at the character, otherwise check the modifiers as + // well + if (action == 'keypress' || _modifiersMatch(modifiers, callback.modifiers)) { - quarter : function (input) { - return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); - }, + // remove is used so if you change your mind and call bind a + // second time with a new function the first one is overwritten + if (remove && callback.combo == combination) { + _callbacks[character].splice(i, 1); + } + + matches.push(callback); + } + } - weekYear : function (input) { - var year = weekOfYear(this, this.lang()._week.dow, this.lang()._week.doy).year; - return input == null ? year : this.add("y", (input - year)); - }, + return matches; + } - isoWeekYear : function (input) { - var year = weekOfYear(this, 1, 4).year; - return input == null ? year : this.add("y", (input - year)); - }, + /** + * takes a key event and figures out what the modifiers are + * + * @param {Event} e + * @returns {Array} + */ + function _eventModifiers(e) { + var modifiers = []; - week : function (input) { - var week = this.lang().week(this); - return input == null ? week : this.add("d", (input - week) * 7); - }, + if (e.shiftKey) { + modifiers.push('shift'); + } - isoWeek : function (input) { - var week = weekOfYear(this, 1, 4).week; - return input == null ? week : this.add("d", (input - week) * 7); - }, + if (e.altKey) { + modifiers.push('alt'); + } - weekday : function (input) { - var weekday = (this.day() + 7 - this.lang()._week.dow) % 7; - return input == null ? weekday : this.add("d", input - weekday); - }, + if (e.ctrlKey) { + modifiers.push('ctrl'); + } - isoWeekday : function (input) { - // behaves the same as moment#day except - // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) - // as a setter, sunday should belong to the previous week. - return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); - }, + if (e.metaKey) { + modifiers.push('meta'); + } - isoWeeksInYear : function () { - return weeksInYear(this.year(), 1, 4); - }, + return modifiers; + } - weeksInYear : function () { - var weekInfo = this._lang._week; - return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); - }, + /** + * actually calls the callback function + * + * if your callback function returns false this will use the jquery + * convention - prevent default and stop propogation on the event + * + * @param {Function} callback + * @param {Event} e + * @returns void + */ + function _fireCallback(callback, e) { + if (callback(e) === false) { + if (e.preventDefault) { + e.preventDefault(); + } - get : function (units) { - units = normalizeUnits(units); - return this[units](); - }, + if (e.stopPropagation) { + e.stopPropagation(); + } - set : function (units, value) { - units = normalizeUnits(units); - if (typeof this[units] === 'function') { - this[units](value); - } - return this; - }, + e.returnValue = false; + e.cancelBubble = true; + } + } - // If passed a language key, it will set the language for this - // instance. Otherwise, it will return the language configuration - // variables for this instance. - lang : function (key) { - if (key === undefined) { - return this._lang; - } else { - this._lang = getLangDefinition(key); - return this; - } - } - }); + /** + * handles a character key event + * + * @param {string} character + * @param {Event} e + * @returns void + */ + function _handleCharacter(character, e) { - function rawMonthSetter(mom, value) { - var dayOfMonth; + // if this event should not happen stop here + if (_stop(e)) { + return; + } - // TODO: Move this out of here! - if (typeof value === 'string') { - value = mom.lang().monthsParse(value); - // TODO: Another silent failure? - if (typeof value !== 'number') { - return mom; - } - } + var callbacks = _getMatches(character, _eventModifiers(e), e.type), + i, + do_not_reset = {}, + processed_sequence_callback = false; - dayOfMonth = Math.min(mom.date(), - daysInMonth(mom.year(), value)); - mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); - return mom; - } + // loop through matching callbacks for this key event + for (i = 0; i < callbacks.length; ++i) { - function rawGetter(mom, unit) { - return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); - } + // fire for all sequence callbacks + // this is because if for example you have multiple sequences + // bound such as "g i" and "g t" they both need to fire the + // callback for matching g cause otherwise you can only ever + // match the first one + if (callbacks[i].seq) { + processed_sequence_callback = true; - function rawSetter(mom, unit, value) { - if (unit === 'Month') { - return rawMonthSetter(mom, value); - } else { - return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); - } - } + // keep a list of which sequences were matches for later + do_not_reset[callbacks[i].seq] = 1; + _fireCallback(callbacks[i].callback, e); + continue; + } - function makeAccessor(unit, keepTime) { - return function (value) { - if (value != null) { - rawSetter(this, unit, value); - moment.updateOffset(this, keepTime); - return this; - } else { - return rawGetter(this, unit); - } - }; - } + // if there were no sequence matches but we are still here + // that means this is a regular match so we should fire that + if (!processed_sequence_callback && !_inside_sequence) { + _fireCallback(callbacks[i].callback, e); + } + } - moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); - moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); - moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); - // Setting the hour should keep the time, because the user explicitly - // specified which hour he wants. So trying to maintain the same hour (in - // a new timezone) makes sense. Adding/subtracting hours does not follow - // this rule. - moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); - // moment.fn.month is defined separately - moment.fn.date = makeAccessor('Date', true); - moment.fn.dates = deprecate("dates accessor is deprecated. Use date instead.", makeAccessor('Date', true)); - moment.fn.year = makeAccessor('FullYear', true); - moment.fn.years = deprecate("years accessor is deprecated. Use year instead.", makeAccessor('FullYear', true)); + // if you are inside of a sequence and the key you are pressing + // is not a modifier key then we should reset all sequences + // that were not matched by this key event + if (e.type == _inside_sequence && !_isModifier(character)) { + _resetSequences(do_not_reset); + } + } - // add plural methods - moment.fn.days = moment.fn.day; - moment.fn.months = moment.fn.month; - moment.fn.weeks = moment.fn.week; - moment.fn.isoWeeks = moment.fn.isoWeek; - moment.fn.quarters = moment.fn.quarter; + /** + * handles a keydown event + * + * @param {Event} e + * @returns void + */ + function _handleKey(e) { - // add aliased format methods - moment.fn.toJSON = moment.fn.toISOString; + // normalize e.which for key events + // @see http://stackoverflow.com/questions/4285627/javascript-keycode-vs-charcode-utter-confusion + e.which = typeof e.which == "number" ? e.which : e.keyCode; - /************************************ - Duration Prototype - ************************************/ + var character = _characterFromEvent(e); + // no character found then stop + if (!character) { + return; + } - extend(moment.duration.fn = Duration.prototype, { + if (e.type == 'keyup' && _ignore_next_keyup == character) { + _ignore_next_keyup = false; + return; + } - _bubble : function () { - var milliseconds = this._milliseconds, - days = this._days, - months = this._months, - data = this._data, - seconds, minutes, hours, years; + _handleCharacter(character, e); + } - // The following code bubbles up values, see the tests for - // examples of what that means. - data.milliseconds = milliseconds % 1000; + /** + * determines if the keycode specified is a modifier key or not + * + * @param {string} key + * @returns {boolean} + */ + function _isModifier(key) { + return key == 'shift' || key == 'ctrl' || key == 'alt' || key == 'meta'; + } + + /** + * called to set a 1 second timeout on the specified sequence + * + * this is so after each key press in the sequence you have 1 second + * to press the next key before you have to start over + * + * @returns void + */ + function _resetSequenceTimer() { + clearTimeout(_reset_timer); + _reset_timer = setTimeout(_resetSequences, 1000); + } - seconds = absRound(milliseconds / 1000); - data.seconds = seconds % 60; + /** + * reverses the map lookup so that we can look for specific keys + * to see what can and can't use keypress + * + * @return {Object} + */ + function _getReverseMap() { + if (!_REVERSE_MAP) { + _REVERSE_MAP = {}; + for (var key in _MAP) { - minutes = absRound(seconds / 60); - data.minutes = minutes % 60; + // pull out the numeric keypad from here cause keypress should + // be able to detect the keys from the character + if (key > 95 && key < 112) { + continue; + } - hours = absRound(minutes / 60); - data.hours = hours % 24; + if (_MAP.hasOwnProperty(key)) { + _REVERSE_MAP[_MAP[key]] = key; + } + } + } + return _REVERSE_MAP; + } - days += absRound(hours / 24); - data.days = days % 30; + /** + * picks the best action based on the key combination + * + * @param {string} key - character for key + * @param {Array} modifiers + * @param {string=} action passed in + */ + function _pickBestAction(key, modifiers, action) { - months += absRound(days / 30); - data.months = months % 12; + // if no action was picked in we should try to pick the one + // that we think would work best for this key + if (!action) { + action = _getReverseMap()[key] ? 'keydown' : 'keypress'; + } - years = absRound(months / 12); - data.years = years; - }, + // modifier keys don't work as expected with keypress, + // switch to keydown + if (action == 'keypress' && modifiers.length) { + action = 'keydown'; + } - weeks : function () { - return absRound(this.days() / 7); - }, + return action; + } - valueOf : function () { - return this._milliseconds + - this._days * 864e5 + - (this._months % 12) * 2592e6 + - toInt(this._months / 12) * 31536e6; - }, + /** + * binds a key sequence to an event + * + * @param {string} combo - combo specified in bind call + * @param {Array} keys + * @param {Function} callback + * @param {string=} action + * @returns void + */ + function _bindSequence(combo, keys, callback, action) { - humanize : function (withSuffix) { - var difference = +this, - output = relativeTime(difference, !withSuffix, this.lang()); + // start off by adding a sequence level record for this combination + // and setting the level to 0 + _sequence_levels[combo] = 0; - if (withSuffix) { - output = this.lang().pastFuture(difference, output); - } + // if there is no action pick the best one for the first key + // in the sequence + if (!action) { + action = _pickBestAction(keys[0], []); + } - return this.lang().postformat(output); - }, + /** + * callback to increase the sequence level for this sequence and reset + * all other sequences that were active + * + * @param {Event} e + * @returns void + */ + var _increaseSequence = function(e) { + _inside_sequence = action; + ++_sequence_levels[combo]; + _resetSequenceTimer(); + }, - add : function (input, val) { - // supports only 2.0-style add(1, 's') or add(moment) - var dur = moment.duration(input, val); + /** + * wraps the specified callback inside of another function in order + * to reset all sequence counters as soon as this sequence is done + * + * @param {Event} e + * @returns void + */ + _callbackAndReset = function(e) { + _fireCallback(callback, e); - this._milliseconds += dur._milliseconds; - this._days += dur._days; - this._months += dur._months; + // we should ignore the next key up if the action is key down + // or keypress. this is so if you finish a sequence and + // release the key the final key will not trigger a keyup + if (action !== 'keyup') { + _ignore_next_keyup = _characterFromEvent(e); + } - this._bubble(); + // weird race condition if a sequence ends with the key + // another sequence begins with + setTimeout(_resetSequences, 10); + }, + i; - return this; - }, + // loop through keys one at a time and bind the appropriate callback + // function. for any key leading up to the final one it should + // increase the sequence. after the final, it should reset all sequences + for (i = 0; i < keys.length; ++i) { + _bindSingle(keys[i], i < keys.length - 1 ? _increaseSequence : _callbackAndReset, action, combo, i); + } + } - subtract : function (input, val) { - var dur = moment.duration(input, val); + /** + * binds a single keyboard combination + * + * @param {string} combination + * @param {Function} callback + * @param {string=} action + * @param {string=} sequence_name - name of sequence if part of sequence + * @param {number=} level - what part of the sequence the command is + * @returns void + */ + function _bindSingle(combination, callback, action, sequence_name, level) { - this._milliseconds -= dur._milliseconds; - this._days -= dur._days; - this._months -= dur._months; + // make sure multiple spaces in a row become a single space + combination = combination.replace(/\s+/g, ' '); - this._bubble(); + var sequence = combination.split(' '), + i, + key, + keys, + modifiers = []; - return this; - }, + // if this pattern is a sequence of keys then run through this method + // to reprocess each pattern one key at a time + if (sequence.length > 1) { + return _bindSequence(combination, sequence, callback, action); + } - get : function (units) { - units = normalizeUnits(units); - return this[units.toLowerCase() + 's'](); - }, + // take the keys from this pattern and figure out what the actual + // pattern is all about + keys = combination === '+' ? ['+'] : combination.split('+'); - as : function (units) { - units = normalizeUnits(units); - return this['as' + units.charAt(0).toUpperCase() + units.slice(1) + 's'](); - }, + for (i = 0; i < keys.length; ++i) { + key = keys[i]; - lang : moment.fn.lang, + // normalize key names + if (_SPECIAL_ALIASES[key]) { + key = _SPECIAL_ALIASES[key]; + } - toIsoString : function () { - // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js - var years = Math.abs(this.years()), - months = Math.abs(this.months()), - days = Math.abs(this.days()), - hours = Math.abs(this.hours()), - minutes = Math.abs(this.minutes()), - seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); + // if this is not a keypress event then we should + // be smart about using shift keys + // this will only work for US keyboards however + if (action && action != 'keypress' && _SHIFT_MAP[key]) { + key = _SHIFT_MAP[key]; + modifiers.push('shift'); + } - if (!this.asSeconds()) { - // this is the same as C#'s (Noda) and python (isodate)... - // but not other JS (goog.date) - return 'P0D'; - } + // if this key is a modifier then add it to the list of modifiers + if (_isModifier(key)) { + modifiers.push(key); + } + } - return (this.asSeconds() < 0 ? '-' : '') + - 'P' + - (years ? years + 'Y' : '') + - (months ? months + 'M' : '') + - (days ? days + 'D' : '') + - ((hours || minutes || seconds) ? 'T' : '') + - (hours ? hours + 'H' : '') + - (minutes ? minutes + 'M' : '') + - (seconds ? seconds + 'S' : ''); - } - }); + // depending on what the key combination is + // we will try to pick the best event for it + action = _pickBestAction(key, modifiers, action); - function makeDurationGetter(name) { - moment.duration.fn[name] = function () { - return this._data[name]; - }; - } + // make sure to initialize array if this is the first time + // a callback is added for this key + if (!_callbacks[key]) { + _callbacks[key] = []; + } - function makeDurationAsGetter(name, factor) { - moment.duration.fn['as' + name] = function () { - return +this / factor; - }; - } + // remove an existing match if there is one + _getMatches(key, modifiers, action, !sequence_name, combination); - for (i in unitMillisecondFactors) { - if (unitMillisecondFactors.hasOwnProperty(i)) { - makeDurationAsGetter(i, unitMillisecondFactors[i]); - makeDurationGetter(i.toLowerCase()); - } - } + // add this call back to the array + // if it is a sequence put it at the beginning + // if not put it at the end + // + // this is important because the way these are processed expects + // the sequence ones to come first + _callbacks[key][sequence_name ? 'unshift' : 'push']({ + callback: callback, + modifiers: modifiers, + action: action, + seq: sequence_name, + level: level, + combo: combination + }); + } - makeDurationAsGetter('Weeks', 6048e5); - moment.duration.fn.asMonths = function () { - return (+this - this.years() * 31536e6) / 2592e6 + this.years() * 12; - }; + /** + * binds multiple combinations to the same callback + * + * @param {Array} combinations + * @param {Function} callback + * @param {string|undefined} action + * @returns void + */ + function _bindMultiple(combinations, callback, action) { + for (var i = 0; i < combinations.length; ++i) { + _bindSingle(combinations[i], callback, action); + } + } + // start! + _addEvent(document, 'keypress', _handleKey); + _addEvent(document, 'keydown', _handleKey); + _addEvent(document, 'keyup', _handleKey); - /************************************ - Default Lang - ************************************/ + var mousetrap = { + /** + * binds an event to mousetrap + * + * can be a single key, a combination of keys separated with +, + * a comma separated list of keys, an array of keys, or + * a sequence of keys separated by spaces + * + * be sure to list the modifier keys first to make sure that the + * correct key ends up getting bound (the last key in the pattern) + * + * @param {string|Array} keys + * @param {Function} callback + * @param {string=} action - 'keypress', 'keydown', or 'keyup' + * @returns void + */ + bind: function(keys, callback, action) { + _bindMultiple(keys instanceof Array ? keys : [keys], callback, action); + _direct_map[keys + ':' + action] = callback; + return this; + }, - // Set default language, other languages will inherit from English. - moment.lang('en', { - ordinal : function (number) { - var b = number % 10, - output = (toInt(number % 100 / 10) === 1) ? 'th' : - (b === 1) ? 'st' : - (b === 2) ? 'nd' : - (b === 3) ? 'rd' : 'th'; - return number + output; - } - }); + /** + * unbinds an event to mousetrap + * + * the unbinding sets the callback function of the specified key combo + * to an empty function and deletes the corresponding key in the + * _direct_map dict. + * + * the keycombo+action has to be exactly the same as + * it was defined in the bind method + * + * TODO: actually remove this from the _callbacks dictionary instead + * of binding an empty function + * + * @param {string|Array} keys + * @param {string} action + * @returns void + */ + unbind: function(keys, action) { + if (_direct_map[keys + ':' + action]) { + delete _direct_map[keys + ':' + action]; + this.bind(keys, function() {}, action); + } + return this; + }, - /* EMBED_LANGUAGES */ + /** + * triggers an event that has already been bound + * + * @param {string} keys + * @param {string=} action + * @returns void + */ + trigger: function(keys, action) { + _direct_map[keys + ':' + action](); + return this; + }, - /************************************ - Exposing Moment - ************************************/ + /** + * resets the library back to its initial state. this is useful + * if you want to clear out the current keyboard shortcuts and bind + * new ones - for example if you switch to another page + * + * @returns void + */ + reset: function() { + _callbacks = {}; + _direct_map = {}; + return this; + } + }; - function makeGlobal(shouldDeprecate) { - /*global ender:false */ - if (typeof ender !== 'undefined') { - return; - } - oldGlobalMoment = globalScope.moment; - if (shouldDeprecate) { - globalScope.moment = deprecate( - "Accessing Moment through the global scope is " + - "deprecated, and will be removed in an upcoming " + - "release.", - moment); - } else { - globalScope.moment = moment; - } - } + module.exports = mousetrap; - // CommonJS module is defined - if (hasModule) { - module.exports = moment; - } else if (true) { - !(__WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, module) { - if (module.config && module.config() && module.config().noGlobal === true) { - // release the global variable - globalScope.moment = oldGlobalMoment; - } - return moment; - }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - makeGlobal(true); - } else { - makeGlobal(); - } - }).call(this); - - /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(61)(module))) /***/ }, -/* 48 */ +/* 43 */ /***/ function(module, exports, __webpack_require__) { - var __WEBPACK_AMD_DEFINE_RESULT__;/*! Hammer.JS - v1.1.3 - 2014-05-20 - * http://eightmedia.github.io/hammer.js - * - * Copyright (c) 2014 Jorik Tangelder ; - * Licensed under the MIT license */ - - (function(window, undefined) { - 'use strict'; - /** - * @main - * @module hammer + * Parse a text source containing data in DOT language into a JSON object. + * The object contains two lists: one with nodes and one with edges. * - * @class Hammer - * @static - */ - - /** - * Hammer, use this to create instances - * ```` - * var hammertime = new Hammer(myElement); - * ```` + * DOT language reference: http://www.graphviz.org/doc/info/lang.html * - * @method Hammer - * @param {HTMLElement} element - * @param {Object} [options={}] - * @return {Hammer.Instance} - */ - var Hammer = function Hammer(element, options) { - return new Hammer.Instance(element, options || {}); - }; - - /** - * version, as defined in package.json - * the value will be set at each build - * @property VERSION - * @final - * @type {String} - */ - Hammer.VERSION = '1.1.3'; - - /** - * default settings. - * more settings are defined per gesture at `/gestures`. Each gesture can be disabled/enabled - * by setting it's name (like `swipe`) to false. - * You can set the defaults for all instances by changing this object before creating an instance. - * @example - * ```` - * Hammer.defaults.drag = false; - * Hammer.defaults.behavior.touchAction = 'pan-y'; - * delete Hammer.defaults.behavior.userSelect; - * ```` - * @property defaults - * @type {Object} - */ - Hammer.defaults = { - /** - * this setting object adds styles and attributes to the element to prevent the browser from doing - * its native behavior. The css properties are auto prefixed for the browsers when needed. - * @property defaults.behavior - * @type {Object} - */ - behavior: { - /** - * Disables text selection to improve the dragging gesture. When the value is `none` it also sets - * `onselectstart=false` for IE on the element. Mainly for desktop browsers. - * @property defaults.behavior.userSelect - * @type {String} - * @default 'none' - */ - userSelect: 'none', - - /** - * Specifies whether and how a given region can be manipulated by the user (for instance, by panning or zooming). - * Used by Chrome 35> and IE10>. By default this makes the element blocking any touch event. - * @property defaults.behavior.touchAction - * @type {String} - * @default: 'pan-y' - */ - touchAction: 'pan-y', - - /** - * Disables the default callout shown when you touch and hold a touch target. - * On iOS, when you touch and hold a touch target such as a link, Safari displays - * a callout containing information about the link. This property allows you to disable that callout. - * @property defaults.behavior.touchCallout - * @type {String} - * @default 'none' - */ - touchCallout: 'none', - - /** - * Specifies whether zooming is enabled. Used by IE10> - * @property defaults.behavior.contentZooming - * @type {String} - * @default 'none' - */ - contentZooming: 'none', + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graph An object containing two parameters: + * {Object[]} nodes + * {Object[]} edges + */ + function parseDOT (data) { + dot = data; + return parseGraph(); + } - /** - * Specifies that an entire element should be draggable instead of its contents. - * Mainly for desktop browsers. - * @property defaults.behavior.userDrag - * @type {String} - * @default 'none' - */ - userDrag: 'none', + // token types enumeration + var TOKENTYPE = { + NULL : 0, + DELIMITER : 1, + IDENTIFIER: 2, + UNKNOWN : 3 + }; - /** - * Overrides the highlight color shown when the user taps a link or a JavaScript - * clickable element in Safari on iPhone. This property obeys the alpha value, if specified. - * - * If you don't specify an alpha value, Safari on iPhone applies a default alpha value - * to the color. To disable tap highlighting, set the alpha value to 0 (invisible). - * If you set the alpha value to 1.0 (opaque), the element is not visible when tapped. - * @property defaults.behavior.tapHighlightColor - * @type {String} - * @default 'rgba(0,0,0,0)' - */ - tapHighlightColor: 'rgba(0,0,0,0)' - } + // map with all delimiters + var DELIMITERS = { + '{': true, + '}': true, + '[': true, + ']': true, + ';': true, + '=': true, + ',': true, + + '->': true, + '--': true }; - /** - * hammer document where the base events are added at - * @property DOCUMENT - * @type {HTMLElement} - * @default window.document - */ - Hammer.DOCUMENT = document; + var dot = ''; // current dot file + var index = 0; // current index in dot file + var c = ''; // current token character in expr + var token = ''; // current token + var tokenType = TOKENTYPE.NULL; // type of the token /** - * detect support for pointer events - * @property HAS_POINTEREVENTS - * @type {Boolean} + * Get the first character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. */ - Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; + function first() { + index = 0; + c = dot.charAt(0); + } /** - * detect support for touch events - * @property HAS_TOUCHEVENTS - * @type {Boolean} + * Get the next character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. */ - Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + function next() { + index++; + c = dot.charAt(index); + } /** - * detect mobile browsers - * @property IS_MOBILE - * @type {Boolean} + * Preview the next character from the dot file. + * @return {String} cNext */ - Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); + function nextPreview() { + return dot.charAt(index + 1); + } /** - * detect if we want to support mouseevents at all - * @property NO_MOUSEEVENTS - * @type {Boolean} + * Test whether given character is alphabetic or numeric + * @param {String} c + * @return {Boolean} isAlphaNumeric */ - Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; + var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; + function isAlphaNumeric(c) { + return regexAlphaNumeric.test(c); + } /** - * interval in which Hammer recalculates current velocity/direction/angle in ms - * @property CALCULATE_INTERVAL - * @type {Number} - * @default 25 + * Merge all properties of object b into object b + * @param {Object} a + * @param {Object} b + * @return {Object} a */ - Hammer.CALCULATE_INTERVAL = 25; + function merge (a, b) { + if (!a) { + a = {}; + } - /** - * eventtypes per touchevent (start, move, end) are filled by `Event.determineEventTypes` on `setup` - * the object contains the DOM event names per type (`EVENT_START`, `EVENT_MOVE`, `EVENT_END`) - * @property EVENT_TYPES - * @private - * @writeOnce - * @type {Object} - */ - var EVENT_TYPES = {}; + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; + } + } + } + return a; + } /** - * direction strings, for safe comparisons - * @property DIRECTION_DOWN|LEFT|UP|RIGHT - * @final - * @type {String} - * @default 'down' 'left' 'up' 'right' + * Set a value in an object, where the provided parameter name can be a + * path with nested parameters. For example: + * + * var obj = {a: 2}; + * setValue(obj, 'b.c', 3); // obj = {a: 2, b: {c: 3}} + * + * @param {Object} obj + * @param {String} path A parameter name or dot-separated parameter path, + * like "color.highlight.border". + * @param {*} value */ - var DIRECTION_DOWN = Hammer.DIRECTION_DOWN = 'down'; - var DIRECTION_LEFT = Hammer.DIRECTION_LEFT = 'left'; - var DIRECTION_UP = Hammer.DIRECTION_UP = 'up'; - var DIRECTION_RIGHT = Hammer.DIRECTION_RIGHT = 'right'; + function setValue(obj, path, value) { + var keys = path.split('.'); + var o = obj; + while (keys.length) { + var key = keys.shift(); + if (keys.length) { + // this isn't the end point + if (!o[key]) { + o[key] = {}; + } + o = o[key]; + } + else { + // this is the end point + o[key] = value; + } + } + } /** - * pointertype strings, for safe comparisons - * @property POINTER_MOUSE|TOUCH|PEN - * @final - * @type {String} - * @default 'mouse' 'touch' 'pen' + * Add a node to a graph object. If there is already a node with + * the same id, their attributes will be merged. + * @param {Object} graph + * @param {Object} node */ - var POINTER_MOUSE = Hammer.POINTER_MOUSE = 'mouse'; - var POINTER_TOUCH = Hammer.POINTER_TOUCH = 'touch'; - var POINTER_PEN = Hammer.POINTER_PEN = 'pen'; + function addNode(graph, node) { + var i, len; + var current = null; - /** - * eventtypes - * @property EVENT_START|MOVE|END|RELEASE|TOUCH - * @final - * @type {String} - * @default 'start' 'change' 'move' 'end' 'release' 'touch' - */ - var EVENT_START = Hammer.EVENT_START = 'start'; - var EVENT_MOVE = Hammer.EVENT_MOVE = 'move'; - var EVENT_END = Hammer.EVENT_END = 'end'; - var EVENT_RELEASE = Hammer.EVENT_RELEASE = 'release'; - var EVENT_TOUCH = Hammer.EVENT_TOUCH = 'touch'; + // find root graph (in case of subgraph) + var graphs = [graph]; // list with all graphs from current graph to root graph + var root = graph; + while (root.parent) { + graphs.push(root.parent); + root = root.parent; + } + + // find existing node (at root level) by its id + if (root.nodes) { + for (i = 0, len = root.nodes.length; i < len; i++) { + if (node.id === root.nodes[i].id) { + current = root.nodes[i]; + break; + } + } + } + + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); + } + } + + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; + + if (!g.nodes) { + g.nodes = []; + } + if (g.nodes.indexOf(current) == -1) { + g.nodes.push(current); + } + } + + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); + } + } /** - * if the window events are set... - * @property READY - * @writeOnce - * @type {Boolean} - * @default false + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge */ - Hammer.READY = false; + function addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; + } + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes + } + } /** - * plugins namespace - * @property plugins - * @type {Object} + * Create an edge to a graph object + * @param {Object} graph + * @param {String | Number | Object} from + * @param {String | Number | Object} to + * @param {String} type + * @param {Object | null} attr + * @return {Object} edge */ - Hammer.plugins = Hammer.plugins || {}; + function createEdge(graph, from, to, type, attr) { + var edge = { + from: from, + to: to, + type: type + }; - /** - * gestures namespace - * see `/gestures` for the definitions - * @property gestures - * @type {Object} - */ - Hammer.gestures = Hammer.gestures || {}; + if (graph.edge) { + edge.attr = merge({}, graph.edge); // clone default attributes + } + edge.attr = merge(edge.attr || {}, attr); // merge attributes + + return edge; + } /** - * setup events to detect gestures on the document - * this function is called when creating an new instance - * @private + * Get next token in the current dot file. + * The token and token type are available as token and tokenType */ - function setup() { - if(Hammer.READY) { - return; + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ''; + + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); + } + + do { + var isComment = false; + + // skip comment + if (c == '#') { + // find the previous non-space character + var i = index - 1; + while (dot.charAt(i) == ' ' || dot.charAt(i) == '\t') { + i--; + } + if (dot.charAt(i) == '\n' || dot.charAt(i) == '') { + // the # is at the start of a line, this is indeed a line comment + while (c != '' && c != '\n') { + next(); + } + isComment = true; + } + } + if (c == '/' && nextPreview() == '/') { + // skip line comment + while (c != '' && c != '\n') { + next(); + } + isComment = true; + } + if (c == '/' && nextPreview() == '*') { + // skip block comment + while (c != '') { + if (c == '*' && nextPreview() == '/') { + // end of block comment found. skip these last two characters + next(); + next(); + break; + } + else { + next(); + } + } + isComment = true; } - // find what eventtypes we add listeners to - Event.determineEventTypes(); + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); + } + } + while (isComment); - // Register all gestures inside Hammer.gestures - Utils.each(Hammer.gestures, function(gesture) { - Detection.register(gesture); - }); + // check for end of dot file + if (c == '') { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } - // Add touch events on the document - Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); - Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; + } - // Hammer is ready...! - Hammer.READY = true; - } + // check for delimiters consisting of 1 character + if (DELIMITERS[c]) { + tokenType = TOKENTYPE.DELIMITER; + token = c; + next(); + return; + } - /** - * @module hammer - * - * @class Utils - * @static - */ - var Utils = Hammer.utils = { - /** - * extend method, could also be used for cloning when `dest` is an empty object. - * changes the dest object - * @method extend - * @param {Object} dest - * @param {Object} src - * @param {Boolean} [merge=false] do a merge - * @return {Object} dest - */ - extend: function extend(dest, src, merge) { - for(var key in src) { - if(!src.hasOwnProperty(key) || (dest[key] !== undefined && merge)) { - continue; - } - dest[key] = src[key]; - } - return dest; - }, + // check for an identifier (number or string) + // TODO: more precise parsing of numbers/strings (and the port separator ':') + if (isAlphaNumeric(c) || c == '-') { + token += c; + next(); - /** - * simple addEventListener wrapper - * @method on - * @param {HTMLElement} element - * @param {String} type - * @param {Function} handler - */ - on: function on(element, type, handler) { - element.addEventListener(type, handler, false); - }, + while (isAlphaNumeric(c)) { + token += c; + next(); + } + if (token == 'false') { + token = false; // convert to boolean + } + else if (token == 'true') { + token = true; // convert to boolean + } + else if (!isNaN(Number(token))) { + token = Number(token); // convert to number + } + tokenType = TOKENTYPE.IDENTIFIER; + return; + } - /** - * simple removeEventListener wrapper - * @method off - * @param {HTMLElement} element - * @param {String} type - * @param {Function} handler - */ - off: function off(element, type, handler) { - element.removeEventListener(type, handler, false); - }, + // check for a string enclosed by double quotes + if (c == '"') { + next(); + while (c != '' && (c != '"' || (c == '"' && nextPreview() == '"'))) { + token += c; + if (c == '"') { // skip the escape character + next(); + } + next(); + } + if (c != '"') { + throw newSyntaxError('End of string " expected'); + } + next(); + tokenType = TOKENTYPE.IDENTIFIER; + return; + } - /** - * forEach over arrays and objects - * @method each - * @param {Object|Array} obj - * @param {Function} iterator - * @param {any} iterator.item - * @param {Number} iterator.index - * @param {Object|Array} iterator.obj the source object - * @param {Object} context value to use as `this` in the iterator - */ - each: function each(obj, iterator, context) { - var i, len; + // something unknown is found, wrong characters, a syntax error + tokenType = TOKENTYPE.UNKNOWN; + while (c != '') { + token += c; + next(); + } + throw new SyntaxError('Syntax error in part "' + chop(token, 30) + '"'); + } - // native forEach on arrays - if('forEach' in obj) { - obj.forEach(iterator, context); - // arrays - } else if(obj.length !== undefined) { - for(i = 0, len = obj.length; i < len; i++) { - if(iterator.call(context, obj[i], i, obj) === false) { - return; - } - } - // objects - } else { - for(i in obj) { - if(obj.hasOwnProperty(i) && - iterator.call(context, obj[i], i, obj) === false) { - return; - } - } - } - }, + /** + * Parse a graph. + * @returns {Object} graph + */ + function parseGraph() { + var graph = {}; - /** - * find if a string contains the string using indexOf - * @method inStr - * @param {String} src - * @param {String} find - * @return {Boolean} found - */ - inStr: function inStr(src, find) { - return src.indexOf(find) > -1; - }, + first(); + getToken(); - /** - * find if a array contains the object using indexOf or a simple polyfill - * @method inArray - * @param {String} src - * @param {String} find - * @return {Boolean|Number} false when not found, or the index - */ - inArray: function inArray(src, find) { - if(src.indexOf) { - var index = src.indexOf(find); - return (index === -1) ? false : index; - } else { - for(var i = 0, len = src.length; i < len; i++) { - if(src[i] === find) { - return i; - } - } - return false; - } - }, + // optional strict keyword + if (token == 'strict') { + graph.strict = true; + getToken(); + } - /** - * convert an array-like object (`arguments`, `touchlist`) to an array - * @method toArray - * @param {Object} obj - * @return {Array} - */ - toArray: function toArray(obj) { - return Array.prototype.slice.call(obj, 0); - }, + // graph or digraph keyword + if (token == 'graph' || token == 'digraph') { + graph.type = token; + getToken(); + } - /** - * find if a node is in the given parent - * @method hasParent - * @param {HTMLElement} node - * @param {HTMLElement} parent - * @return {Boolean} found - */ - hasParent: function hasParent(node, parent) { - while(node) { - if(node == parent) { - return true; - } - node = node.parentNode; - } - return false; - }, + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } - /** - * get the center of all the touches - * @method getCenter - * @param {Array} touches - * @return {Object} center contains `pageX`, `pageY`, `clientX` and `clientY` properties - */ - getCenter: function getCenter(touches) { - var pageX = [], - pageY = [], - clientX = [], - clientY = [], - min = Math.min, - max = Math.max; + // open angle bracket + if (token != '{') { + throw newSyntaxError('Angle bracket { expected'); + } + getToken(); - // no need to loop when only one touch - if(touches.length === 1) { - return { - pageX: touches[0].pageX, - pageY: touches[0].pageY, - clientX: touches[0].clientX, - clientY: touches[0].clientY - }; - } + // statements + parseStatements(graph); - Utils.each(touches, function(touch) { - pageX.push(touch.pageX); - pageY.push(touch.pageY); - clientX.push(touch.clientX); - clientY.push(touch.clientY); - }); + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); - return { - pageX: (min.apply(Math, pageX) + max.apply(Math, pageX)) / 2, - pageY: (min.apply(Math, pageY) + max.apply(Math, pageY)) / 2, - clientX: (min.apply(Math, clientX) + max.apply(Math, clientX)) / 2, - clientY: (min.apply(Math, clientY) + max.apply(Math, clientY)) / 2 - }; - }, + // end of file + if (token !== '') { + throw newSyntaxError('End of file expected'); + } + getToken(); - /** - * calculate the velocity between two points. unit is in px per ms. - * @method getVelocity - * @param {Number} deltaTime - * @param {Number} deltaX - * @param {Number} deltaY - * @return {Object} velocity `x` and `y` - */ - getVelocity: function getVelocity(deltaTime, deltaX, deltaY) { - return { - x: Math.abs(deltaX / deltaTime) || 0, - y: Math.abs(deltaY / deltaTime) || 0 - }; - }, + // remove temporary default properties + delete graph.node; + delete graph.edge; + delete graph.graph; - /** - * calculate the angle between two coordinates - * @method getAngle - * @param {Touch} touch1 - * @param {Touch} touch2 - * @return {Number} angle - */ - getAngle: function getAngle(touch1, touch2) { - var x = touch2.clientX - touch1.clientX, - y = touch2.clientY - touch1.clientY; + return graph; + } - return Math.atan2(y, x) * 180 / Math.PI; - }, + /** + * Parse a list with statements. + * @param {Object} graph + */ + function parseStatements (graph) { + while (token !== '' && token != '}') { + parseStatement(graph); + if (token == ';') { + getToken(); + } + } + } - /** - * do a small comparision to get the direction between two touches. - * @method getDirection - * @param {Touch} touch1 - * @param {Touch} touch2 - * @return {String} direction matches `DIRECTION_LEFT|RIGHT|UP|DOWN` - */ - getDirection: function getDirection(touch1, touch2) { - var x = Math.abs(touch1.clientX - touch2.clientX), - y = Math.abs(touch1.clientY - touch2.clientY); + /** + * Parse a single statement. Can be a an attribute statement, node + * statement, a series of node statements and edge statements, or a + * parameter. + * @param {Object} graph + */ + function parseStatement(graph) { + // parse subgraph + var subgraph = parseSubgraph(graph); + if (subgraph) { + // edge statements + parseEdge(graph, subgraph); - if(x >= y) { - return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; - }, + return; + } - /** - * calculate the distance between two touches - * @method getDistance - * @param {Touch}touch1 - * @param {Touch} touch2 - * @return {Number} distance - */ - getDistance: function getDistance(touch1, touch2) { - var x = touch2.clientX - touch1.clientX, - y = touch2.clientY - touch1.clientY; + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; + } - return Math.sqrt((x * x) + (y * y)); - }, + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + var id = token; // id can be a string or a number + getToken(); + + if (token == '=') { + // id statement + getToken(); + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + graph[id] = token; + getToken(); + // TODO: implement comma separated list with "a_list: ID=ID [','] [a_list] " + } + else { + parseNodeStatement(graph, id); + } + } + + /** + * Parse a subgraph + * @param {Object} graph parent graph object + * @return {Object | null} subgraph + */ + function parseSubgraph (graph) { + var subgraph = null; + + // optional subgraph keyword + if (token == 'subgraph') { + subgraph = {}; + subgraph.type = 'subgraph'; + getToken(); + + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); + } + } - /** - * calculate the scale factor between two touchLists - * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out - * @method getScale - * @param {Array} start array of touches - * @param {Array} end array of touches - * @return {Number} scale - */ - getScale: function getScale(start, end) { - // need two fingers... - if(start.length >= 2 && end.length >= 2) { - return this.getDistance(end[0], end[1]) / this.getDistance(start[0], start[1]); - } - return 1; - }, + // open angle bracket + if (token == '{') { + getToken(); - /** - * calculate the rotation degrees between two touchLists - * @method getRotation - * @param {Array} start array of touches - * @param {Array} end array of touches - * @return {Number} rotation - */ - getRotation: function getRotation(start, end) { - // need two fingers - if(start.length >= 2 && end.length >= 2) { - return this.getAngle(end[1], end[0]) - this.getAngle(start[1], start[0]); - } - return 0; - }, + if (!subgraph) { + subgraph = {}; + } + subgraph.parent = graph; + subgraph.node = graph.node; + subgraph.edge = graph.edge; + subgraph.graph = graph.graph; - /** - * find out if the direction is vertical * - * @method isVertical - * @param {String} direction matches `DIRECTION_UP|DOWN` - * @return {Boolean} is_vertical - */ - isVertical: function isVertical(direction) { - return direction == DIRECTION_UP || direction == DIRECTION_DOWN; - }, + // statements + parseStatements(subgraph); - /** - * set css properties with their prefixes - * @param {HTMLElement} element - * @param {String} prop - * @param {String} value - * @param {Boolean} [toggle=true] - * @return {Boolean} - */ - setPrefixedCss: function setPrefixedCss(element, prop, value, toggle) { - var prefixes = ['', 'Webkit', 'Moz', 'O', 'ms']; - prop = Utils.toCamelCase(prop); + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); - for(var i = 0; i < prefixes.length; i++) { - var p = prop; - // prefixes - if(prefixes[i]) { - p = prefixes[i] + p.slice(0, 1).toUpperCase() + p.slice(1); - } + // remove temporary default properties + delete subgraph.node; + delete subgraph.edge; + delete subgraph.graph; + delete subgraph.parent; - // test the style - if(p in element.style) { - element.style[p] = (toggle == null || toggle) && value || ''; - break; - } - } - }, + // register at the parent graph + if (!graph.subgraphs) { + graph.subgraphs = []; + } + graph.subgraphs.push(subgraph); + } - /** - * toggle browser default behavior by setting css properties. - * `userSelect='none'` also sets `element.onselectstart` to false - * `userDrag='none'` also sets `element.ondragstart` to false - * - * @method toggleBehavior - * @param {HtmlElement} element - * @param {Object} props - * @param {Boolean} [toggle=true] - */ - toggleBehavior: function toggleBehavior(element, props, toggle) { - if(!props || !element || !element.style) { - return; - } + return subgraph; + } - // set the css properties - Utils.each(props, function(value, prop) { - Utils.setPrefixedCss(element, prop, value, toggle); - }); + /** + * parse an attribute statement like "node [shape=circle fontSize=16]". + * Available keywords are 'node', 'edge', 'graph'. + * The previous list with default attributes will be replaced + * @param {Object} graph + * @returns {String | null} keyword Returns the name of the parsed attribute + * (node, edge, graph), or null if nothing + * is parsed. + */ + function parseAttributeStatement (graph) { + // attribute statements + if (token == 'node') { + getToken(); - var falseFn = toggle && function() { - return false; - }; + // node attributes + graph.node = parseAttributeList(); + return 'node'; + } + else if (token == 'edge') { + getToken(); - // also the disable onselectstart - if(props.userSelect == 'none') { - element.onselectstart = falseFn; - } - // and disable ondragstart - if(props.userDrag == 'none') { - element.ondragstart = falseFn; - } - }, + // edge attributes + graph.edge = parseAttributeList(); + return 'edge'; + } + else if (token == 'graph') { + getToken(); - /** - * convert a string with underscores to camelCase - * so prevent_default becomes preventDefault - * @param {String} str - * @return {String} camelCaseStr - */ - toCamelCase: function toCamelCase(str) { - return str.replace(/[_-]([a-z])/g, function(s) { - return s[1].toUpperCase(); - }); - } - }; + // graph attributes + graph.graph = parseAttributeList(); + return 'graph'; + } + return null; + } /** - * @module hammer + * parse a node statement + * @param {Object} graph + * @param {String | Number} id */ + function parseNodeStatement(graph, id) { + // node statement + var node = { + id: id + }; + var attr = parseAttributeList(); + if (attr) { + node.attr = attr; + } + addNode(graph, node); + + // edge statements + parseEdge(graph, id); + } + /** - * @class Event - * @static + * Parse an edge or a series of edges + * @param {Object} graph + * @param {String | Number} from Id of the from node */ - var Event = Hammer.event = { - /** - * when touch events have been fired, this is true - * this is used to stop mouse events - * @property prevent_mouseevents - * @private - * @type {Boolean} - */ - preventMouseEvents: false, + function parseEdge(graph, from) { + while (token == '->' || token == '--') { + var to; + var type = token; + getToken(); - /** - * if EVENT_START has been fired - * @property started - * @private - * @type {Boolean} - */ - started: false, + var subgraph = parseSubgraph(graph); + if (subgraph) { + to = subgraph; + } + else { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier or subgraph expected'); + } + to = token; + addNode(graph, { + id: to + }); + getToken(); + } - /** - * when the mouse is hold down, this is true - * @property should_detect - * @private - * @type {Boolean} - */ - shouldDetect: false, + // parse edge attributes + var attr = parseAttributeList(); - /** - * simple event binder with a hook and support for multiple types - * @method on - * @param {HTMLElement} element - * @param {String} type - * @param {Function} handler - * @param {Function} [hook] - * @param {Object} hook.type - */ - on: function on(element, type, handler, hook) { - var types = type.split(' '); - Utils.each(types, function(type) { - Utils.on(element, type, handler); - hook && hook(type); - }); - }, + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); + + from = to; + } + } - /** - * simple event unbinder with a hook and support for multiple types - * @method off - * @param {HTMLElement} element - * @param {String} type - * @param {Function} handler - * @param {Function} [hook] - * @param {Object} hook.type - */ - off: function off(element, type, handler, hook) { - var types = type.split(' '); - Utils.each(types, function(type) { - Utils.off(element, type, handler); - hook && hook(type); - }); - }, + /** + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr + */ + function parseAttributeList() { + var attr = null; - /** - * the core touch event handler. - * this finds out if we should to detect gestures - * @method onTouch - * @param {HTMLElement} element - * @param {String} eventType matches `EVENT_START|MOVE|END` - * @param {Function} handler - * @return onTouchHandler {Function} the core event handler - */ - onTouch: function onTouch(element, eventType, handler) { - var self = this; + while (token == '[') { + getToken(); + attr = {}; + while (token !== '' && token != ']') { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute name expected'); + } + var name = token; - var onTouchHandler = function onTouchHandler(ev) { - var srcType = ev.type.toLowerCase(), - isPointer = Hammer.HAS_POINTEREVENTS, - isMouse = Utils.inStr(srcType, 'mouse'), - triggerType; + getToken(); + if (token != '=') { + throw newSyntaxError('Equal sign = expected'); + } + getToken(); - // if we are in a mouseevent, but there has been a touchevent triggered in this session - // we want to do nothing. simply break out of the event. - if(isMouse && self.preventMouseEvents) { - return; + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute value expected'); + } + var value = token; + setValue(attr, name, value); // name can be a path - // mousebutton must be down - } else if(isMouse && eventType == EVENT_START && ev.button === 0) { - self.preventMouseEvents = false; - self.shouldDetect = true; - } else if(isPointer && eventType == EVENT_START) { - self.shouldDetect = (ev.buttons === 1 || PointerEvent.matchType(POINTER_TOUCH, ev)); - // just a valid start event, but no mouse - } else if(!isMouse && eventType == EVENT_START) { - self.preventMouseEvents = true; - self.shouldDetect = true; - } + getToken(); + if (token ==',') { + getToken(); + } + } - // update the pointer event before entering the detection - if(isPointer && eventType != EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } + if (token != ']') { + throw newSyntaxError('Bracket ] expected'); + } + getToken(); + } - // we are in a touch/down state, so allowed detection of gestures - if(self.shouldDetect) { - triggerType = self.doDetect.call(self, ev, eventType, element, handler); - } + return attr; + } - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - if(triggerType == EVENT_END) { - self.preventMouseEvents = false; - self.shouldDetect = false; - PointerEvent.reset(); - // update the pointerevent object after the detection - } + /** + * Create a syntax error with extra information on current token and index. + * @param {String} message + * @returns {SyntaxError} err + */ + function newSyntaxError(message) { + return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); + } - if(isPointer && eventType == EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - }; + /** + * Chop off text after a maximum length + * @param {String} text + * @param {Number} maxLength + * @returns {String} + */ + function chop (text, maxLength) { + return (text.length <= maxLength) ? text : (text.substr(0, 27) + '...'); + } - this.on(element, EVENT_TYPES[eventType], onTouchHandler); - return onTouchHandler; - }, + /** + * Execute a function fn for each pair of elements in two arrays + * @param {Array | *} array1 + * @param {Array | *} array2 + * @param {function} fn + */ + function forEach2(array1, array2, fn) { + if (array1 instanceof Array) { + array1.forEach(function (elem1) { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(elem1, elem2); + }); + } + else { + fn(elem1, array2); + } + }); + } + else { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } + else { + fn(array1, array2); + } + } + } + + /** + * Convert a string containing a graph in DOT language into a map containing + * with nodes and edges in the format of graph. + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graphData + */ + function DOTToGraph (data) { + // parse the DOT file + var dotData = parseDOT(data); + var graphData = { + nodes: [], + edges: [], + options: {} + }; + + // copy the nodes + if (dotData.nodes) { + dotData.nodes.forEach(function (dotNode) { + var graphNode = { + id: dotNode.id, + label: String(dotNode.label || dotNode.id) + }; + merge(graphNode, dotNode.attr); + if (graphNode.image) { + graphNode.shape = 'image'; + } + graphData.nodes.push(graphNode); + }); + } + // copy the edges + if (dotData.edges) { /** - * the core detection method - * this finds out what hammer-touch-events to trigger - * @method doDetect - * @param {Object} ev - * @param {String} eventType matches `EVENT_START|MOVE|END` - * @param {HTMLElement} element - * @param {Function} handler - * @return {String} triggerType matches `EVENT_START|MOVE|END` + * Convert an edge in DOT format to an edge with VisGraph format + * @param {Object} dotEdge + * @returns {Object} graphEdge */ - doDetect: function doDetect(ev, eventType, element, handler) { - var touchList = this.getTouchList(ev, eventType); - var touchListLength = touchList.length; - var triggerType = eventType; - var triggerChange = touchList.trigger; // used by fakeMultitouch plugin - var changedLength = touchListLength; - - // at each touchstart-like event we want also want to trigger a TOUCH event... - if(eventType == EVENT_START) { - triggerChange = EVENT_TOUCH; - // ...the same for a touchend-like event - } else if(eventType == EVENT_END) { - triggerChange = EVENT_RELEASE; + function convertEdge(dotEdge) { + var graphEdge = { + from: dotEdge.from, + to: dotEdge.to + }; + merge(graphEdge, dotEdge.attr); + graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; + return graphEdge; + } - // keep track of how many touches have been removed - changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } + else { + from = { + id: dotEdge.from } + } - // after there are still touches on the screen, - // we just want to trigger a MOVE event. so change the START or END to a MOVE - // but only after detection has been started, the first time we actualy want a START - if(changedLength > 0 && this.started) { - triggerType = EVENT_MOVE; + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } + else { + to = { + id: dotEdge.to } + } - // detection has been started, we keep track of this, see above - this.started = true; - - // generate some event data, some basic information - var evData = this.collectEventData(element, triggerType, touchList, ev); - - // trigger the triggerType event before the change (TOUCH, RELEASE) events - // but the END event should be at last - if(eventType != EVENT_END) { - handler.call(Detection, evData); - } + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } - // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed - if(triggerChange) { - evData.changedLength = changedLength; - evData.eventType = triggerChange; + forEach2(from, to, function (from, to) { + var subEdge = createEdge(graphData, from.id, to.id, dotEdge.type, dotEdge.attr); + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); - handler.call(Detection, evData); + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + }); + } - evData.eventType = triggerType; - delete evData.changedLength; - } + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; + } - // trigger the END event - if(triggerType == EVENT_END) { - handler.call(Detection, evData); + return graphData; + } - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - this.started = false; - } + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; - return triggerType; - }, - /** - * we have different events for each device/browser - * determine what we need and set them in the EVENT_TYPES constant - * the `onTouch` method is bind to these properties. - * @method determineEventTypes - * @return {Object} events - */ - determineEventTypes: function determineEventTypes() { - var types; - if(Hammer.HAS_POINTEREVENTS) { - if(window.PointerEvent) { - types = [ - 'pointerdown', - 'pointermove', - 'pointerup pointercancel lostpointercapture' - ]; - } else { - types = [ - 'MSPointerDown', - 'MSPointerMove', - 'MSPointerUp MSPointerCancel MSLostPointerCapture' - ]; - } - } else if(Hammer.NO_MOUSEEVENTS) { - types = [ - 'touchstart', - 'touchmove', - 'touchend touchcancel' - ]; - } else { - types = [ - 'touchstart mousedown', - 'touchmove mousemove', - 'touchend touchcancel mouseup' - ]; - } +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { - EVENT_TYPES[EVENT_START] = types[0]; - EVENT_TYPES[EVENT_MOVE] = types[1]; - EVENT_TYPES[EVENT_END] = types[2]; - return EVENT_TYPES; + + function parseGephi(gephiJSON, options) { + var edges = []; + var nodes = []; + this.options = { + edges: { + inheritColor: true }, + nodes: { + allowedToMove: false, + parseColor: false + } + }; - /** - * create touchList depending on the event - * @method getTouchList - * @param {Object} ev - * @param {String} eventType - * @return {Array} touches - */ - getTouchList: function getTouchList(ev, eventType) { - // get the fake pointerEvent touchlist - if(Hammer.HAS_POINTEREVENTS) { - return PointerEvent.getTouchList(); - } + if (options !== undefined) { + this.options.nodes['allowedToMove'] = options.allowedToMove | false; + this.options.nodes['parseColor'] = options.parseColor | false; + this.options.edges['inheritColor'] = options.inheritColor | true; + } - // get the touchlist - if(ev.touches) { - if(eventType == EVENT_MOVE) { - return ev.touches; - } + var gEdges = gephiJSON.edges; + var gNodes = gephiJSON.nodes; + for (var i = 0; i < gEdges.length; i++) { + var edge = {}; + var gEdge = gEdges[i]; + edge['id'] = gEdge.id; + edge['from'] = gEdge.source; + edge['to'] = gEdge.target; + edge['attributes'] = gEdge.attributes; + // edge['value'] = gEdge.attributes !== undefined ? gEdge.attributes.Weight : undefined; + // edge['width'] = edge['value'] !== undefined ? undefined : edgegEdge.size; + edge['color'] = gEdge.color; + edge['inheritColor'] = edge['color'] !== undefined ? false : this.options.inheritColor; + edges.push(edge); + } - var identifiers = []; - var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); - var touchList = []; + for (var i = 0; i < gNodes.length; i++) { + var node = {}; + var gNode = gNodes[i]; + node['id'] = gNode.id; + node['attributes'] = gNode.attributes; + node['x'] = gNode.x; + node['y'] = gNode.y; + node['label'] = gNode.label; + if (this.options.nodes.parseColor == true) { + node['color'] = gNode.color; + } + else { + node['color'] = gNode.color !== undefined ? {background:gNode.color, border:gNode.color} : undefined; + } + node['radius'] = gNode.size; + node['allowedToMoveX'] = this.options.nodes.allowedToMove; + node['allowedToMoveY'] = this.options.nodes.allowedToMove; + nodes.push(node); + } - Utils.each(concat, function(touch) { - if(Utils.inArray(identifiers, touch.identifier) === false) { - touchList.push(touch); - } - identifiers.push(touch.identifier); - }); + return {nodes:nodes, edges:edges}; + } - return touchList; - } + exports.parseGephi = parseGephi; - // make fake touchList from mouse position - ev.identifier = 1; - return [ev]; - }, +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { - /** - * collect basic event data - * @method collectEventData - * @param {HTMLElement} element - * @param {String} eventType matches `EVENT_START|MOVE|END` - * @param {Array} touches - * @param {Object} ev - * @return {Object} ev - */ - collectEventData: function collectEventData(element, eventType, touches, ev) { - // find out pointerType - var pointerType = POINTER_TOUCH; - if(Utils.inStr(ev.type, 'mouse') || PointerEvent.matchType(POINTER_MOUSE, ev)) { - pointerType = POINTER_MOUSE; - } else if(PointerEvent.matchType(POINTER_PEN, ev)) { - pointerType = POINTER_PEN; - } + var util = __webpack_require__(1); - return { - center: Utils.getCenter(touches), - timeStamp: Date.now(), - target: ev.target, - touches: touches, - eventType: eventType, - pointerType: pointerType, - srcEvent: ev, + /** + * @class Groups + * This class can store groups and properties specific for groups. + */ + function Groups() { + this.clear(); + this.defaultIndex = 0; + } - /** - * prevent the browser default actions - * mostly used to disable scrolling of the browser - */ - preventDefault: function() { - var srcEvent = this.srcEvent; - srcEvent.preventManipulation && srcEvent.preventManipulation(); - srcEvent.preventDefault && srcEvent.preventDefault(); - }, - /** - * stop bubbling the event up to its parents - */ - stopPropagation: function() { - this.srcEvent.stopPropagation(); - }, + /** + * default constants for group colors + */ + Groups.DEFAULT = [ + {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue + {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow + {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red + {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green + {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta + {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple + {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange + {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue + {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink + {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint + ]; - /** - * immediately stop gesture detection - * might be useful after a swipe was detected - * @return {*} - */ - stopDetect: function() { - return Detection.stopDetect(); - } - }; + + /** + * Clear all groups + */ + Groups.prototype.clear = function () { + this.groups = {}; + this.groups.length = function() + { + var i = 0; + for ( var p in this ) { + if (this.hasOwnProperty(p)) { + i++; + } } + return i; + } }; /** - * @module hammer - * - * @class PointerEvent - * @static + * get group properties of a groupname. If groupname is not found, a new group + * is added. + * @param {*} groupname Can be a number, string, Date, etc. + * @return {Object} group The created group, containing all group properties */ - var PointerEvent = Hammer.PointerEvent = { - /** - * holds all pointers, by `identifier` - * @property pointers - * @type {Object} - */ - pointers: {}, + Groups.prototype.get = function (groupname) { + var group = this.groups[groupname]; + if (group == undefined) { + // create new group + var index = this.defaultIndex % Groups.DEFAULT.length; + this.defaultIndex++; + group = {}; + group.color = Groups.DEFAULT[index]; + this.groups[groupname] = group; + } - /** - * get the pointers as an array - * @method getTouchList - * @return {Array} touchlist - */ - getTouchList: function getTouchList() { - var touchlist = []; - // we can use forEach since pointerEvents only is in IE10 - Utils.each(this.pointers, function(pointer) { - touchlist.push(pointer); - }); - return touchlist; - }, + return group; + }; - /** - * update the position of a pointer - * @method updatePointer - * @param {String} eventType matches `EVENT_START|MOVE|END` - * @param {Object} pointerEvent - */ - updatePointer: function updatePointer(eventType, pointerEvent) { - if(eventType == EVENT_END || (eventType != EVENT_END && pointerEvent.buttons !== 1)) { - delete this.pointers[pointerEvent.pointerId]; - } else { - pointerEvent.identifier = pointerEvent.pointerId; - this.pointers[pointerEvent.pointerId] = pointerEvent; - } - }, + /** + * Add a custom group style + * @param {String} groupname + * @param {Object} style An object containing borderColor, + * backgroundColor, etc. + * @return {Object} group The created group object + */ + Groups.prototype.add = function (groupname, style) { + this.groups[groupname] = style; + if (style.color) { + style.color = util.parseColor(style.color); + } + return style; + }; - /** - * check if ev matches pointertype - * @method matchType - * @param {String} pointerType matches `POINTER_MOUSE|TOUCH|PEN` - * @param {PointerEvent} ev - */ - matchType: function matchType(pointerType, ev) { - if(!ev.pointerType) { - return false; - } + module.exports = Groups; - var pt = ev.pointerType, - types = {}; - types[POINTER_MOUSE] = (pt === (ev.MSPOINTER_TYPE_MOUSE || POINTER_MOUSE)); - types[POINTER_TOUCH] = (pt === (ev.MSPOINTER_TYPE_TOUCH || POINTER_TOUCH)); - types[POINTER_PEN] = (pt === (ev.MSPOINTER_TYPE_PEN || POINTER_PEN)); - return types[pointerType]; - }, +/***/ }, +/* 46 */ +/***/ function(module, exports, __webpack_require__) { - /** - * reset the stored pointers - * @method reset - */ - reset: function resetList() { - this.pointers = {}; - } - }; + /** + * @class Images + * This class loads images and keeps them stored. + */ + function Images() { + this.images = {}; + this.callback = undefined; + } /** - * @module hammer - * - * @class Detection - * @static + * Set an onload callback function. This will be called each time an image + * is loaded + * @param {function} callback */ - var Detection = Hammer.detection = { - // contains all registred Hammer.gestures in the correct order - gestures: [], - - // data of the current Hammer.gesture detection session - current: null, + Images.prototype.setOnloadCallback = function(callback) { + this.callback = callback; + }; - // the previous Hammer.gesture session data - // is a full clone of the previous gesture.current object - previous: null, + /** + * + * @param {string} url Url of the image + * @return {Image} img The image object + */ + Images.prototype.load = function(url) { + var img = this.images[url]; + if (img == undefined) { + // create the image + var images = this; + img = new Image(); + this.images[url] = img; + img.onload = function() { + if (images.callback) { + images.callback(this); + } + }; + img.src = url; + } - // when this becomes true, no gestures are fired - stopped: false, + return img; + }; - /** - * start Hammer.gesture detection - * @method startDetect - * @param {Hammer.Instance} inst - * @param {Object} eventData - */ - startDetect: function startDetect(inst, eventData) { - // already busy with a Hammer.gesture detection on an element - if(this.current) { - return; - } + module.exports = Images; - this.stopped = false; - // holds current session - this.current = { - inst: inst, // reference to HammerInstance we're working for - startEvent: Utils.extend({}, eventData), // start eventData for distances, timing etc - lastEvent: false, // last eventData - lastCalcEvent: false, // last eventData for calculations. - futureCalcEvent: false, // last eventData for calculations. - lastCalcData: {}, // last lastCalcData - name: '' // current gesture we're in/detected, can be 'tap', 'hold' etc - }; +/***/ }, +/* 47 */ +/***/ function(module, exports, __webpack_require__) { - this.detect(eventData); - }, + var util = __webpack_require__(1); - /** - * Hammer.gesture detection - * @method detect - * @param {Object} eventData - * @return {any} - */ - detect: function detect(eventData) { - if(!this.current || this.stopped) { - return; - } + /** + * @class Node + * A node. A node can be connected to other nodes via one or multiple edges. + * @param {object} properties An object containing properties for the node. All + * properties are optional, except for the id. + * {number} id Id of the node. Required + * {string} label Text label for the node + * {number} x Horizontal position of the node + * {number} y Vertical position of the node + * {string} shape Node shape, available: + * "database", "circle", "ellipse", + * "box", "image", "text", "dot", + * "star", "triangle", "triangleDown", + * "square" + * {string} image An image url + * {string} title An title text, can be HTML + * {anytype} group A group name or number + * @param {Network.Images} imagelist A list with images. Only needed + * when the node has an image + * @param {Network.Groups} grouplist A list with groups. Needed for + * retrieving group properties + * @param {Object} constants An object with default values for + * example for the color + * + */ + function Node(properties, imagelist, grouplist, networkConstants) { + var constants = util.selectiveBridgeObject(['nodes'],networkConstants); + this.options = constants.nodes; - // extend event data with calculations about scale, distance etc - eventData = this.extendEventData(eventData); + this.selected = false; + this.hover = false; - // hammer instance and instance options - var inst = this.current.inst, - instOptions = inst.options; + this.edges = []; // all edges connected to this node + this.dynamicEdges = []; + this.reroutedEdges = {}; - // call Hammer.gesture handlers - Utils.each(this.gestures, function triggerGesture(gesture) { - // only when the instance options have enabled this gesture - if(!this.stopped && inst.enabled && instOptions[gesture.name]) { - gesture.handler.call(gesture, eventData, inst); - } - }, this); + this.fontDrawThreshold = 3; - // store as previous event event - if(this.current) { - this.current.lastEvent = eventData; - } + // set defaults for the properties + this.id = undefined; + this.x = null; + this.y = null; + this.xFixed = false; + this.yFixed = false; + this.horizontalAlignLeft = true; // these are for the navigation controls + this.verticalAlignTop = true; // these are for the navigation controls + this.baseRadiusValue = networkConstants.nodes.radius; + this.radiusFixed = false; + this.level = -1; + this.preassignedLevel = false; - if(eventData.eventType == EVENT_END) { - this.stopDetect(); - } - return eventData; - }, + this.imagelist = imagelist; + this.grouplist = grouplist; - /** - * clear the Hammer.gesture vars - * this is called on endDetect, but can also be used when a final Hammer.gesture has been detected - * to stop other Hammer.gestures from being fired - * @method stopDetect - */ - stopDetect: function stopDetect() { - // clone current data to the store as the previous gesture - // used for the double tap gesture, since this is an other gesture detect session - this.previous = Utils.extend({}, this.current); + // physics properties + this.fx = 0.0; // external force x + this.fy = 0.0; // external force y + this.vx = 0.0; // velocity x + this.vy = 0.0; // velocity y + this.damping = networkConstants.physics.damping; // written every time gravity is calculated + this.fixedData = {x:null,y:null}; - // reset the current - this.current = null; - this.stopped = true; - }, - /** - * calculate velocity, angle and direction - * @method getVelocityData - * @param {Object} ev - * @param {Object} center - * @param {Number} deltaTime - * @param {Number} deltaX - * @param {Number} deltaY - */ - getCalculatedData: function getCalculatedData(ev, center, deltaTime, deltaX, deltaY) { - var cur = this.current, - recalc = false, - calcEv = cur.lastCalcEvent, - calcData = cur.lastCalcData; + this.setProperties(properties, constants); - if(calcEv && ev.timeStamp - calcEv.timeStamp > Hammer.CALCULATE_INTERVAL) { - center = calcEv.center; - deltaTime = ev.timeStamp - calcEv.timeStamp; - deltaX = ev.center.clientX - calcEv.center.clientX; - deltaY = ev.center.clientY - calcEv.center.clientY; - recalc = true; - } + // creating the variables for clustering + this.resetCluster(); + this.dynamicEdgesLength = 0; + this.clusterSession = 0; + this.clusterSizeWidthFactor = networkConstants.clustering.nodeScaling.width; + this.clusterSizeHeightFactor = networkConstants.clustering.nodeScaling.height; + this.clusterSizeRadiusFactor = networkConstants.clustering.nodeScaling.radius; + this.maxNodeSizeIncrements = networkConstants.clustering.maxNodeSizeIncrements; + this.growthIndicator = 0; - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - cur.futureCalcEvent = ev; - } + // variables to tell the node about the network. + this.networkScaleInv = 1; + this.networkScale = 1; + this.canvasTopLeft = {"x": -300, "y": -300}; + this.canvasBottomRight = {"x": 300, "y": 300}; + this.parentEdgeId = null; + } - if(!cur.lastCalcEvent || recalc) { - calcData.velocity = Utils.getVelocity(deltaTime, deltaX, deltaY); - calcData.angle = Utils.getAngle(center, ev.center); - calcData.direction = Utils.getDirection(center, ev.center); + /** + * (re)setting the clustering variables and objects + */ + Node.prototype.resetCluster = function() { + // clustering variables + this.formationScale = undefined; // this is used to determine when to open the cluster + this.clusterSize = 1; // this signifies the total amount of nodes in this cluster + this.containedNodes = {}; + this.containedEdges = {}; + this.clusterSessions = []; + }; - cur.lastCalcEvent = cur.futureCalcEvent || ev; - cur.futureCalcEvent = ev; - } + /** + * Attach a edge to the node + * @param {Edge} edge + */ + Node.prototype.attachEdge = function(edge) { + if (this.edges.indexOf(edge) == -1) { + this.edges.push(edge); + } + if (this.dynamicEdges.indexOf(edge) == -1) { + this.dynamicEdges.push(edge); + } + this.dynamicEdgesLength = this.dynamicEdges.length; + }; - ev.velocityX = calcData.velocity.x; - ev.velocityY = calcData.velocity.y; - ev.interimAngle = calcData.angle; - ev.interimDirection = calcData.direction; - }, + /** + * Detach a edge from the node + * @param {Edge} edge + */ + Node.prototype.detachEdge = function(edge) { + var index = this.edges.indexOf(edge); + if (index != -1) { + this.edges.splice(index, 1); + this.dynamicEdges.splice(index, 1); + } + this.dynamicEdgesLength = this.dynamicEdges.length; + }; - /** - * extend eventData for Hammer.gestures - * @method extendEventData - * @param {Object} ev - * @return {Object} ev - */ - extendEventData: function extendEventData(ev) { - var cur = this.current, - startEv = cur.startEvent, - lastEv = cur.lastEvent || startEv; - // update the start touchlist to calculate the scale/rotation - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - startEv.touches = []; - Utils.each(ev.touches, function(touch) { - startEv.touches.push({ - clientX: touch.clientX, - clientY: touch.clientY - }); - }); - } + /** + * Set or overwrite properties for the node + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties + */ + Node.prototype.setProperties = function(properties, constants) { + if (!properties) { + return; + } - var deltaTime = ev.timeStamp - startEv.timeStamp, - deltaX = ev.center.clientX - startEv.center.clientX, - deltaY = ev.center.clientY - startEv.center.clientY; + var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', + 'fontSize','fontFace','group','mass' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + this.originalLabel = undefined; + // basic properties + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label; this.originalLabel = properties.label;} + if (properties.title !== undefined) {this.title = properties.title;} + if (properties.x !== undefined) {this.x = properties.x;} + if (properties.y !== undefined) {this.y = properties.y;} + if (properties.value !== undefined) {this.value = properties.value;} + if (properties.level !== undefined) {this.level = properties.level; this.preassignedLevel = true;} - Utils.extend(ev, { - startEvent: startEv, + // navigation controls properties + if (properties.horizontalAlignLeft !== undefined) {this.horizontalAlignLeft = properties.horizontalAlignLeft;} + if (properties.verticalAlignTop !== undefined) {this.verticalAlignTop = properties.verticalAlignTop;} + if (properties.triggerFunction !== undefined) {this.triggerFunction = properties.triggerFunction;} - deltaTime: deltaTime, - deltaX: deltaX, - deltaY: deltaY, + if (this.id === undefined) { + throw "Node must have an id"; + } - distance: Utils.getDistance(startEv.center, ev.center), - angle: Utils.getAngle(startEv.center, ev.center), - direction: Utils.getDirection(startEv.center, ev.center), - scale: Utils.getScale(startEv.touches, ev.touches), - rotation: Utils.getRotation(startEv.touches, ev.touches) - }); + // copy group properties + if (typeof this.options.group === 'number' || (typeof this.options.group === 'string' && this.options.group != '')) { + var groupObj = this.grouplist.get(this.options.group); + for (var prop in groupObj) { + if (groupObj.hasOwnProperty(prop)) { + this.options[prop] = groupObj[prop]; + } + } + } - return ev; - }, - /** - * register new gesture - * @method register - * @param {Object} gesture object, see `gestures/` for documentation - * @return {Array} gestures - */ - register: function register(gesture) { - // add an enable gesture options if there is no given - var options = gesture.defaults || {}; - if(options[gesture.name] === undefined) { - options[gesture.name] = true; - } + // individual shape properties + if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} + if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} - // extend Hammer default options with the Hammer.gesture options - Utils.extend(Hammer.defaults, options, true); + if (this.options.image!== undefined && this.options.image!= "") { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image); + } + else { + throw "No imagelist provided"; + } + } - // set its index - gesture.index = gesture.index || 1000; + this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); + this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); + this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); - // add Hammer.gesture to the list - this.gestures.push(gesture); + if (this.options.shape == 'image') { + this.options.radiusMin = constants.nodes.widthMin; + this.options.radiusMax = constants.nodes.widthMax; + } - // sort the list by index - this.gestures.sort(function(a, b) { - if(a.index < b.index) { - return -1; - } - if(a.index > b.index) { - return 1; - } - return 0; - }); - return this.gestures; - } + // choose draw method depending on the shape + switch (this.options.shape) { + case 'database': this.draw = this._drawDatabase; this.resize = this._resizeDatabase; break; + case 'box': this.draw = this._drawBox; this.resize = this._resizeBox; break; + case 'circle': this.draw = this._drawCircle; this.resize = this._resizeCircle; break; + case 'ellipse': this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; + // TODO: add diamond shape + case 'image': this.draw = this._drawImage; this.resize = this._resizeImage; break; + case 'text': this.draw = this._drawText; this.resize = this._resizeText; break; + case 'dot': this.draw = this._drawDot; this.resize = this._resizeShape; break; + case 'square': this.draw = this._drawSquare; this.resize = this._resizeShape; break; + case 'triangle': this.draw = this._drawTriangle; this.resize = this._resizeShape; break; + case 'triangleDown': this.draw = this._drawTriangleDown; this.resize = this._resizeShape; break; + case 'star': this.draw = this._drawStar; this.resize = this._resizeShape; break; + default: this.draw = this._drawEllipse; this.resize = this._resizeEllipse; break; + } + // reset the size of the node, this can be changed + this._reset(); }; - /** - * @module hammer + * select this node */ + Node.prototype.select = function() { + this.selected = true; + this._reset(); + }; /** - * create new hammer instance - * all methods should return the instance itself, so it is chainable. - * - * @class Instance - * @constructor - * @param {HTMLElement} element - * @param {Object} [options={}] options are merged with `Hammer.defaults` - * @return {Hammer.Instance} + * unselect this node */ - Hammer.Instance = function(element, options) { - var self = this; - - // setup HammerJS window events and register all gestures - // this also sets up the default options - setup(); - - /** - * @property element - * @type {HTMLElement} - */ - this.element = element; - - /** - * @property enabled - * @type {Boolean} - * @protected - */ - this.enabled = true; - - /** - * options, merged with the defaults - * options with an _ are converted to camelCase - * @property options - * @type {Object} - */ - Utils.each(options, function(value, name) { - delete options[name]; - options[Utils.toCamelCase(name)] = value; - }); - - this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); - - // add some css to the element to prevent the browser from doing its native behavoir - if(this.options.behavior) { - Utils.toggleBehavior(this.element, this.options.behavior, true); - } + Node.prototype.unselect = function() { + this.selected = false; + this._reset(); + }; - /** - * event start handler on the element to start the detection - * @property eventStartHandler - * @type {Object} - */ - this.eventStartHandler = Event.onTouch(element, EVENT_START, function(ev) { - if(self.enabled && ev.eventType == EVENT_START) { - Detection.startDetect(self, ev); - } else if(ev.eventType == EVENT_TOUCH) { - Detection.detect(ev); - } - }); - /** - * keep a list of user event handlers which needs to be removed when calling 'dispose' - * @property eventHandlers - * @type {Array} - */ - this.eventHandlers = []; + /** + * Reset the calculated size of the node, forces it to recalculate its size + */ + Node.prototype.clearSizeCache = function() { + this._reset(); }; - Hammer.Instance.prototype = { - /** - * bind events to the instance - * @method on - * @chainable - * @param {String} gestures multiple gestures by splitting with a space - * @param {Function} handler - * @param {Object} handler.ev event object - */ - on: function onEvent(gestures, handler) { - var self = this; - Event.on(self.element, gestures, handler, function(type) { - self.eventHandlers.push({ gesture: type, handler: handler }); - }); - return self; - }, - - /** - * unbind events to the instance - * @method off - * @chainable - * @param {String} gestures - * @param {Function} handler - */ - off: function offEvent(gestures, handler) { - var self = this; + /** + * Reset the calculated size of the node, forces it to recalculate its size + * @private + */ + Node.prototype._reset = function() { + this.width = undefined; + this.height = undefined; + }; - Event.off(self.element, gestures, handler, function(type) { - var index = Utils.inArray({ gesture: type, handler: handler }); - if(index !== false) { - self.eventHandlers.splice(index, 1); - } - }); - return self; - }, + /** + * get the title of this node. + * @return {string} title The title of the node, or undefined when no title + * has been set. + */ + Node.prototype.getTitle = function() { + return typeof this.title === "function" ? this.title() : this.title; + }; - /** - * trigger gesture event - * @method trigger - * @chainable - * @param {String} gesture - * @param {Object} [eventData] - */ - trigger: function triggerEvent(gesture, eventData) { - // optional - if(!eventData) { - eventData = {}; - } + /** + * Calculate the distance to the border of the Node + * @param {CanvasRenderingContext2D} ctx + * @param {Number} angle Angle in radians + * @returns {number} distance Distance to the border in pixels + */ + Node.prototype.distanceToBorder = function (ctx, angle) { + var borderWidth = 1; - // create DOM event - var event = Hammer.DOCUMENT.createEvent('Event'); - event.initEvent(gesture, true, true); - event.gesture = eventData; + if (!this.width) { + this.resize(ctx); + } - // trigger on the target if it is in the instance element, - // this is for event delegation tricks - var element = this.element; - if(Utils.hasParent(eventData.target, element)) { - element = eventData.target; - } + switch (this.options.shape) { + case 'circle': + case 'dot': + return this.options.radius+ borderWidth; - element.dispatchEvent(event); - return this; - }, + case 'ellipse': + var a = this.width / 2; + var b = this.height / 2; + var w = (Math.sin(angle) * a); + var h = (Math.cos(angle) * b); + return a * b / Math.sqrt(w * w + h * h); - /** - * enable of disable hammer.js detection - * @method enable - * @chainable - * @param {Boolean} state - */ - enable: function enable(state) { - this.enabled = state; - return this; - }, + // TODO: implement distanceToBorder for database + // TODO: implement distanceToBorder for triangle + // TODO: implement distanceToBorder for triangleDown - /** - * dispose this hammer instance - * @method dispose - * @return {Null} - */ - dispose: function dispose() { - var i, eh; + case 'box': + case 'image': + case 'text': + default: + if (this.width) { + return Math.min( + Math.abs(this.width / 2 / Math.cos(angle)), + Math.abs(this.height / 2 / Math.sin(angle))) + borderWidth; + // TODO: reckon with border radius too in case of box + } + else { + return 0; + } - // undo all changes made by stop_browser_behavior - Utils.toggleBehavior(this.element, this.options.behavior, false); + } + // TODO: implement calculation of distance to border for all shapes + }; - // unbind all custom event handlers - for(i = -1; (eh = this.eventHandlers[++i]);) { - Utils.off(this.element, eh.gesture, eh.handler); - } + /** + * Set forces acting on the node + * @param {number} fx Force in horizontal direction + * @param {number} fy Force in vertical direction + */ + Node.prototype._setForce = function(fx, fy) { + this.fx = fx; + this.fy = fy; + }; - this.eventHandlers = []; + /** + * Add forces acting on the node + * @param {number} fx Force in horizontal direction + * @param {number} fy Force in vertical direction + * @private + */ + Node.prototype._addForce = function(fx, fy) { + this.fx += fx; + this.fy += fy; + }; - // unbind the start event listener - Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); + /** + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds + */ + Node.prototype.discreteStep = function(interval) { + if (!this.xFixed) { + var dx = this.damping * this.vx; // damping force + var ax = (this.fx - dx) / this.options.mass; // acceleration + this.vx += ax * interval; // velocity + this.x += this.vx * interval; // position + } - return null; - } + if (!this.yFixed) { + var dy = this.damping * this.vy; // damping force + var ay = (this.fy - dy) / this.options.mass; // acceleration + this.vy += ay * interval; // velocity + this.y += this.vy * interval; // position + } }; + /** - * @module gestures + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds + * @param {number} maxVelocity The speed limit imposed on the velocity */ + Node.prototype.discreteStepLimited = function(interval, maxVelocity) { + if (!this.xFixed) { + var dx = this.damping * this.vx; // damping force + var ax = (this.fx - dx) / this.options.mass; // acceleration + this.vx += ax * interval; // velocity + this.vx = (Math.abs(this.vx) > maxVelocity) ? ((this.vx > 0) ? maxVelocity : -maxVelocity) : this.vx; + this.x += this.vx * interval; // position + } + else { + this.fx = 0; + } + + if (!this.yFixed) { + var dy = this.damping * this.vy; // damping force + var ay = (this.fy - dy) / this.options.mass; // acceleration + this.vy += ay * interval; // velocity + this.vy = (Math.abs(this.vy) > maxVelocity) ? ((this.vy > 0) ? maxVelocity : -maxVelocity) : this.vy; + this.y += this.vy * interval; // position + } + else { + this.fy = 0; + } + }; + /** - * Move with x fingers (default 1) around on the page. - * Preventing the default browser behavior is a good way to improve feel and working. - * ```` - * hammertime.on("drag", function(ev) { - * console.log(ev); - * ev.gesture.preventDefault(); - * }); - * ```` - * - * @class Drag - * @static + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not */ + Node.prototype.isFixed = function() { + return (this.xFixed && this.yFixed); + }; + /** - * @event drag - * @param {Object} ev + * Check if this node is moving + * @param {number} vmin the minimum velocity considered as "moving" + * @return {boolean} true if moving, false if it has no velocity */ + Node.prototype.isMoving = function(vmin) { + var velocity = Math.sqrt(Math.pow(this.vx,2) + Math.pow(this.vy,2)); + // this.velocity = Math.sqrt(Math.pow(this.vx,2) + Math.pow(this.vy,2)) + return (velocity > vmin); + }; + /** - * @event dragstart - * @param {Object} ev + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false */ + Node.prototype.isSelected = function() { + return this.selected; + }; + /** - * @event dragend - * @param {Object} ev + * Retrieve the value of the node. Can be undefined + * @return {Number} value */ + Node.prototype.getValue = function() { + return this.value; + }; + /** - * @event drapleft - * @param {Object} ev + * Calculate the distance from the nodes location to the given location (x,y) + * @param {Number} x + * @param {Number} y + * @return {Number} value */ + Node.prototype.getDistance = function(x, y) { + var dx = this.x - x, + dy = this.y - y; + return Math.sqrt(dx * dx + dy * dy); + }; + + /** - * @event dragright - * @param {Object} ev + * Adjust the value range of the node. The node will adjust it's radius + * based on its value. + * @param {Number} min + * @param {Number} max */ + Node.prototype.setValueRange = function(min, max) { + if (!this.radiusFixed && this.value !== undefined) { + if (max == min) { + this.options.radius= (this.options.radiusMin + this.options.radiusMax) / 2; + } + else { + var scale = (this.options.radiusMax - this.options.radiusMin) / (max - min); + this.options.radius= (this.value - min) * scale + this.options.radiusMin; + } + } + this.baseRadiusValue = this.options.radius; + }; + /** - * @event dragup - * @param {Object} ev + * Draw this node in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx */ + Node.prototype.draw = function(ctx) { + throw "Draw method not initialized for node"; + }; + /** - * @event dragdown - * @param {Object} ev + * Recalculate the size of this node in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx */ + Node.prototype.resize = function(ctx) { + throw "Resize method not initialized for node"; + }; /** - * @param {String} name + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top, right, bottom + * @return {boolean} True if location is located on node */ - (function(name) { - var triggered = false; + Node.prototype.isOverlappingWith = function(obj) { + return (this.left < obj.right && + this.left + this.width > obj.left && + this.top < obj.bottom && + this.top + this.height > obj.top); + }; - function dragGesture(ev, inst) { - var cur = Detection.current; + Node.prototype._resizeImage = function (ctx) { + // TODO: pre calculate the image size - // max touches - if(inst.options.dragMaxTouches > 0 && - ev.touches.length > inst.options.dragMaxTouches) { - return; - } + if (!this.width || !this.height) { // undefined or 0 + var width, height; + if (this.value) { + this.options.radius= this.baseRadiusValue; + var scale = this.imageObj.height / this.imageObj.width; + if (scale !== undefined) { + width = this.options.radius|| this.imageObj.width; + height = this.options.radius* scale || this.imageObj.height; + } + else { + width = 0; + height = 0; + } + } + else { + width = this.imageObj.width; + height = this.imageObj.height; + } + this.width = width; + this.height = height; + + this.growthIndicator = 0; + if (this.width > 0 && this.height > 0) { + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - width; + } + } + + }; + + Node.prototype._drawImage = function (ctx) { + this._resizeImage(ctx); + + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + var yLabel; + if (this.imageObj.width != 0 ) { + // draw the shade + if (this.clusterSize > 1) { + var lineWidth = ((this.clusterSize > 1) ? 10 : 0.0); + lineWidth *= this.networkScaleInv; + lineWidth = Math.min(0.2 * this.width,lineWidth); + + ctx.globalAlpha = 0.5; + ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); + } + + // draw the image + ctx.globalAlpha = 1.0; + ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); + yLabel = this.y + this.height / 2; + } + else { + // image still loading... just draw the label for now + yLabel = this.y; + } + + this._label(ctx, this.label, this.x, yLabel, undefined, "top"); + }; + + + Node.prototype._resizeBox = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; + + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; + this.growthIndicator = this.width - (textSize.width + 2 * margin); + // this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + + } + }; + + Node.prototype._drawBox = function (ctx) { + this._resizeBox(ctx); + + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + + ctx.roundRect(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth, this.options.radius); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; + + ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); + ctx.fill(); + ctx.stroke(); - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + this._label(ctx, this.label, this.x, this.y); + }; - case EVENT_MOVE: - // when the distance we moved is too small we skip this gesture - // or we can be already in dragging - if(ev.distance < inst.options.dragMinDistance && - cur.name != name) { - return; - } - var startCenter = cur.startEvent.center; + Node.prototype._resizeDatabase = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + var size = textSize.width + 2 * margin; + this.width = size; + this.height = size; - // we are dragging! - if(cur.name != name) { - cur.name = name; - if(inst.options.dragDistanceCorrection && ev.distance > 0) { - // When a drag is triggered, set the event center to dragMinDistance pixels from the original event center. - // Without this correction, the dragged distance would jumpstart at dragMinDistance pixels instead of at 0. - // It might be useful to save the original start point somewhere - var factor = Math.abs(inst.options.dragMinDistance / ev.distance); - startCenter.pageX += ev.deltaX * factor; - startCenter.pageY += ev.deltaY * factor; - startCenter.clientX += ev.deltaX * factor; - startCenter.clientY += ev.deltaY * factor; + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - size; + } + }; - // recalculate event data using new start point - ev = Detection.extendEventData(ev); - } - } + Node.prototype._drawDatabase = function (ctx) { + this._resizeDatabase(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - // lock drag to axis? - if(cur.lastEvent.dragLockToAxis || - ( inst.options.dragLockToAxis && - inst.options.dragLockMinDistance <= ev.distance - )) { - ev.dragLockToAxis = true; - } + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - // keep direction on the axis that the drag gesture started on - var lastDirection = cur.lastEvent.direction; - if(ev.dragLockToAxis && lastDirection !== ev.direction) { - if(Utils.isVertical(lastDirection)) { - ev.direction = (ev.deltaY < 0) ? DIRECTION_UP : DIRECTION_DOWN; - } else { - ev.direction = (ev.deltaX < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - } + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - // trigger events - inst.trigger(name, ev); - inst.trigger(name + ev.direction, ev); + ctx.database(this.x - this.width/2 - 2*ctx.lineWidth, this.y - this.height*0.5 - 2*ctx.lineWidth, this.width + 4*ctx.lineWidth, this.height + 4*ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - var isVertical = Utils.isVertical(ev.direction); + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx.database(this.x - this.width/2, this.y - this.height*0.5, this.width, this.height); + ctx.fill(); + ctx.stroke(); - // block the browser events - if((inst.options.dragBlockVertical && isVertical) || - (inst.options.dragBlockHorizontal && !isVertical)) { - ev.preventDefault(); - } - break; + this._label(ctx, this.label, this.x, this.y); + }; - case EVENT_RELEASE: - if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - case EVENT_END: - triggered = false; - break; - } - } + Node.prototype._resizeCircle = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + var diameter = Math.max(textSize.width, textSize.height) + 2 * margin; + this.options.radius = diameter / 2; - Hammer.gestures.Drag = { - name: name, - index: 50, - handler: dragGesture, - defaults: { - /** - * minimal movement that have to be made before the drag event gets triggered - * @property dragMinDistance - * @type {Number} - * @default 10 - */ - dragMinDistance: 10, + this.width = diameter; + this.height = diameter; - /** - * Set dragDistanceCorrection to true to make the starting point of the drag - * be calculated from where the drag was triggered, not from where the touch started. - * Useful to avoid a jerk-starting drag, which can make fine-adjustments - * through dragging difficult, and be visually unappealing. - * @property dragDistanceCorrection - * @type {Boolean} - * @default true - */ - dragDistanceCorrection: true, + // scaling used for clustering + // this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeWidthFactor; + // this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeHeightFactor; + this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + this.growthIndicator = this.options.radius- 0.5*diameter; + } + }; - /** - * set 0 for unlimited, but this can conflict with transform - * @property dragMaxTouches - * @type {Number} - * @default 1 - */ - dragMaxTouches: 1, + Node.prototype._drawCircle = function (ctx) { + this._resizeCircle(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - /** - * prevent default browser behavior when dragging occurs - * be careful with it, it makes the element a blocking element - * when you are using the drag gesture, it is a good practice to set this true - * @property dragBlockHorizontal - * @type {Boolean} - * @default false - */ - dragBlockHorizontal: false, + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - /** - * same as `dragBlockHorizontal`, but for vertical movement - * @property dragBlockVertical - * @type {Boolean} - * @default false - */ - dragBlockVertical: false, + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - /** - * dragLockToAxis keeps the drag gesture on the axis that it started on, - * It disallows vertical directions if the initial direction was horizontal, and vice versa. - * @property dragLockToAxis - * @type {Boolean} - * @default false - */ - dragLockToAxis: false, + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - /** - * drag lock only kicks in when distance > dragLockMinDistance - * This way, locking occurs only when the distance has become large enough to reliably determine the direction - * @property dragLockMinDistance - * @type {Number} - * @default 25 - */ - dragLockMinDistance: 25 - } - }; - })('drag'); + ctx.circle(this.x, this.y, this.options.radius+2*ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - /** - * @module gestures - */ - /** - * trigger a simple gesture event, so you can do anything in your handler. - * only usable if you know what your doing... - * - * @class Gesture - * @static - */ - /** - * @event gesture - * @param {Object} ev - */ - Hammer.gestures.Gesture = { - name: 'gesture', - index: 1337, - handler: function releaseGesture(ev, inst) { - inst.trigger(this.name, ev); - } - }; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx.circle(this.x, this.y, this.options.radius); + ctx.fill(); + ctx.stroke(); - /** - * @module gestures - */ - /** - * Touch stays at the same place for x time - * - * @class Hold - * @static - */ - /** - * @event hold - * @param {Object} ev - */ + this._label(ctx, this.label, this.x, this.y); + }; - /** - * @param {String} name - */ - (function(name) { - var timer; + Node.prototype._resizeEllipse = function (ctx) { + if (!this.width) { + var textSize = this.getTextSize(ctx); - function holdGesture(ev, inst) { - var options = inst.options, - current = Detection.current; + this.width = textSize.width * 1.5; + this.height = textSize.height * 2; + if (this.width < this.height) { + this.width = this.height; + } + var defaultSize = this.width; - switch(ev.eventType) { - case EVENT_START: - clearTimeout(timer); + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - defaultSize; + } + }; - // set the gesture so we can check in the timeout if it still is - current.name = name; + Node.prototype._drawEllipse = function (ctx) { + this._resizeEllipse(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - // set timer and if after the timeout it still is hold, - // we trigger the hold event - timer = setTimeout(function() { - if(current && current.name == name) { - inst.trigger(name, ev); - } - }, options.holdTimeout); - break; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - case EVENT_MOVE: - if(ev.distance > options.holdThreshold) { - clearTimeout(timer); - } - break; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - case EVENT_RELEASE: - clearTimeout(timer); - break; - } - } + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - Hammer.gestures.Hold = { - name: name, - index: 10, - defaults: { - /** - * @property holdTimeout - * @type {Number} - * @default 500 - */ - holdTimeout: 500, + ctx.ellipse(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - /** - * movement allowed while holding - * @property holdThreshold - * @type {Number} - * @default 2 - */ - holdThreshold: 2 - }, - handler: holdGesture - }; - })('hold'); + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; - /** - * @module gestures - */ - /** - * when a touch is being released from the page - * - * @class Release - * @static - */ - /** - * @event release - * @param {Object} ev - */ - Hammer.gestures.Release = { - name: 'release', - index: Infinity, - handler: function releaseGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - inst.trigger(this.name, ev); - } - } + ctx.ellipse(this.left, this.top, this.width, this.height); + ctx.fill(); + ctx.stroke(); + this._label(ctx, this.label, this.x, this.y); }; - /** - * @module gestures - */ - /** - * triggers swipe events when the end velocity is above the threshold - * for best usage, set `preventDefault` (on the drag gesture) to `true` - * ```` - * hammertime.on("dragleft swipeleft", function(ev) { - * console.log(ev); - * ev.gesture.preventDefault(); - * }); - * ```` - * - * @class Swipe - * @static - */ - /** - * @event swipe - * @param {Object} ev - */ - /** - * @event swipeleft - * @param {Object} ev - */ - /** - * @event swiperight - * @param {Object} ev - */ - /** - * @event swipeup - * @param {Object} ev - */ - /** - * @event swipedown - * @param {Object} ev - */ - Hammer.gestures.Swipe = { - name: 'swipe', - index: 40, - defaults: { - /** - * @property swipeMinTouches - * @type {Number} - * @default 1 - */ - swipeMinTouches: 1, + Node.prototype._drawDot = function (ctx) { + this._drawShape(ctx, 'circle'); + }; - /** - * @property swipeMaxTouches - * @type {Number} - * @default 1 - */ - swipeMaxTouches: 1, + Node.prototype._drawTriangle = function (ctx) { + this._drawShape(ctx, 'triangle'); + }; - /** - * horizontal swipe velocity - * @property swipeVelocityX - * @type {Number} - * @default 0.6 - */ - swipeVelocityX: 0.6, + Node.prototype._drawTriangleDown = function (ctx) { + this._drawShape(ctx, 'triangleDown'); + }; - /** - * vertical swipe velocity - * @property swipeVelocityY - * @type {Number} - * @default 0.6 - */ - swipeVelocityY: 0.6 - }, + Node.prototype._drawSquare = function (ctx) { + this._drawShape(ctx, 'square'); + }; - handler: function swipeGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - var touches = ev.touches.length, - options = inst.options; + Node.prototype._drawStar = function (ctx) { + this._drawShape(ctx, 'star'); + }; - // max touches - if(touches < options.swipeMinTouches || - touches > options.swipeMaxTouches) { - return; - } + Node.prototype._resizeShape = function (ctx) { + if (!this.width) { + this.options.radius= this.baseRadiusValue; + var size = 2 * this.options.radius; + this.width = size; + this.height = size; - // when the distance we moved is too small we skip this gesture - // or we can be already in dragging - if(ev.velocityX > options.swipeVelocityX || - ev.velocityY > options.swipeVelocityY) { - // trigger swipe events - inst.trigger(this.name, ev); - inst.trigger(this.name + ev.direction, ev); - } - } - } + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * 0.5 * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - size; + } }; - /** - * @module gestures - */ - /** - * Single tap and a double tap on a place - * - * @class Tap - * @static - */ - /** - * @event tap - * @param {Object} ev - */ - /** - * @event doubletap - * @param {Object} ev - */ + Node.prototype._drawShape = function (ctx, shape) { + this._resizeShape(ctx); + + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + var radiusMultiplier = 2; + + // choose draw method depending on the shape + switch (shape) { + case 'dot': radiusMultiplier = 2; break; + case 'square': radiusMultiplier = 2; break; + case 'triangle': radiusMultiplier = 3; break; + case 'triangleDown': radiusMultiplier = 3; break; + case 'star': radiusMultiplier = 4; break; + } - /** - * @param {String} name - */ - (function(name) { - var hasMoved = false; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - function tapGesture(ev, inst) { - var options = inst.options, - current = Detection.current, - prev = Detection.previous, - sincePrev, - didDoubleTap; + ctx[shape](this.x, this.y, this.options.radius+ radiusMultiplier * ctx.lineWidth); + ctx.stroke(); + } + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - switch(ev.eventType) { - case EVENT_START: - hasMoved = false; - break; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + ctx[shape](this.x, this.y, this.options.radius); + ctx.fill(); + ctx.stroke(); - case EVENT_MOVE: - hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); - break; + if (this.label) { + this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); + } + }; - case EVENT_END: - if(!Utils.inStr(ev.srcEvent.type, 'cancel') && ev.deltaTime < options.tapMaxTime && !hasMoved) { - // previous gesture, for the double tap since these are two different gesture detections - sincePrev = prev && prev.lastEvent && ev.timeStamp - prev.lastEvent.timeStamp; - didDoubleTap = false; + Node.prototype._resizeText = function (ctx) { + if (!this.width) { + var margin = 5; + var textSize = this.getTextSize(ctx); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; - // check if double tap - if(prev && prev.name == name && - (sincePrev && sincePrev < options.doubleTapInterval) && - ev.distance < options.doubleTapDistance) { - inst.trigger('doubletap', ev); - didDoubleTap = true; - } + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - (textSize.width + 2 * margin); + } + }; - // do a single tap - if(!didDoubleTap || options.tapAlways) { - current.name = name; - inst.trigger(current.name, ev); - } - } - break; - } - } + Node.prototype._drawText = function (ctx) { + this._resizeText(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - Hammer.gestures.Tap = { - name: name, - index: 100, - handler: tapGesture, - defaults: { - /** - * max time of a tap, this is for the slow tappers - * @property tapMaxTime - * @type {Number} - * @default 250 - */ - tapMaxTime: 250, + this._label(ctx, this.label, this.x, this.y); + }; - /** - * max distance of movement of a tap, this is for the slow tappers - * @property tapMaxDistance - * @type {Number} - * @default 10 - */ - tapMaxDistance: 10, - /** - * always trigger the `tap` event, even while double-tapping - * @property tapAlways - * @type {Boolean} - * @default true - */ - tapAlways: true, + Node.prototype._label = function (ctx, text, x, y, align, baseline, labelUnderNode) { + if (text && Number(this.options.fontSize) * this.networkScale > this.fontDrawThreshold) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = align || "center"; + ctx.textBaseline = baseline || "middle"; - /** - * max distance between two taps - * @property doubleTapDistance - * @type {Number} - * @default 20 - */ - doubleTapDistance: 20, + var lines = text.split('\n'); + var lineCount = lines.length; + var fontSize = (Number(this.options.fontSize) + 4); + var yLine = y + (1 - lineCount) / 2 * fontSize; + if (labelUnderNode == true) { + yLine = y + (1 - lineCount) / (2 * fontSize); + } - /** - * max time between two taps - * @property doubleTapInterval - * @type {Number} - * @default 300 - */ - doubleTapInterval: 300 - } - }; - })('tap'); + for (var i = 0; i < lineCount; i++) { + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; + } + } + }; - /** - * @module gestures - */ - /** - * when a touch is being touched at the page - * - * @class Touch - * @static - */ - /** - * @event touch - * @param {Object} ev - */ - Hammer.gestures.Touch = { - name: 'touch', - index: -Infinity, - defaults: { - /** - * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, - * but it improves gestures like transforming and dragging. - * be careful with using this, it can be very annoying for users to be stuck on the page - * @property preventDefault - * @type {Boolean} - * @default false - */ - preventDefault: false, - /** - * disable mouse events, so only touch (or pen!) input triggers events - * @property preventMouse - * @type {Boolean} - * @default false - */ - preventMouse: false - }, - handler: function touchGesture(ev, inst) { - if(inst.options.preventMouse && ev.pointerType == POINTER_MOUSE) { - ev.stopDetect(); - return; - } + Node.prototype.getTextSize = function(ctx) { + if (this.label !== undefined) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; - if(inst.options.preventDefault) { - ev.preventDefault(); - } + var lines = this.label.split('\n'), + height = (Number(this.options.fontSize) + 4) * lines.length, + width = 0; - if(ev.eventType == EVENT_TOUCH) { - inst.trigger('touch', ev); - } + for (var i = 0, iMax = lines.length; i < iMax; i++) { + width = Math.max(width, ctx.measureText(lines[i]).width); } + + return {"width": width, "height": height}; + } + else { + return {"width": 0, "height": 0}; + } }; /** - * @module gestures - */ - /** - * User want to scale or rotate with 2 fingers - * Preventing the default browser behavior is a good way to improve feel and working. This can be done with the - * `preventDefault` option. + * this is used to determine if a node is visible at all. this is used to determine when it needs to be drawn. + * there is a safety margin of 0.3 * width; * - * @class Transform - * @static - */ - /** - * @event transform - * @param {Object} ev - */ - /** - * @event transformstart - * @param {Object} ev + * @returns {boolean} */ + Node.prototype.inArea = function() { + if (this.width !== undefined) { + return (this.x + this.width *this.networkScaleInv >= this.canvasTopLeft.x && + this.x - this.width *this.networkScaleInv < this.canvasBottomRight.x && + this.y + this.height*this.networkScaleInv >= this.canvasTopLeft.y && + this.y - this.height*this.networkScaleInv < this.canvasBottomRight.y); + } + else { + return true; + } + }; + /** - * @event transformend - * @param {Object} ev + * checks if the core of the node is in the display area, this is used for opening clusters around zoom + * @returns {boolean} */ + Node.prototype.inView = function() { + return (this.x >= this.canvasTopLeft.x && + this.x < this.canvasBottomRight.x && + this.y >= this.canvasTopLeft.y && + this.y < this.canvasBottomRight.y); + }; + /** - * @event pinchin - * @param {Object} ev + * This allows the zoom level of the network to influence the rendering + * We store the inverted scale and the coordinates of the top left, and bottom right points of the canvas + * + * @param scale + * @param canvasTopLeft + * @param canvasBottomRight */ + Node.prototype.setScaleAndPos = function(scale,canvasTopLeft,canvasBottomRight) { + this.networkScaleInv = 1.0/scale; + this.networkScale = scale; + this.canvasTopLeft = canvasTopLeft; + this.canvasBottomRight = canvasBottomRight; + }; + + /** - * @event pinchout - * @param {Object} ev + * This allows the zoom level of the network to influence the rendering + * + * @param scale */ + Node.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + this.networkScale = scale; + }; + + + /** - * @event rotate - * @param {Object} ev + * set the velocity at 0. Is called when this node is contained in another during clustering */ + Node.prototype.clearVelocity = function() { + this.vx = 0; + this.vy = 0; + }; + /** - * @param {String} name + * Basic preservation of (kinectic) energy + * + * @param massBeforeClustering */ - (function(name) { - var triggered = false; + Node.prototype.updateVelocity = function(massBeforeClustering) { + var energyBefore = this.vx * this.vx * massBeforeClustering; + //this.vx = (this.vx < 0) ? -Math.sqrt(energyBefore/this.options.mass) : Math.sqrt(energyBefore/this.options.mass); + this.vx = Math.sqrt(energyBefore/this.options.mass); + energyBefore = this.vy * this.vy * massBeforeClustering; + //this.vy = (this.vy < 0) ? -Math.sqrt(energyBefore/this.options.mass) : Math.sqrt(energyBefore/this.options.mass); + this.vy = Math.sqrt(energyBefore/this.options.mass); + }; - function transformGesture(ev, inst) { - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + module.exports = Node; - case EVENT_MOVE: - // at least multitouch - if(ev.touches.length < 2) { - return; - } - var scaleThreshold = Math.abs(1 - ev.scale); - var rotationThreshold = Math.abs(ev.rotation); +/***/ }, +/* 48 */ +/***/ function(module, exports, __webpack_require__) { - // when the distance we moved is too small we skip this gesture - // or we can be already in dragging - if(scaleThreshold < inst.options.transformMinScale && - rotationThreshold < inst.options.transformMinRotation) { - return; - } + var util = __webpack_require__(1); + var Node = __webpack_require__(47); - // we are transforming! - Detection.current.name = name; + /** + * @class Edge + * + * A edge connects two nodes + * @param {Object} properties Object with properties. Must contain + * At least properties from and to. + * Available properties: from (number), + * to (number), label (string, color (string), + * width (number), style (string), + * length (number), title (string) + * @param {Network} network A Network object, used to find and edge to + * nodes. + * @param {Object} constants An object with default values for + * example for the color + */ + function Edge (properties, network, networkConstants) { + if (!network) { + throw "No network provided"; + } + var fields = ['edges','physics']; + var constants = util.selectiveBridgeObject(fields,networkConstants); + this.options = constants.edges; + this.physics = constants.physics; + this.options['smoothCurves'] = networkConstants['smoothCurves']; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } - inst.trigger(name, ev); // basic transform event + this.network = network; - // trigger rotate event - if(rotationThreshold > inst.options.transformMinRotation) { - inst.trigger('rotate', ev); - } + // initialize variables + this.id = undefined; + this.fromId = undefined; + this.toId = undefined; + this.title = undefined; + this.widthSelected = this.options.width * this.options.widthSelectionMultiplier; + this.value = undefined; + this.selected = false; + this.hover = false; - // trigger pinch event - if(scaleThreshold > inst.options.transformMinScale) { - inst.trigger('pinch', ev); - inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); - } - break; + this.from = null; // a node + this.to = null; // a node + this.via = null; // a temp node - case EVENT_RELEASE: - if(triggered && ev.changedLength < 2) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - } - } + // we use this to be able to reconnect the edge to a cluster if its node is put into a cluster + // by storing the original information we can revert to the original connection when the cluser is opened. + this.originalFromId = []; + this.originalToId = []; - Hammer.gestures.Transform = { - name: name, - index: 45, - defaults: { - /** - * minimal scale factor, no scale is 1, zoomin is to 0 and zoomout until higher then 1 - * @property transformMinScale - * @type {Number} - * @default 0.01 - */ - transformMinScale: 0.01, + this.connected = false; - /** - * rotation in degrees - * @property transformMinRotation - * @type {Number} - * @default 1 - */ - transformMinRotation: 1 - }, + this.widthFixed = false; + this.lengthFixed = false; - handler: transformGesture - }; - })('transform'); + this.setProperties(properties); + + this.controlNodesEnabled = false; + this.controlNodes = {from:null, to:null, positions:{}}; + this.connectedNode = null; + } /** - * @module hammer + * Set or overwrite properties for the edge + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties */ + Edge.prototype.setProperties = function(properties) { + if (!properties) { + return; + } - // AMD export - if(true) { - !(__WEBPACK_AMD_DEFINE_RESULT__ = (function() { - return Hammer; - }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - // commonjs export - } else if(typeof module !== 'undefined' && module.exports) { - module.exports = Hammer; - // browser export - } else { - window.Hammer = Hammer; - } + var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', + 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - })(window); + if (properties.from !== undefined) {this.fromId = properties.from;} + if (properties.to !== undefined) {this.toId = properties.to;} -/***/ }, -/* 49 */ -/***/ function(module, exports, __webpack_require__) { + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label;} - /** - * Copyright 2012 Craig Campbell - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * Mousetrap is a simple keyboard shortcut library for Javascript with - * no external dependencies - * - * @version 1.1.2 - * @url craig.is/killing/mice - */ + if (properties.title !== undefined) {this.title = properties.title;} + if (properties.value !== undefined) {this.value = properties.value;} + if (properties.length !== undefined) {this.physics.springLength = properties.length;} - /** - * mapping of special keycodes to their corresponding keys - * - * everything in this dictionary cannot use keypress events - * so it has to be here to map to the correct keycodes for - * keyup/keydown events - * - * @type {Object} - */ - var _MAP = { - 8: 'backspace', - 9: 'tab', - 13: 'enter', - 16: 'shift', - 17: 'ctrl', - 18: 'alt', - 20: 'capslock', - 27: 'esc', - 32: 'space', - 33: 'pageup', - 34: 'pagedown', - 35: 'end', - 36: 'home', - 37: 'left', - 38: 'up', - 39: 'right', - 40: 'down', - 45: 'ins', - 46: 'del', - 91: 'meta', - 93: 'meta', - 224: 'meta' - }, + // scale the arrow + if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + + if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} + + if (properties.color !== undefined) { + this.options.inheritColor = false; + if (util.isString(properties.color)) { + this.options.color.color = properties.color; + this.options.color.highlight = properties.color; + } + else { + if (properties.color.color !== undefined) {this.options.color.color = properties.color.color;} + if (properties.color.highlight !== undefined) {this.options.color.highlight = properties.color.highlight;} + if (properties.color.hover !== undefined) {this.options.color.hover = properties.color.hover;} + } + } - /** - * mapping for special characters so they can support - * - * this dictionary is only used incase you want to bind a - * keyup or keydown event to one of these keys - * - * @type {Object} - */ - _KEYCODE_MAP = { - 106: '*', - 107: '+', - 109: '-', - 110: '.', - 111 : '/', - 186: ';', - 187: '=', - 188: ',', - 189: '-', - 190: '.', - 191: '/', - 192: '`', - 219: '[', - 220: '\\', - 221: ']', - 222: '\'' - }, + // A node is connected when it has a from and to node. + this.connect(); - /** - * this is a mapping of keys that require shift on a US keypad - * back to the non shift equivelents - * - * this is so you can use keyup events with these keys - * - * note that this will only work reliably on US keyboards - * - * @type {Object} - */ - _SHIFT_MAP = { - '~': '`', - '!': '1', - '@': '2', - '#': '3', - '$': '4', - '%': '5', - '^': '6', - '&': '7', - '*': '8', - '(': '9', - ')': '0', - '_': '-', - '+': '=', - ':': ';', - '\"': '\'', - '<': ',', - '>': '.', - '?': '/', - '|': '\\' - }, + this.widthFixed = this.widthFixed || (properties.width !== undefined); + this.lengthFixed = this.lengthFixed || (properties.length !== undefined); - /** - * this is a list of special strings you can use to map - * to modifier keys when you specify your keyboard shortcuts - * - * @type {Object} - */ - _SPECIAL_ALIASES = { - 'option': 'alt', - 'command': 'meta', - 'return': 'enter', - 'escape': 'esc' - }, + this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; - /** - * variable to store the flipped version of _MAP from above - * needed to check if we should use keypress or not when no action - * is specified - * - * @type {Object|undefined} - */ - _REVERSE_MAP, + // set draw method based on style + switch (this.options.style) { + case 'line': this.draw = this._drawLine; break; + case 'arrow': this.draw = this._drawArrow; break; + case 'arrow-center': this.draw = this._drawArrowCenter; break; + case 'dash-line': this.draw = this._drawDashLine; break; + default: this.draw = this._drawLine; break; + } + }; - /** - * a list of all the callbacks setup via Mousetrap.bind() - * - * @type {Object} - */ - _callbacks = {}, + /** + * Connect an edge to its nodes + */ + Edge.prototype.connect = function () { + this.disconnect(); - /** - * direct map of string combinations to callbacks used for trigger() - * - * @type {Object} - */ - _direct_map = {}, + this.from = this.network.nodes[this.fromId] || null; + this.to = this.network.nodes[this.toId] || null; + this.connected = (this.from && this.to); - /** - * keeps track of what level each sequence is at since multiple - * sequences can start out with the same sequence - * - * @type {Object} - */ - _sequence_levels = {}, + if (this.connected) { + this.from.attachEdge(this); + this.to.attachEdge(this); + } + else { + if (this.from) { + this.from.detachEdge(this); + } + if (this.to) { + this.to.detachEdge(this); + } + } + }; - /** - * variable to store the setTimeout call - * - * @type {null|number} - */ - _reset_timer, + /** + * Disconnect an edge from its nodes + */ + Edge.prototype.disconnect = function () { + if (this.from) { + this.from.detachEdge(this); + this.from = null; + } + if (this.to) { + this.to.detachEdge(this); + this.to = null; + } - /** - * temporary state where we will ignore the next keyup - * - * @type {boolean|string} - */ - _ignore_next_keyup = false, + this.connected = false; + }; - /** - * are we currently inside of a sequence? - * type of action ("keyup" or "keydown" or "keypress") or false - * - * @type {boolean|string} - */ - _inside_sequence = false; + /** + * get the title of this edge. + * @return {string} title The title of the edge, or undefined when no title + * has been set. + */ + Edge.prototype.getTitle = function() { + return typeof this.title === "function" ? this.title() : this.title; + }; - /** - * loop through the f keys, f1 to f19 and add them to the map - * programatically - */ - for (var i = 1; i < 20; ++i) { - _MAP[111 + i] = 'f' + i; + + /** + * Retrieve the value of the edge. Can be undefined + * @return {Number} value + */ + Edge.prototype.getValue = function() { + return this.value; + }; + + /** + * Adjust the value range of the edge. The edge will adjust it's width + * based on its value. + * @param {Number} min + * @param {Number} max + */ + Edge.prototype.setValueRange = function(min, max) { + if (!this.widthFixed && this.value !== undefined) { + var scale = (this.options.widthMax - this.options.widthMin) / (max - min); + this.options.width= (this.value - min) * scale + this.options.widthMin; + this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; } + }; - /** - * loop through to map numbers on the numeric keypad - */ - for (i = 0; i <= 9; ++i) { - _MAP[i + 96] = i; + /** + * Redraw a edge + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + */ + Edge.prototype.draw = function(ctx) { + throw "Method draw not initialized in edge"; + }; + + /** + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top + * @return {boolean} True if location is located on the edge + */ + Edge.prototype.isOverlappingWith = function(obj) { + if (this.connected) { + var distMax = 10; + var xFrom = this.from.x; + var yFrom = this.from.y; + var xTo = this.to.x; + var yTo = this.to.y; + var xObj = obj.left; + var yObj = obj.top; + + var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + + return (dist < distMax); + } + else { + return false + } + }; + + Edge.prototype._getColor = function() { + var colorObj = this.options.color; + if (this.options.inheritColor == "to") { + colorObj = { + highlight: this.to.options.color.highlight.border, + hover: this.to.options.color.hover.border, + color: this.to.options.color.border + }; + } + else if (this.options.inheritColor == "from" || this.options.inheritColor == true) { + colorObj = { + highlight: this.from.options.color.highlight.border, + hover: this.from.options.color.hover.border, + color: this.from.options.color.border + }; } - /** - * cross browser add event method - * - * @param {Element|HTMLDocument} object - * @param {string} type - * @param {Function} callback - * @returns void - */ - function _addEvent(object, type, callback) { - if (object.addEventListener) { - return object.addEventListener(type, callback, false); - } + if (this.selected == true) {return colorObj.highlight;} + else if (this.hover == true) {return colorObj.hover;} + else {return colorObj.color;} + } - object.attachEvent('on' + type, callback); - } - /** - * takes the event and returns the key character - * - * @param {Event} e - * @return {string} - */ - function _characterFromEvent(e) { + /** + * Redraw a edge as a line + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._drawLine = function(ctx) { + // set style + ctx.strokeStyle = this._getColor(); + ctx.lineWidth = this._getLineWidth(); - // for keypress events we should return the character as is - if (e.type == 'keypress') { - return String.fromCharCode(e.which); - } + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // for non keypress events the special maps are needed - if (_MAP[e.which]) { - return _MAP[e.which]; + // draw label + var point; + if (this.label) { + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; } - - if (_KEYCODE_MAP[e.which]) { - return _KEYCODE_MAP[e.which]; + else { + point = this._pointOnLine(0.5); } + this._label(ctx, this.label, point.x, point.y); + } + } + else { + var x, y; + var radius = this.physics.springLength / 4; + var node = this.from; + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width / 2; + y = node.y - radius; + } + else { + x = node.x + radius; + y = node.y - node.height / 2; + } + this._circle(ctx, x, y, radius); + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + }; - // if it is not in the special map - return String.fromCharCode(e.which).toLowerCase(); + /** + * Get the line width of the edge. Depends on width and whether one of the + * connected nodes is selected. + * @return {Number} width + * @private + */ + Edge.prototype._getLineWidth = function() { + if (this.selected == true) { + return Math.min(this.widthSelected, this.options.widthMax)*this.networkScaleInv; } + else { + if (this.hover == true) { + return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; + } + else { + return this.options.width*this.networkScaleInv; + } + } + }; - /** - * should we stop this event before firing off callbacks - * - * @param {Event} e - * @return {boolean} - */ - function _stop(e) { - var element = e.target || e.srcElement, - tag_name = element.tagName; + Edge.prototype._getViaCoordinates = function () { + var xVia = null; + var yVia = null; + var factor = this.options.smoothCurves.roundness; + var type = this.options.smoothCurves.type; - // if the element has the class "mousetrap" then no need to stop - if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { - return false; + var dx = Math.abs(this.from.x - this.to.x); + var dy = Math.abs(this.from.y - this.to.y); + if (type == 'discrete' || type == 'diagonalCross') { + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + } + else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + } } - - // stop for input, select, and textarea - return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + } + else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + } + } + if (type == "discrete") { + xVia = dx < factor * dy ? this.from.x : xVia; + } + } + else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + } + else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + } + } + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + } + else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + } + } + if (type == "discrete") { + yVia = dy < factor * dx ? this.from.y : yVia; + } + } } - - /** - * checks if two arrays are equal - * - * @param {Array} modifiers1 - * @param {Array} modifiers2 - * @returns {boolean} - */ - function _modifiersMatch(modifiers1, modifiers2) { - return modifiers1.sort().join(',') === modifiers2.sort().join(','); + else if (type == "straightCross") { + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { // up - down + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1-factor) * dy; + } + else { + yVia = this.to.y + (1-factor) * dy; + } + } + else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { // left - right + if (this.from.x < this.to.x) { + xVia = this.to.x - (1-factor) * dx; + } + else { + xVia = this.to.x + (1-factor) * dx; + } + yVia = this.from.y; + } } - - /** - * resets all sequence counters except for the ones passed in - * - * @param {Object} do_not_reset - * @returns void - */ - function _resetSequences(do_not_reset) { - do_not_reset = do_not_reset || {}; - - var active_sequences = false, - key; - - for (key in _sequence_levels) { - if (do_not_reset[key]) { - active_sequences = true; - continue; - } - _sequence_levels[key] = 0; + else if (type == 'horizontal') { + if (this.from.x < this.to.x) { + xVia = this.to.x - (1-factor) * dx; + } + else { + xVia = this.to.x + (1-factor) * dx; + } + yVia = this.from.y; + } + else if (type == 'vertical') { + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1-factor) * dy; + } + else { + yVia = this.to.y + (1-factor) * dy; + } + } + else { // continuous + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(1) + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(2) + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x > xVia ? this.to.x :xVia; + } } - - if (!active_sequences) { - _inside_sequence = false; + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(3) + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(4, this.from.x, this.to.x) + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } } - } - - /** - * finds all callbacks that match based on the keycode, modifiers, - * and action - * - * @param {string} character - * @param {Array} modifiers - * @param {string} action - * @param {boolean=} remove - should we remove any matches - * @param {string=} combination - * @returns {Array} - */ - function _getMatches(character, modifiers, action, remove, combination) { - var i, - callback, - matches = []; - - // if there are no events related to this keycode - if (!_callbacks[character]) { - return []; + } + else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(5) + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(6) + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } } - - // if a modifier key is coming up on its own we should allow it - if (action == 'keyup' && _isModifier(character)) { - modifiers = [character]; + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(7) + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(8) + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } } + } + } - // loop through all callbacks for the key that was pressed - // and see if any of them match - for (i = 0; i < _callbacks[character].length; ++i) { - callback = _callbacks[character][i]; - - // if this is a sequence but it is not at the right level - // then move onto the next match - if (callback.seq && _sequence_levels[callback.seq] != callback.level) { - continue; - } - - // if the action we are looking for doesn't match the action we got - // then we should keep going - if (action != callback.action) { - continue; - } - - // if this is a keypress event that means that we need to only - // look at the character, otherwise check the modifiers as - // well - if (action == 'keypress' || _modifiersMatch(modifiers, callback.modifiers)) { - // remove is used so if you change your mind and call bind a - // second time with a new function the first one is overwritten - if (remove && callback.combo == combination) { - _callbacks[character].splice(i, 1); - } + return {x:xVia, y:yVia}; + } - matches.push(callback); - } + /** + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._line = function (ctx) { + // draw a straight line + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + if (this.options.smoothCurves.enabled == true) { + if (this.options.smoothCurves.dynamic == false) { + var via = this._getViaCoordinates(); + if (via.x == null) { + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; } - - return matches; - } - - /** - * takes a key event and figures out what the modifiers are - * - * @param {Event} e - * @returns {Array} - */ - function _eventModifiers(e) { - var modifiers = []; - - if (e.shiftKey) { - modifiers.push('shift'); + else { + // this.via.x = via.x; + // this.via.y = via.y; + ctx.quadraticCurveTo(via.x,via.y,this.to.x, this.to.y); + ctx.stroke(); + return via; } + } + else { + ctx.quadraticCurveTo(this.via.x,this.via.y,this.to.x, this.to.y); + ctx.stroke(); + return this.via; + } + } + else { + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; + } + }; - if (e.altKey) { - modifiers.push('alt'); - } + /** + * Draw a line from a node to itself, a circle + * @param {CanvasRenderingContext2D} ctx + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @private + */ + Edge.prototype._circle = function (ctx, x, y, radius) { + // draw a circle + ctx.beginPath(); + ctx.arc(x, y, radius, 0, 2 * Math.PI, false); + ctx.stroke(); + }; - if (e.ctrlKey) { - modifiers.push('ctrl'); - } + /** + * Draw label with white background and with the middle at (x, y) + * @param {CanvasRenderingContext2D} ctx + * @param {String} text + * @param {Number} x + * @param {Number} y + * @private + */ + Edge.prototype._label = function (ctx, text, x, y) { + if (text) { + // TODO: cache the calculated size + ctx.font = ((this.from.selected || this.to.selected) ? "bold " : "") + + this.options.fontSize + "px " + this.options.fontFace; + ctx.fillStyle = this.options.fontFill; + var width = ctx.measureText(text).width; + var height = this.options.fontSize; + var left = x - width / 2; + var top = y - height / 2; - if (e.metaKey) { - modifiers.push('meta'); - } + ctx.fillRect(left, top, width, height); - return modifiers; + // draw text + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = "left"; + ctx.textBaseline = "top"; + ctx.fillText(text, left, top); } + }; - /** - * actually calls the callback function - * - * if your callback function returns false this will use the jquery - * convention - prevent default and stop propogation on the event - * - * @param {Function} callback - * @param {Event} e - * @returns void - */ - function _fireCallback(callback, e) { - if (callback(e) === false) { - if (e.preventDefault) { - e.preventDefault(); - } - - if (e.stopPropagation) { - e.stopPropagation(); - } + /** + * Redraw a edge as a dashed line + * Draw this edge in the given canvas + * @author David Jordan + * @date 2012-08-08 + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._drawDashLine = function(ctx) { + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color;} - e.returnValue = false; - e.cancelBubble = true; - } - } + ctx.lineWidth = this._getLineWidth(); - /** - * handles a character key event - * - * @param {string} character - * @param {Event} e - * @returns void - */ - function _handleCharacter(character, e) { + var via = null; + // only firefox and chrome support this method, else we use the legacy one. + if (ctx.mozDash !== undefined || ctx.setLineDash !== undefined) { + // configure the dash pattern + var pattern = [0]; + if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) { + pattern = [this.options.dash.length,this.options.dash.gap]; + } + else { + pattern = [5,5]; + } - // if this event should not happen stop here - if (_stop(e)) { - return; - } + // set dash settings for chrome or firefox + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; - var callbacks = _getMatches(character, _eventModifiers(e), e.type), - i, - do_not_reset = {}, - processed_sequence_callback = false; + } else { //Firefox + ctx.mozDash = pattern; + ctx.mozDashOffset = 0; + } - // loop through matching callbacks for this key event - for (i = 0; i < callbacks.length; ++i) { + // draw the line + via = this._line(ctx); - // fire for all sequence callbacks - // this is because if for example you have multiple sequences - // bound such as "g i" and "g t" they both need to fire the - // callback for matching g cause otherwise you can only ever - // match the first one - if (callbacks[i].seq) { - processed_sequence_callback = true; + // restore the dash settings. + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; - // keep a list of which sequences were matches for later - do_not_reset[callbacks[i].seq] = 1; - _fireCallback(callbacks[i].callback, e); - continue; - } + } else { //Firefox + ctx.mozDash = [0]; + ctx.mozDashOffset = 0; + } + } + else { // unsupporting smooth lines + // draw dashed line + ctx.beginPath(); + ctx.lineCap = 'round'; + if (this.options.dash.altLength !== undefined) //If an alt dash value has been set add to the array this value + { + ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, + [this.options.dash.length,this.options.dash.gap,this.options.dash.altLength,this.options.dash.gap]); + } + else if (this.options.dash.length !== undefined && this.options.dash.gap !== undefined) //If a dash and gap value has been set add to the array this value + { + ctx.dashedLine(this.from.x,this.from.y,this.to.x,this.to.y, + [this.options.dash.length,this.options.dash.gap]); + } + else //If all else fails draw a line + { + ctx.moveTo(this.from.x, this.from.y); + ctx.lineTo(this.to.x, this.to.y); + } + ctx.stroke(); + } - // if there were no sequence matches but we are still here - // that means this is a regular match so we should fire that - if (!processed_sequence_callback && !_inside_sequence) { - _fireCallback(callbacks[i].callback, e); - } - } + // draw label + if (this.label) { + var point; + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; + } + else { + point = this._pointOnLine(0.5); + } + this._label(ctx, this.label, point.x, point.y); + } + }; - // if you are inside of a sequence and the key you are pressing - // is not a modifier key then we should reset all sequences - // that were not matched by this key event - if (e.type == _inside_sequence && !_isModifier(character)) { - _resetSequences(do_not_reset); - } + /** + * Get a point on a line + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private + */ + Edge.prototype._pointOnLine = function (percentage) { + return { + x: (1 - percentage) * this.from.x + percentage * this.to.x, + y: (1 - percentage) * this.from.y + percentage * this.to.y } + }; - /** - * handles a keydown event - * - * @param {Event} e - * @returns void - */ - function _handleKey(e) { + /** + * Get a point on a circle + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private + */ + Edge.prototype._pointOnCircle = function (x, y, radius, percentage) { + var angle = (percentage - 3/8) * 2 * Math.PI; + return { + x: x + radius * Math.cos(angle), + y: y - radius * Math.sin(angle) + } + }; - // normalize e.which for key events - // @see http://stackoverflow.com/questions/4285627/javascript-keycode-vs-charcode-utter-confusion - e.which = typeof e.which == "number" ? e.which : e.keyCode; + /** + * Redraw a edge as a line with an arrow halfway the line + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._drawArrowCenter = function(ctx) { + var point; + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} + ctx.lineWidth = this._getLineWidth(); - var character = _characterFromEvent(e); + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // no character found then stop - if (!character) { - return; - } + var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); + var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + // draw an arrow halfway the line + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; + } + else { + point = this._pointOnLine(0.5); + } - if (e.type == 'keyup' && _ignore_next_keyup == character) { - _ignore_next_keyup = false; - return; - } + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); - _handleCharacter(character, e); + // draw label + if (this.label) { + this._label(ctx, this.label, point.x, point.y); + } } + else { + // draw circle + var x, y; + var radius = 0.25 * Math.max(100,this.physics.springLength); + var node = this.from; + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width * 0.5; + y = node.y - radius; + } + else { + x = node.x + radius; + y = node.y - node.height * 0.5; + } + this._circle(ctx, x, y, radius); - /** - * determines if the keycode specified is a modifier key or not - * - * @param {string} key - * @returns {boolean} - */ - function _isModifier(key) { - return key == 'shift' || key == 'ctrl' || key == 'alt' || key == 'meta'; - } + // draw all arrows + var angle = 0.2 * Math.PI; + var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + point = this._pointOnCircle(x, y, radius, 0.5); + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); - /** - * called to set a 1 second timeout on the specified sequence - * - * this is so after each key press in the sequence you have 1 second - * to press the next key before you have to start over - * - * @returns void - */ - function _resetSequenceTimer() { - clearTimeout(_reset_timer); - _reset_timer = setTimeout(_resetSequences, 1000); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } } + }; - /** - * reverses the map lookup so that we can look for specific keys - * to see what can and can't use keypress - * - * @return {Object} - */ - function _getReverseMap() { - if (!_REVERSE_MAP) { - _REVERSE_MAP = {}; - for (var key in _MAP) { - // pull out the numeric keypad from here cause keypress should - // be able to detect the keys from the character - if (key > 95 && key < 112) { - continue; - } - if (_MAP.hasOwnProperty(key)) { - _REVERSE_MAP[_MAP[key]] = key; - } - } - } - return _REVERSE_MAP; - } + /** + * Redraw a edge as a line with an arrow + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + Edge.prototype._drawArrow = function(ctx) { + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} - /** - * picks the best action based on the key combination - * - * @param {string} key - character for key - * @param {Array} modifiers - * @param {string=} action passed in - */ - function _pickBestAction(key, modifiers, action) { + ctx.lineWidth = this._getLineWidth(); - // if no action was picked in we should try to pick the one - // that we think would work best for this key - if (!action) { - action = _getReverseMap()[key] ? 'keydown' : 'keypress'; - } + var angle, length; + //draw a line + if (this.from != this.to) { + angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); + var dx = (this.to.x - this.from.x); + var dy = (this.to.y - this.from.y); + var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); - // modifier keys don't work as expected with keypress, - // switch to keydown - if (action == 'keypress' && modifiers.length) { - action = 'keydown'; - } + var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); + var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; + var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; + var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; - return action; - } + var via; + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true ) { + via = this.via; + } + else if (this.options.smoothCurves.enabled == true) { + via = this._getViaCoordinates(); + } - /** - * binds a key sequence to an event - * - * @param {string} combo - combo specified in bind call - * @param {Array} keys - * @param {Function} callback - * @param {string=} action - * @returns void - */ - function _bindSequence(combo, keys, callback, action) { + if (this.options.smoothCurves.enabled == true && via.x != null) { + angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); + dx = (this.to.x - via.x); + dy = (this.to.y - via.y); + edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + } + var toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; - // start off by adding a sequence level record for this combination - // and setting the level to 0 - _sequence_levels[combo] = 0; + var xTo,yTo; + if (this.options.smoothCurves.enabled == true && via.x != null) { + xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; + } + else { + xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; + } - // if there is no action pick the best one for the first key - // in the sequence - if (!action) { - action = _pickBestAction(keys[0], []); + ctx.beginPath(); + ctx.moveTo(xFrom,yFrom); + if (this.options.smoothCurves.enabled == true && via.x != null) { + ctx.quadraticCurveTo(via.x,via.y,xTo, yTo); + } + else { + ctx.lineTo(xTo, yTo); + } + ctx.stroke(); + + // draw arrow at the end of the line + length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + ctx.arrow(xTo, yTo, angle, length); + ctx.fill(); + ctx.stroke(); + + // draw label + if (this.label) { + var point; + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; + } + else { + point = this._pointOnLine(0.5); } + this._label(ctx, this.label, point.x, point.y); + } + } + else { + // draw circle + var node = this.from; + var x, y, arrow; + var radius = 0.25 * Math.max(100,this.physics.springLength); + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width * 0.5; + y = node.y - radius; + arrow = { + x: x, + y: node.y, + angle: 0.9 * Math.PI + }; + } + else { + x = node.x + radius; + y = node.y - node.height * 0.5; + arrow = { + x: node.x, + y: y, + angle: 0.6 * Math.PI + }; + } + ctx.beginPath(); + // TODO: similarly, for a line without arrows, draw to the border of the nodes instead of the center + ctx.arc(x, y, radius, 0, 2 * Math.PI, false); + ctx.stroke(); - /** - * callback to increase the sequence level for this sequence and reset - * all other sequences that were active - * - * @param {Event} e - * @returns void - */ - var _increaseSequence = function(e) { - _inside_sequence = action; - ++_sequence_levels[combo]; - _resetSequenceTimer(); - }, + // draw all arrows + var length = (10 + 5 * this.options.width) * this.options.arrowScaleFactor; + ctx.arrow(arrow.x, arrow.y, arrow.angle, length); + ctx.fill(); + ctx.stroke(); - /** - * wraps the specified callback inside of another function in order - * to reset all sequence counters as soon as this sequence is done - * - * @param {Event} e - * @returns void - */ - _callbackAndReset = function(e) { - _fireCallback(callback, e); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + } + }; - // we should ignore the next key up if the action is key down - // or keypress. this is so if you finish a sequence and - // release the key the final key will not trigger a keyup - if (action !== 'keyup') { - _ignore_next_keyup = _characterFromEvent(e); - } - // weird race condition if a sequence ends with the key - // another sequence begins with - setTimeout(_resetSequences, 10); - }, - i; - // loop through keys one at a time and bind the appropriate callback - // function. for any key leading up to the final one it should - // increase the sequence. after the final, it should reset all sequences - for (i = 0; i < keys.length; ++i) { - _bindSingle(keys[i], i < keys.length - 1 ? _increaseSequence : _callbackAndReset, action, combo, i); + /** + * Calculate the distance between a point (x3,y3) and a line segment from + * (x1,y1) to (x2,y2). + * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @private + */ + Edge.prototype._getDistanceToEdge = function (x1,y1, x2,y2, x3,y3) { // x3,y3 is the point + if (this.from != this.to) { + if (this.options.smoothCurves.enabled == true) { + var xVia, yVia; + if (this.options.smoothCurves.enabled == true && this.options.smoothCurves.dynamic == true) { + xVia = this.via.x; + yVia = this.via.y; + } + else { + var via = this._getViaCoordinates(); + xVia = via.x; + yVia = via.y; + } + var minDistance = 1e9; + var distance; + var i,t,x,y, lastX, lastY; + for (i = 0; i < 10; i++) { + t = 0.1*i; + x = Math.pow(1-t,2)*x1 + (2*t*(1 - t))*xVia + Math.pow(t,2)*x2; + y = Math.pow(1-t,2)*y1 + (2*t*(1 - t))*yVia + Math.pow(t,2)*y2; + if (i > 0) { + distance = this._getDistanceToLine(lastX,lastY,x,y, x3,y3); + minDistance = distance < minDistance ? distance : minDistance; + } + lastX = x; lastY = y; } + return minDistance + } + else { + return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); + } } + else { + var x, y, dx, dy; + var radius = this.physics.springLength / 4; + var node = this.from; + if (!node.width) { + node.resize(ctx); + } + if (node.width > node.height) { + x = node.x + node.width / 2; + y = node.y - radius; + } + else { + x = node.x + radius; + y = node.y - node.height / 2; + } + dx = x - x3; + dy = y - y3; + return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); + } + }; - /** - * binds a single keyboard combination - * - * @param {string} combination - * @param {Function} callback - * @param {string=} action - * @param {string=} sequence_name - name of sequence if part of sequence - * @param {number=} level - what part of the sequence the command is - * @returns void - */ - function _bindSingle(combination, callback, action, sequence_name, level) { - - // make sure multiple spaces in a row become a single space - combination = combination.replace(/\s+/g, ' '); + Edge.prototype._getDistanceToLine = function(x1,y1,x2,y2,x3,y3) { + var px = x2-x1, + py = y2-y1, + something = px*px + py*py, + u = ((x3 - x1) * px + (y3 - y1) * py) / something; - var sequence = combination.split(' '), - i, - key, - keys, - modifiers = []; + if (u > 1) { + u = 1; + } + else if (u < 0) { + u = 0; + } - // if this pattern is a sequence of keys then run through this method - // to reprocess each pattern one key at a time - if (sequence.length > 1) { - return _bindSequence(combination, sequence, callback, action); - } + var x = x1 + u * px, + y = y1 + u * py, + dx = x - x3, + dy = y - y3; - // take the keys from this pattern and figure out what the actual - // pattern is all about - keys = combination === '+' ? ['+'] : combination.split('+'); + //# Note: If the actual distance does not matter, + //# if you only want to compare what this function + //# returns to other results of this function, you + //# can just return the squared distance instead + //# (i.e. remove the sqrt) to gain a little performance - for (i = 0; i < keys.length; ++i) { - key = keys[i]; + return Math.sqrt(dx*dx + dy*dy); + } - // normalize key names - if (_SPECIAL_ALIASES[key]) { - key = _SPECIAL_ALIASES[key]; - } + /** + * This allows the zoom level of the network to influence the rendering + * + * @param scale + */ + Edge.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + }; - // if this is not a keypress event then we should - // be smart about using shift keys - // this will only work for US keyboards however - if (action && action != 'keypress' && _SHIFT_MAP[key]) { - key = _SHIFT_MAP[key]; - modifiers.push('shift'); - } - // if this key is a modifier then add it to the list of modifiers - if (_isModifier(key)) { - modifiers.push(key); - } - } + Edge.prototype.select = function() { + this.selected = true; + }; - // depending on what the key combination is - // we will try to pick the best event for it - action = _pickBestAction(key, modifiers, action); + Edge.prototype.unselect = function() { + this.selected = false; + }; - // make sure to initialize array if this is the first time - // a callback is added for this key - if (!_callbacks[key]) { - _callbacks[key] = []; - } + Edge.prototype.positionBezierNode = function() { + if (this.via !== null && this.from !== null && this.to !== null) { + this.via.x = 0.5 * (this.from.x + this.to.x); + this.via.y = 0.5 * (this.from.y + this.to.y); + } + }; - // remove an existing match if there is one - _getMatches(key, modifiers, action, !sequence_name, combination); + /** + * This function draws the control nodes for the manipulator. In order to enable this, only set the this.controlNodesEnabled to true. + * @param ctx + */ + Edge.prototype._drawControlNodes = function(ctx) { + if (this.controlNodesEnabled == true) { + if (this.controlNodes.from === null && this.controlNodes.to === null) { + var nodeIdFrom = "edgeIdFrom:".concat(this.id); + var nodeIdTo = "edgeIdTo:".concat(this.id); + var constants = { + nodes:{group:'', radius:8}, + physics:{damping:0}, + clustering: {maxNodeSizeIncrements: 0 ,nodeScaling: {width:0, height: 0, radius:0}} + }; + this.controlNodes.from = new Node( + {id:nodeIdFrom, + shape:'dot', + color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} + },{},{},constants); + this.controlNodes.to = new Node( + {id:nodeIdTo, + shape:'dot', + color:{background:'#ff4e00', border:'#3c3c3c', highlight: {background:'#07f968'}} + },{},{},constants); + } - // add this call back to the array - // if it is a sequence put it at the beginning - // if not put it at the end - // - // this is important because the way these are processed expects - // the sequence ones to come first - _callbacks[key][sequence_name ? 'unshift' : 'push']({ - callback: callback, - modifiers: modifiers, - action: action, - seq: sequence_name, - level: level, - combo: combination - }); - } + if (this.controlNodes.from.selected == false && this.controlNodes.to.selected == false) { + this.controlNodes.positions = this.getControlNodePositions(ctx); + this.controlNodes.from.x = this.controlNodes.positions.from.x; + this.controlNodes.from.y = this.controlNodes.positions.from.y; + this.controlNodes.to.x = this.controlNodes.positions.to.x; + this.controlNodes.to.y = this.controlNodes.positions.to.y; + } - /** - * binds multiple combinations to the same callback - * - * @param {Array} combinations - * @param {Function} callback - * @param {string|undefined} action - * @returns void - */ - function _bindMultiple(combinations, callback, action) { - for (var i = 0; i < combinations.length; ++i) { - _bindSingle(combinations[i], callback, action); - } + this.controlNodes.from.draw(ctx); + this.controlNodes.to.draw(ctx); + } + else { + this.controlNodes = {from:null, to:null, positions:{}}; } + }; - // start! - _addEvent(document, 'keypress', _handleKey); - _addEvent(document, 'keydown', _handleKey); - _addEvent(document, 'keyup', _handleKey); + /** + * Enable control nodes. + * @private + */ + Edge.prototype._enableControlNodes = function() { + this.controlNodesEnabled = true; + }; - var mousetrap = { + /** + * disable control nodes + * @private + */ + Edge.prototype._disableControlNodes = function() { + this.controlNodesEnabled = false; + }; - /** - * binds an event to mousetrap - * - * can be a single key, a combination of keys separated with +, - * a comma separated list of keys, an array of keys, or - * a sequence of keys separated by spaces - * - * be sure to list the modifier keys first to make sure that the - * correct key ends up getting bound (the last key in the pattern) - * - * @param {string|Array} keys - * @param {Function} callback - * @param {string=} action - 'keypress', 'keydown', or 'keyup' - * @returns void - */ - bind: function(keys, callback, action) { - _bindMultiple(keys instanceof Array ? keys : [keys], callback, action); - _direct_map[keys + ':' + action] = callback; - return this; - }, + /** + * This checks if one of the control nodes is selected and if so, returns the control node object. Else it returns null. + * @param x + * @param y + * @returns {null} + * @private + */ + Edge.prototype._getSelectedControlNode = function(x,y) { + var positions = this.controlNodes.positions; + var fromDistance = Math.sqrt(Math.pow(x - positions.from.x,2) + Math.pow(y - positions.from.y,2)); + var toDistance = Math.sqrt(Math.pow(x - positions.to.x ,2) + Math.pow(y - positions.to.y ,2)); - /** - * unbinds an event to mousetrap - * - * the unbinding sets the callback function of the specified key combo - * to an empty function and deletes the corresponding key in the - * _direct_map dict. - * - * the keycombo+action has to be exactly the same as - * it was defined in the bind method - * - * TODO: actually remove this from the _callbacks dictionary instead - * of binding an empty function - * - * @param {string|Array} keys - * @param {string} action - * @returns void - */ - unbind: function(keys, action) { - if (_direct_map[keys + ':' + action]) { - delete _direct_map[keys + ':' + action]; - this.bind(keys, function() {}, action); - } - return this; - }, + if (fromDistance < 15) { + this.connectedNode = this.from; + this.from = this.controlNodes.from; + return this.controlNodes.from; + } + else if (toDistance < 15) { + this.connectedNode = this.to; + this.to = this.controlNodes.to; + return this.controlNodes.to; + } + else { + return null; + } + }; + + + /** + * this resets the control nodes to their original position. + * @private + */ + Edge.prototype._restoreControlNodes = function() { + if (this.controlNodes.from.selected == true) { + this.from = this.connectedNode; + this.connectedNode = null; + this.controlNodes.from.unselect(); + } + if (this.controlNodes.to.selected == true) { + this.to = this.connectedNode; + this.connectedNode = null; + this.controlNodes.to.unselect(); + } + }; - /** - * triggers an event that has already been bound - * - * @param {string} keys - * @param {string=} action - * @returns void - */ - trigger: function(keys, action) { - _direct_map[keys + ':' + action](); - return this; - }, + /** + * this calculates the position of the control nodes on the edges of the parent nodes. + * + * @param ctx + * @returns {{from: {x: number, y: number}, to: {x: *, y: *}}} + */ + Edge.prototype.getControlNodePositions = function(ctx) { + var angle = Math.atan2((this.to.y - this.from.y), (this.to.x - this.from.x)); + var dx = (this.to.x - this.from.x); + var dy = (this.to.y - this.from.y); + var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + var fromBorderDist = this.from.distanceToBorder(ctx, angle + Math.PI); + var fromBorderPoint = (edgeSegmentLength - fromBorderDist) / edgeSegmentLength; + var xFrom = (fromBorderPoint) * this.from.x + (1 - fromBorderPoint) * this.to.x; + var yFrom = (fromBorderPoint) * this.from.y + (1 - fromBorderPoint) * this.to.y; - /** - * resets the library back to its initial state. this is useful - * if you want to clear out the current keyboard shortcuts and bind - * new ones - for example if you switch to another page - * - * @returns void - */ - reset: function() { - _callbacks = {}; - _direct_map = {}; - return this; - } - }; + var via; + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true) { + via = this.via; + } + else if (this.options.smoothCurves.enabled == true) { + via = this._getViaCoordinates(); + } - module.exports = mousetrap; + if (this.options.smoothCurves.enabled == true && via.x != null) { + angle = Math.atan2((this.to.y - via.y), (this.to.x - via.x)); + dx = (this.to.x - via.x); + dy = (this.to.y - via.y); + edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + } + var toBorderDist = this.to.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + + var xTo,yTo; + if (this.options.smoothCurves.enabled == true && via.x != null) { + xTo = (1 - toBorderPoint) * via.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * via.y + toBorderPoint * this.to.y; + } + else { + xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; + } + return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; + }; + module.exports = Edge; /***/ }, -/* 50 */ +/* 49 */ /***/ function(module, exports, __webpack_require__) { /** - * Creation of the ClusterMixin var. - * - * This contains all the functions the Network object can use to employ clustering + * Popup is a class to create a popup window with some text + * @param {Element} container The container object. + * @param {Number} [x] + * @param {Number} [y] + * @param {String} [text] + * @param {Object} [style] An object containing borderColor, + * backgroundColor, etc. */ + function Popup(container, x, y, text, style) { + if (container) { + this.container = container; + } + else { + this.container = document.body; + } - /** - * This is only called in the constructor of the network object - * - */ - exports.startWithClustering = function() { - // cluster if the data set is big - this.clusterToFit(this.constants.clustering.initialMaxNodes, true); + // x, y and text are optional, see if a style object was passed in their place + if (style === undefined) { + if (typeof x === "object") { + style = x; + x = undefined; + } else if (typeof text === "object") { + style = text; + text = undefined; + } else { + // for backwards compatibility, in case clients other than Network are creating Popup directly + style = { + fontColor: 'black', + fontSize: 14, // px + fontFace: 'verdana', + color: { + border: '#666', + background: '#FFFFC6' + } + } + } + } - // updates the lables after clustering - this.updateLabels(); + this.x = 0; + this.y = 0; + this.padding = 5; - // this is called here because if clusterin is disabled, the start and stabilize are called in - // the setData function. - if (this.stabilize) { - this._stabilize(); - } - this.start(); + if (x !== undefined && y !== undefined ) { + this.setPosition(x, y); + } + if (text !== undefined) { + this.setText(text); + } + + // create the frame + this.frame = document.createElement("div"); + var styleAttr = this.frame.style; + styleAttr.position = "absolute"; + styleAttr.visibility = "hidden"; + styleAttr.border = "1px solid " + style.color.border; + styleAttr.color = style.fontColor; + styleAttr.fontSize = style.fontSize + "px"; + styleAttr.fontFamily = style.fontFace; + styleAttr.padding = this.padding + "px"; + styleAttr.backgroundColor = style.color.background; + styleAttr.borderRadius = "3px"; + styleAttr.MozBorderRadius = "3px"; + styleAttr.WebkitBorderRadius = "3px"; + styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; + styleAttr.whiteSpace = "nowrap"; + this.container.appendChild(this.frame); + } + + /** + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window + */ + Popup.prototype.setPosition = function(x, y) { + this.x = parseInt(x); + this.y = parseInt(y); }; /** - * This function clusters until the initialMaxNodes has been reached - * - * @param {Number} maxNumberOfNodes - * @param {Boolean} reposition + * Set the text for the popup window. This can be HTML code + * @param {string} text */ - exports.clusterToFit = function(maxNumberOfNodes, reposition) { - var numberOfNodes = this.nodeIndices.length; + Popup.prototype.setText = function(text) { + this.frame.innerHTML = text; + }; - var maxLevels = 50; - var level = 0; + /** + * Show the popup window + * @param {boolean} show Optional. Show or hide the window + */ + Popup.prototype.show = function (show) { + if (show === undefined) { + show = true; + } - // we first cluster the hubs, then we pull in the outliers, repeat - while (numberOfNodes > maxNumberOfNodes && level < maxLevels) { - if (level % 3 == 0) { - this.forceAggregateHubs(true); - this.normalizeClusterLevels(); + if (show) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; + + var top = (this.y - height); + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; } - else { - this.increaseClusterLevel(); // this also includes a cluster normalization + if (top < this.padding) { + top = this.padding; } - numberOfNodes = this.nodeIndices.length; - level += 1; - } + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + if (left < this.padding) { + left = this.padding; + } - // after the clustering we reposition the nodes to reduce the initial chaos - if (level > 0 && reposition == true) { - this.repositionNodes(); + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + } + else { + this.hide(); } - this._updateCalculationNodes(); }; /** - * This function can be called to open up a specific cluster. It is only called by - * It will unpack the cluster back one level. - * - * @param node | Node object: cluster to open. + * Hide the popup window */ - exports.openCluster = function(node) { - var isMovingBeforeClustering = this.moving; - if (node.clusterSize > this.constants.clustering.sectorThreshold && this._nodeInActiveArea(node) && - !(this._sector() == "default" && this.nodeIndices.length == 1)) { - // this loads a new sector, loads the nodes and edges and nodeIndices of it. - this._addSector(node); - var level = 0; + Popup.prototype.hide = function () { + this.frame.style.visibility = "hidden"; + }; + + module.exports = Popup; - // we decluster until we reach a decent number of nodes - while ((this.nodeIndices.length < this.constants.clustering.initialMaxNodes) && (level < 10)) { - this.decreaseClusterLevel(); - level += 1; - } +/***/ }, +/* 50 */ +/***/ function(module, exports, __webpack_require__) { + + var PhysicsMixin = __webpack_require__(51); + var ClusterMixin = __webpack_require__(55); + var SectorsMixin = __webpack_require__(56); + var SelectionMixin = __webpack_require__(57); + var ManipulationMixin = __webpack_require__(58); + var NavigationMixin = __webpack_require__(59); + var HierarchicalLayoutMixin = __webpack_require__(60); + + /** + * Load a mixin into the network object + * + * @param {Object} sourceVariable | this object has to contain functions. + * @private + */ + exports._loadMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = sourceVariable[mixinFunction]; + } } - else { - this._expandClusterNode(node,false,true); + }; - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this._updateCalculationNodes(); - this.updateLabels(); - } - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); + /** + * removes a mixin from the network object. + * + * @param {Object} sourceVariable | this object has to contain functions. + * @private + */ + exports._clearMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = undefined; + } } }; /** - * This calls the updateClustes with default arguments + * Mixin the physics system and initialize the parameters required. + * + * @private */ - exports.updateClustersDefault = function() { - if (this.constants.clustering.enabled == true) { - this.updateClusters(0,false,false); + exports._loadPhysicsSystem = function () { + this._loadMixin(PhysicsMixin); + this._loadSelectedForceSolver(); + if (this.constants.configurePhysics == true) { + this._loadPhysicsConfiguration(); } }; /** - * This function can be called to increase the cluster level. This means that the nodes with only one edge connection will - * be clustered with their connected node. This can be repeated as many times as needed. - * This can be called externally (by a keybind for instance) to reduce the complexity of big datasets. + * Mixin the cluster system and initialize the parameters required. + * + * @private */ - exports.increaseClusterLevel = function() { - this.updateClusters(-1,false,true); + exports._loadClusterSystem = function () { + this.clusterSession = 0; + this.hubThreshold = 5; + this._loadMixin(ClusterMixin); }; /** - * This function can be called to decrease the cluster level. This means that the nodes with only one edge connection will - * be unpacked if they are a cluster. This can be repeated as many times as needed. - * This can be called externally (by a key-bind for instance) to look into clusters without zooming. + * Mixin the sector system and initialize the parameters required + * + * @private */ - exports.decreaseClusterLevel = function() { - this.updateClusters(1,false,true); + exports._loadSectorSystem = function () { + this.sectors = {}; + this.activeSector = ["default"]; + this.sectors["active"] = {}; + this.sectors["active"]["default"] = {"nodes": {}, + "edges": {}, + "nodeIndices": [], + "formationScale": 1.0, + "drawingNode": undefined }; + this.sectors["frozen"] = {}; + this.sectors["support"] = {"nodes": {}, + "edges": {}, + "nodeIndices": [], + "formationScale": 1.0, + "drawingNode": undefined }; + + this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields + + this._loadMixin(SectorsMixin); }; /** - * This is the main clustering function. It clusters and declusters on zoom or forced - * This function clusters on zoom, it can be called with a predefined zoom direction - * If out, check if we can form clusters, if in, check if we can open clusters. - * This function is only called from _zoom() - * - * @param {Number} zoomDirection | -1 / 0 / +1 for zoomOut / determineByZoom / zoomIn - * @param {Boolean} recursive | enabled or disable recursive calling of the opening of clusters - * @param {Boolean} force | enabled or disable forcing - * @param {Boolean} doNotStart | if true do not call start + * Mixin the selection system and initialize the parameters required * + * @private */ - exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; + exports._loadSelectionSystem = function () { + this.selectionObj = {nodes: {}, edges: {}}; - // on zoom out collapse the sector if the scale is at the level the sector was made - if (this.previousScale > this.scale && zoomDirection == 0) { - this._collapseSector(); - } + this._loadMixin(SelectionMixin); + }; - // check if we zoom in or out - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - // forming clusters when forced pulls outliers in. When not forced, the edge length of the - // outer nodes determines if it is being clustered - this._formClusters(force); - } - else if (this.previousScale < this.scale || zoomDirection == 1) { // zoom in - if (force == true) { - // _openClusters checks for each node if the formationScale of the cluster is smaller than - // the current scale and if so, declusters. When forced, all clusters are reduced by one step - this._openClusters(recursive,force); - } - else { - // if a cluster takes up a set percentage of the active window - this._openClustersBySize(); - } - } - this._updateNodeIndexList(); - // if a cluster was NOT formed and the user zoomed out, we try clustering by hubs - if (this.nodeIndices.length == amountOfNodes && (this.previousScale > this.scale || zoomDirection == -1)) { - this._aggregateHubs(force); - this._updateNodeIndexList(); - } + /** + * Mixin the navigationUI (User Interface) system and initialize the parameters required + * + * @private + */ + exports._loadManipulationSystem = function () { + // reset global variables -- these are used by the selection of nodes and edges. + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; - // we now reduce chains. - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - this.handleChains(); - this._updateNodeIndexList(); - } + if (this.constants.dataManipulation.enabled == true) { + // load the manipulator HTML elements. All styling done in css. + if (this.manipulationDiv === undefined) { + this.manipulationDiv = document.createElement('div'); + this.manipulationDiv.className = 'network-manipulationDiv'; + this.manipulationDiv.id = 'network-manipulationDiv'; + if (this.editMode == true) { + this.manipulationDiv.style.display = "block"; + } + else { + this.manipulationDiv.style.display = "none"; + } + this.containerElement.insertBefore(this.manipulationDiv, this.frame); + } - this.previousScale = this.scale; + if (this.editModeDiv === undefined) { + this.editModeDiv = document.createElement('div'); + this.editModeDiv.className = 'network-manipulation-editMode'; + this.editModeDiv.id = 'network-manipulation-editMode'; + if (this.editMode == true) { + this.editModeDiv.style.display = "none"; + } + else { + this.editModeDiv.style.display = "block"; + } + this.containerElement.insertBefore(this.editModeDiv, this.frame); + } - // rest of the update the index list, dynamic edges and labels - this._updateDynamicEdges(); - this.updateLabels(); + if (this.closeDiv === undefined) { + this.closeDiv = document.createElement('div'); + this.closeDiv.className = 'network-manipulation-closeDiv'; + this.closeDiv.id = 'network-manipulation-closeDiv'; + this.closeDiv.style.display = this.manipulationDiv.style.display; + this.containerElement.insertBefore(this.closeDiv, this.frame); + } - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length < amountOfNodes) { // this means a clustering operation has taken place - this.clusterSession += 1; - // if clusters have been made, we normalize the cluster level - this.normalizeClusterLevels(); + // load the manipulation functions + this._loadMixin(ManipulationMixin); + + // create the manipulator toolbar + this._createManipulatorBar(); } + else { + if (this.manipulationDiv !== undefined) { + // removes all the bindings and overloads + this._createManipulatorBar(); + // remove the manipulation divs + this.containerElement.removeChild(this.manipulationDiv); + this.containerElement.removeChild(this.editModeDiv); + this.containerElement.removeChild(this.closeDiv); - if (doNotStart == false || doNotStart === undefined) { - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + // remove the mixin functions + this._clearMixin(ManipulationMixin); } } - - this._updateCalculationNodes(); }; + /** - * This function handles the chains. It is called on every updateClusters(). + * Mixin the navigation (User Interface) system and initialize the parameters required + * + * @private */ - exports.handleChains = function() { - // after clustering we check how many chains there are - var chainPercentage = this._getChainFraction(); - if (chainPercentage > this.constants.clustering.chainThreshold) { - this._reduceAmountOfChains(1 - this.constants.clustering.chainThreshold / chainPercentage) + exports._loadNavigationControls = function () { + this._loadMixin(NavigationMixin); + // the clean function removes the button divs, this is done to remove the bindings. + this._cleanNavigation(); + if (this.constants.navigation.enabled == true) { + this._loadNavigationElements(); } }; + /** - * this functions starts clustering by hubs - * The minimum hub threshold is set globally + * Mixin the hierarchical layout system. * * @private */ - exports._aggregateHubs = function(force) { - this._getHubSize(); - this._formClustersByHub(force,false); + exports._loadHierarchySystem = function () { + this._loadMixin(HierarchicalLayoutMixin); }; +/***/ }, +/* 51 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var RepulsionMixin = __webpack_require__(52); + var HierarchialRepulsionMixin = __webpack_require__(53); + var BarnesHutMixin = __webpack_require__(54); + /** - * This function is fired by keypress. It forces hubs to form. + * Toggling barnes Hut calculation on and off. * + * @private */ - exports.forceAggregateHubs = function(doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; + exports._toggleBarnesHut = function () { + this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; + this._loadSelectedForceSolver(); + this.moving = true; + this.start(); + }; + + + /** + * This loads the node force solver based on the barnes hut or repulsion algorithm + * + * @private + */ + exports._loadSelectedForceSolver = function () { + // this overloads the this._calculateNodeForces + if (this.constants.physics.barnesHut.enabled == true) { + this._clearMixin(RepulsionMixin); + this._clearMixin(HierarchialRepulsionMixin); + + this.constants.physics.centralGravity = this.constants.physics.barnesHut.centralGravity; + this.constants.physics.springLength = this.constants.physics.barnesHut.springLength; + this.constants.physics.springConstant = this.constants.physics.barnesHut.springConstant; + this.constants.physics.damping = this.constants.physics.barnesHut.damping; - this._aggregateHubs(true); + this._loadMixin(BarnesHutMixin); + } + else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._clearMixin(BarnesHutMixin); + this._clearMixin(RepulsionMixin); - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this.updateLabels(); + this.constants.physics.centralGravity = this.constants.physics.hierarchicalRepulsion.centralGravity; + this.constants.physics.springLength = this.constants.physics.hierarchicalRepulsion.springLength; + this.constants.physics.springConstant = this.constants.physics.hierarchicalRepulsion.springConstant; + this.constants.physics.damping = this.constants.physics.hierarchicalRepulsion.damping; - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; + this._loadMixin(HierarchialRepulsionMixin); } + else { + this._clearMixin(BarnesHutMixin); + this._clearMixin(HierarchialRepulsionMixin); + this.barnesHutTree = undefined; - if (doNotStart == false || doNotStart === undefined) { - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); - } + this.constants.physics.centralGravity = this.constants.physics.repulsion.centralGravity; + this.constants.physics.springLength = this.constants.physics.repulsion.springLength; + this.constants.physics.springConstant = this.constants.physics.repulsion.springConstant; + this.constants.physics.damping = this.constants.physics.repulsion.damping; + + this._loadMixin(RepulsionMixin); } }; /** - * If a cluster takes up more than a set percentage of the screen, open the cluster + * Before calculating the forces, we check if we need to cluster to keep up performance and we check + * if there is more than one node. If it is just one node, we dont calculate anything. * * @private */ - exports._openClustersBySize = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.inView() == true) { - if ((node.width*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || - (node.height*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { - this.openCluster(node); - } - } + exports._initializeForceCalculation = function () { + // stop calculation if there is only one node + if (this.nodeIndices.length == 1) { + this.nodes[this.nodeIndices[0]]._setForce(0, 0); + } + else { + // if there are too many nodes on screen, we cluster without repositioning + if (this.nodeIndices.length > this.constants.clustering.clusterThreshold && this.constants.clustering.enabled == true) { + this.clusterToFit(this.constants.clustering.reduceToNodes, false); } + + // we now start the force calculation + this._calculateForces(); } }; /** - * This function loops over all nodes in the nodeIndices list. For each node it checks if it is a cluster and if it - * has to be opened based on the current zoom level. - * + * Calculate the external forces acting on the nodes + * Forces are caused by: edges, repulsing forces between nodes, gravity * @private */ - exports._openClusters = function(recursive,force) { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - this._expandClusterNode(node,recursive,force); - this._updateCalculationNodes(); + exports._calculateForces = function () { + // Gravity is required to keep separated groups from floating off + // the forces are reset to zero in this loop by using _setForce instead + // of _addForce + + this._calculateGravitationalForces(); + this._calculateNodeForces(); + + if (this.constants.physics.springConstant > 0) { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._calculateSpringForcesWithSupport(); + } + else { + if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._calculateHierarchicalSpringForces(); + } + else { + this._calculateSpringForces(); + } + } } }; + /** - * This function checks if a node has to be opened. This is done by checking the zoom level. - * If the node contains child nodes, this function is recursively called on the child nodes as well. - * This recursive behaviour is optional and can be set by the recursive argument. + * Smooth curves are created by adding invisible nodes in the center of the edges. These nodes are also + * handled in the calculateForces function. We then use a quadratic curve with the center node as control. + * This function joins the datanodes and invisible (called support) nodes into one object. + * We do this so we do not contaminate this.nodes with the support nodes. * - * @param {Node} parentNode | to check for cluster and expand - * @param {Boolean} recursive | enabled or disable recursive calling - * @param {Boolean} force | enabled or disable forcing - * @param {Boolean} [openAll] | This will recursively force all nodes in the parent to be released * @private */ - exports._expandClusterNode = function(parentNode, recursive, force, openAll) { - // first check if node is a cluster - if (parentNode.clusterSize > 1) { - // this means that on a double tap event or a zoom event, the cluster fully unpacks if it is smaller than 20 - if (parentNode.clusterSize < this.constants.clustering.sectorThreshold) { - openAll = true; - } - recursive = openAll ? true : recursive; - - // if the last child has been added on a smaller scale than current scale decluster - if (parentNode.formationScale < this.scale || force == true) { - // we will check if any of the contained child nodes should be removed from the cluster - for (var containedNodeId in parentNode.containedNodes) { - if (parentNode.containedNodes.hasOwnProperty(containedNodeId)) { - var childNode = parentNode.containedNodes[containedNodeId]; + exports._updateCalculationNodes = function () { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this.calculationNodes = {}; + this.calculationNodeIndices = []; - // force expand will expand the largest cluster size clusters. Since we cluster from outside in, we assume that - // the largest cluster is the one that comes from outside - if (force == true) { - if (childNode.clusterSession == parentNode.clusterSessions[parentNode.clusterSessions.length-1] - || openAll) { - this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); - } - } - else { - if (this._nodeInActiveArea(parentNode)) { - this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); - } - } + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.calculationNodes[nodeId] = this.nodes[nodeId]; + } + } + var supportNodes = this.sectors['support']['nodes']; + for (var supportNodeId in supportNodes) { + if (supportNodes.hasOwnProperty(supportNodeId)) { + if (this.edges.hasOwnProperty(supportNodes[supportNodeId].parentEdgeId)) { + this.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; + } + else { + supportNodes[supportNodeId]._setForce(0, 0); } } } + + for (var idx in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(idx)) { + this.calculationNodeIndices.push(idx); + } + } + } + else { + this.calculationNodes = this.nodes; + this.calculationNodeIndices = this.nodeIndices; } }; + /** - * ONLY CALLED FROM _expandClusterNode - * - * This function will expel a child_node from a parent_node. This is to de-cluster the node. This function will remove - * the child node from the parent contained_node object and put it back into the global nodes object. - * The same holds for the edge that was connected to the child node. It is moved back into the global edges object. + * this function applies the central gravity effect to keep groups from floating off * - * @param {Node} parentNode | the parent node - * @param {String} containedNodeId | child_node id as it is contained in the containedNodes object of the parent node - * @param {Boolean} recursive | This will also check if the child needs to be expanded. - * With force and recursive both true, the entire cluster is unpacked - * @param {Boolean} force | This will disregard the zoom level and will expel this child from the parent - * @param {Boolean} openAll | This will recursively force all nodes in the parent to be released * @private */ - exports._expelChildFromParent = function(parentNode, containedNodeId, recursive, force, openAll) { - var childNode = parentNode.containedNodes[containedNodeId]; - - // if child node has been added on smaller scale than current, kick out - if (childNode.formationScale < this.scale || force == true) { - // unselect all selected items - this._unselectAll(); - - // put the child node back in the global nodes object - this.nodes[containedNodeId] = childNode; + exports._calculateGravitationalForces = function () { + var dx, dy, distance, node, i; + var nodes = this.calculationNodes; + var gravity = this.constants.physics.centralGravity; + var gravityForce = 0; - // release the contained edges from this childNode back into the global edges - this._releaseContainedEdges(parentNode,childNode); + for (i = 0; i < this.calculationNodeIndices.length; i++) { + node = nodes[this.calculationNodeIndices[i]]; + node.damping = this.constants.physics.damping; // possibly add function to alter damping properties of clusters. + // gravity does not apply when we are in a pocket sector + if (this._sector() == "default" && gravity != 0) { + dx = -node.x; + dy = -node.y; + distance = Math.sqrt(dx * dx + dy * dy); - // reconnect rerouted edges to the childNode - this._connectEdgeBackToChild(parentNode,childNode); + gravityForce = (distance == 0) ? 0 : (gravity / distance); + node.fx = dx * gravityForce; + node.fy = dy * gravityForce; + } + else { + node.fx = 0; + node.fy = 0; + } + } + }; - // validate all edges in dynamicEdges - this._validateEdges(parentNode); - // undo the changes from the clustering operation on the parent node - parentNode.options.mass -= childNode.options.mass; - parentNode.clusterSize -= childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); - parentNode.dynamicEdgesLength = parentNode.dynamicEdges.length; - // place the child node near the parent, not at the exact same location to avoid chaos in the system - childNode.x = parentNode.x + parentNode.growthIndicator * (0.5 - Math.random()); - childNode.y = parentNode.y + parentNode.growthIndicator * (0.5 - Math.random()); - // remove node from the list - delete parentNode.containedNodes[containedNodeId]; + /** + * this function calculates the effects of the springs in the case of unsmooth curves. + * + * @private + */ + exports._calculateSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; - // check if there are other childs with this clusterSession in the parent. - var othersPresent = false; - for (var childNodeId in parentNode.containedNodes) { - if (parentNode.containedNodes.hasOwnProperty(childNodeId)) { - if (parentNode.containedNodes[childNodeId].clusterSession == childNode.clusterSession) { - othersPresent = true; - break; - } - } - } - // if there are no others, remove the cluster session from the list - if (othersPresent == false) { - parentNode.clusterSessions.pop(); - } + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + edgeLength = edge.physics.springLength; + // this implies that the edges between big clusters are longer + edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; - this._repositionBezierNodes(childNode); - // this._repositionBezierNodes(parentNode); + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); - // remove the clusterSession from the child node - childNode.clusterSession = 0; + if (distance == 0) { + distance = 0.01; + } - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - // restart the simulation to reorganise all nodes - this.moving = true; - } + fx = dx * springForce; + fy = dy * springForce; - // check if a further expansion step is possible if recursivity is enabled - if (recursive == true) { - this._expandClusterNode(childNode,recursive,force,openAll); + edge.from.fx += fx; + edge.from.fy += fy; + edge.to.fx -= fx; + edge.to.fy -= fy; + } + } + } } }; + + /** - * position the bezier nodes at the center of the edges + * This function calculates the springforces on the nodes, accounting for the support nodes. * - * @param node * @private */ - exports._repositionBezierNodes = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - node.dynamicEdges[i].positionBezierNode(); + exports._calculateSpringForcesWithSupport = function () { + var edgeLength, edge, edgeId, combinedClusterSize; + var edges = this.edges; + + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + if (edge.via != null) { + var node1 = edge.to; + var node2 = edge.via; + var node3 = edge.from; + + edgeLength = edge.physics.springLength; + + combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; + + // this implies that the edges between big clusters are longer + edgeLength += combinedClusterSize * this.constants.clustering.edgeGrowth; + this._calculateSpringForce(node1, node2, 0.5 * edgeLength); + this._calculateSpringForce(node2, node3, 0.5 * edgeLength); + } + } + } + } } }; /** - * This function checks if any nodes at the end of their trees have edges below a threshold length - * This function is called only from updateClusters() - * forceLevelCollapse ignores the length of the edge and collapses one level - * This means that a node with only one edge will be clustered with its connected node + * This is the code actually performing the calculation for the function above. It is split out to avoid repetition. * + * @param node1 + * @param node2 + * @param edgeLength * @private - * @param {Boolean} force */ - exports._formClusters = function(force) { - if (force == false) { - this._formClustersByZoom(); - } - else { - this._forceClustersByZoom(); + exports._calculateSpringForce = function (node1, node2, edgeLength) { + var dx, dy, fx, fy, springForce, distance; + + dx = (node1.x - node2.x); + dy = (node1.y - node2.y); + distance = Math.sqrt(dx * dx + dy * dy); + + if (distance == 0) { + distance = 0.01; } + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + + fx = dx * springForce; + fy = dy * springForce; + + node1.fx += fx; + node1.fy += fy; + node2.fx -= fx; + node2.fy -= fy; }; /** - * This function handles the clustering by zooming out, this is based on a minimum edge distance - * + * Load the HTML for the physics config and bind it * @private */ - exports._formClustersByZoom = function() { - var dx,dy,length, - minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; + exports._loadPhysicsConfiguration = function () { + if (this.physicsConfiguration === undefined) { + this.backupConstants = {}; + util.deepExtend(this.backupConstants,this.constants); - // check if any edges are shorter than minLength and start the clustering - // the clustering favours the node with the larger mass - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - var edge = this.edges[edgeId]; - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); + var hierarchicalLayoutDirections = ["LR", "RL", "UD", "DU"]; + this.physicsConfiguration = document.createElement('div'); + this.physicsConfiguration.className = "PhysicsConfiguration"; + this.physicsConfiguration.innerHTML = '' + + '' + + '' + + '' + + '' + + '' + + '' + + '
Simulation Mode:
Barnes HutRepulsionHierarchical
' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '
Options:
' + this.containerElement.parentElement.insertBefore(this.physicsConfiguration, this.containerElement); + this.optionsDiv = document.createElement("div"); + this.optionsDiv.style.fontSize = "14px"; + this.optionsDiv.style.fontFamily = "verdana"; + this.containerElement.parentElement.insertBefore(this.optionsDiv, this.containerElement); + + var rangeElement; + rangeElement = document.getElementById('graph_BH_gc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_gc', -1, "physics_barnesHut_gravitationalConstant"); + rangeElement = document.getElementById('graph_BH_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_BH_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_BH_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_BH_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_damp', 1, "physics_damping"); + + rangeElement = document.getElementById('graph_R_nd'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_nd', 1, "physics_repulsion_nodeDistance"); + rangeElement = document.getElementById('graph_R_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_R_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_R_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_R_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_damp', 1, "physics_damping"); + + rangeElement = document.getElementById('graph_H_nd'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); + rangeElement = document.getElementById('graph_H_cg'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_cg', 1, "physics_centralGravity"); + rangeElement = document.getElementById('graph_H_sc'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sc', 1, "physics_springConstant"); + rangeElement = document.getElementById('graph_H_sl'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sl', 1, "physics_springLength"); + rangeElement = document.getElementById('graph_H_damp'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_damp', 1, "physics_damping"); + rangeElement = document.getElementById('graph_H_direction'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_direction', hierarchicalLayoutDirections, "hierarchicalLayout_direction"); + rangeElement = document.getElementById('graph_H_levsep'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_levsep', 1, "hierarchicalLayout_levelSeparation"); + rangeElement = document.getElementById('graph_H_nspac'); + rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nspac', 1, "hierarchicalLayout_nodeSpacing"); + + var radioButton1 = document.getElementById("graph_physicsMethod1"); + var radioButton2 = document.getElementById("graph_physicsMethod2"); + var radioButton3 = document.getElementById("graph_physicsMethod3"); + radioButton2.checked = true; + if (this.constants.physics.barnesHut.enabled) { + radioButton1.checked = true; + } + if (this.constants.hierarchicalLayout.enabled) { + radioButton3.checked = true; + } + + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + var graph_repositionNodes = document.getElementById("graph_repositionNodes"); + var graph_generateOptions = document.getElementById("graph_generateOptions"); + graph_toggleSmooth.onclick = graphToggleSmoothCurves.bind(this); + graph_repositionNodes.onclick = graphRepositionNodes.bind(this); + graph_generateOptions.onclick = graphGenerateOptions.bind(this); + if (this.constants.smoothCurves == true && this.constants.dynamicSmoothCurves == false) { + graph_toggleSmooth.style.background = "#A4FF56"; + } + else { + graph_toggleSmooth.style.background = "#FF8532"; + } - if (length < minLength) { - // first check which node is larger - var parentNode = edge.from; - var childNode = edge.to; - if (edge.to.options.mass > edge.from.options.mass) { - parentNode = edge.to; - childNode = edge.from; - } - if (childNode.dynamicEdgesLength == 1) { - this._addToCluster(parentNode,childNode,false); - } - else if (parentNode.dynamicEdgesLength == 1) { - this._addToCluster(childNode,parentNode,false); - } - } - } - } - } + switchConfigurations.apply(this); + + radioButton1.onchange = switchConfigurations.bind(this); + radioButton2.onchange = switchConfigurations.bind(this); + radioButton3.onchange = switchConfigurations.bind(this); } }; /** - * This function forces the network to cluster all nodes with only one connecting edge to their - * connected node. + * This overwrites the this.constants. * + * @param constantsVariableName + * @param value * @private */ - exports._forceClustersByZoom = function() { - for (var nodeId in this.nodes) { - // another node could have absorbed this child. - if (this.nodes.hasOwnProperty(nodeId)) { - var childNode = this.nodes[nodeId]; - - // the edges can be swallowed by another decrease - if (childNode.dynamicEdgesLength == 1 && childNode.dynamicEdges.length != 0) { - var edge = childNode.dynamicEdges[0]; - var parentNode = (edge.toId == childNode.id) ? this.nodes[edge.fromId] : this.nodes[edge.toId]; - - // group to the largest node - if (childNode.id != parentNode.id) { - if (parentNode.options.mass > childNode.options.mass) { - this._addToCluster(parentNode,childNode,true); - } - else { - this._addToCluster(childNode,parentNode,true); - } - } - } - } + exports._overWriteGraphConstants = function (constantsVariableName, value) { + var nameArray = constantsVariableName.split("_"); + if (nameArray.length == 1) { + this.constants[nameArray[0]] = value; + } + else if (nameArray.length == 2) { + this.constants[nameArray[0]][nameArray[1]] = value; + } + else if (nameArray.length == 3) { + this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; } }; /** - * To keep the nodes of roughly equal size we normalize the cluster levels. - * This function clusters a node to its smallest connected neighbour. - * - * @param node - * @private + * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. */ - exports._clusterToSmallestNeighbour = function(node) { - var smallestNeighbour = -1; - var smallestNeighbourNode = null; - for (var i = 0; i < node.dynamicEdges.length; i++) { - if (node.dynamicEdges[i] !== undefined) { - var neighbour = null; - if (node.dynamicEdges[i].fromId != node.id) { - neighbour = node.dynamicEdges[i].from; - } - else if (node.dynamicEdges[i].toId != node.id) { - neighbour = node.dynamicEdges[i].to; - } - - - if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { - smallestNeighbour = neighbour.clusterSessions.length; - smallestNeighbourNode = neighbour; - } - } - } - - if (neighbour != null && this.nodes[neighbour.id] !== undefined) { - this._addToCluster(neighbour, node, true); - } - }; + function graphToggleSmoothCurves () { + this.constants.smoothCurves.enabled = !this.constants.smoothCurves.enabled; + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} + else {graph_toggleSmooth.style.background = "#FF8532";} + this._configureSmoothCurves(false); + } /** - * This function forms clusters from hubs, it loops over all nodes + * this function is used to scramble the nodes * - * @param {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges - * @private */ - exports._formClustersByHub = function(force, onlyEqual) { - // we loop over all nodes in the list - for (var nodeId in this.nodes) { - // we check if it is still available since it can be used by the clustering in this loop - if (this.nodes.hasOwnProperty(nodeId)) { - this._formClusterFromHub(this.nodes[nodeId],force,onlyEqual); + function graphRepositionNodes () { + for (var nodeId in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(nodeId)) { + this.calculationNodes[nodeId].vx = 0; this.calculationNodes[nodeId].vy = 0; + this.calculationNodes[nodeId].fx = 0; this.calculationNodes[nodeId].fy = 0; } } - }; + if (this.constants.hierarchicalLayout.enabled == true) { + this._setupHierarchicalLayout(); + showValueOfRange.call(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); + showValueOfRange.call(this, 'graph_H_cg', 1, "physics_centralGravity"); + showValueOfRange.call(this, 'graph_H_sc', 1, "physics_springConstant"); + showValueOfRange.call(this, 'graph_H_sl', 1, "physics_springLength"); + showValueOfRange.call(this, 'graph_H_damp', 1, "physics_damping"); + } + else { + this.repositionNodes(); + } + this.moving = true; + this.start(); + } /** - * This function forms a cluster from a specific preselected hub node - * - * @param {Node} hubNode | the node we will cluster as a hub - * @param {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges - * @param {Number} [absorptionSizeOffset] | - * @private + * this is used to generate an options file from the playing with physics system. */ - exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { - if (absorptionSizeOffset === undefined) { - absorptionSizeOffset = 0; + function graphGenerateOptions () { + var options = "No options are required, default values used."; + var optionsSpecific = []; + var radioButton1 = document.getElementById("graph_physicsMethod1"); + var radioButton2 = document.getElementById("graph_physicsMethod2"); + if (radioButton1.checked == true) { + if (this.constants.physics.barnesHut.gravitationalConstant != this.backupConstants.physics.barnesHut.gravitationalConstant) {optionsSpecific.push("gravitationalConstant: " + this.constants.physics.barnesHut.gravitationalConstant);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.barnesHut.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.barnesHut.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.barnesHut.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.barnesHut.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options = "var options = {"; + options += "physics: {barnesHut: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " + } + } + options += '}}' + } + if (this.constants.smoothCurves.enabled != this.backupConstants.smoothCurves.enabled) { + if (optionsSpecific.length == 0) {options = "var options = {";} + else {options += ", "} + options += "smoothCurves: " + this.constants.smoothCurves.enabled; + } + if (options != "No options are required, default values used.") { + options += '};' + } } - // we decide if the node is a hub - if ((hubNode.dynamicEdgesLength >= this.hubThreshold && onlyEqual == false) || - (hubNode.dynamicEdgesLength == this.hubThreshold && onlyEqual == true)) { - // initialize variables - var dx,dy,length; - var minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - var allowCluster = false; - - // we create a list of edges because the dynamicEdges change over the course of this loop - var edgesIdarray = []; - var amountOfInitialEdges = hubNode.dynamicEdges.length; - for (var j = 0; j < amountOfInitialEdges; j++) { - edgesIdarray.push(hubNode.dynamicEdges[j].id); + else if (radioButton2.checked == true) { + options = "var options = {"; + options += "physics: {barnesHut: {enabled: false}"; + if (this.constants.physics.repulsion.nodeDistance != this.backupConstants.physics.repulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.repulsion.nodeDistance);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.repulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.repulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.repulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.repulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options += ", repulsion: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " + } + } + options += '}}' } - - // if the hub clustering is not forces, we check if one of the edges connected - // to a cluster is small enough based on the constants.clustering.clusterEdgeThreshold - if (force == false) { - allowCluster = false; - for (j = 0; j < amountOfInitialEdges; j++) { - var edge = this.edges[edgesIdarray[j]]; - if (edge !== undefined) { - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); - - if (length < minLength) { - allowCluster = true; - break; - } - } - } + if (optionsSpecific.length == 0) {options += "}"} + if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { + options += ", smoothCurves: " + this.constants.smoothCurves; + } + options += '};' + } + else { + options = "var options = {"; + if (this.constants.physics.hierarchicalRepulsion.nodeDistance != this.backupConstants.physics.hierarchicalRepulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.hierarchicalRepulsion.nodeDistance);} + if (this.constants.physics.centralGravity != this.backupConstants.physics.hierarchicalRepulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} + if (this.constants.physics.springLength != this.backupConstants.physics.hierarchicalRepulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} + if (this.constants.physics.springConstant != this.backupConstants.physics.hierarchicalRepulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} + if (this.constants.physics.damping != this.backupConstants.physics.hierarchicalRepulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} + if (optionsSpecific.length != 0) { + options += "physics: {hierarchicalRepulsion: {"; + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", "; + } + } + options += '}},'; + } + options += 'hierarchicalLayout: {'; + optionsSpecific = []; + if (this.constants.hierarchicalLayout.direction != this.backupConstants.hierarchicalLayout.direction) {optionsSpecific.push("direction: " + this.constants.hierarchicalLayout.direction);} + if (Math.abs(this.constants.hierarchicalLayout.levelSeparation) != this.backupConstants.hierarchicalLayout.levelSeparation) {optionsSpecific.push("levelSeparation: " + this.constants.hierarchicalLayout.levelSeparation);} + if (this.constants.hierarchicalLayout.nodeSpacing != this.backupConstants.hierarchicalLayout.nodeSpacing) {optionsSpecific.push("nodeSpacing: " + this.constants.hierarchicalLayout.nodeSpacing);} + if (optionsSpecific.length != 0) { + for (var i = 0; i < optionsSpecific.length; i++) { + options += optionsSpecific[i]; + if (i < optionsSpecific.length - 1) { + options += ", " } } + options += '}' } - - // start the clustering if allowed - if ((!force && allowCluster) || force) { - // we loop over all edges INITIALLY connected to this hub - for (j = 0; j < amountOfInitialEdges; j++) { - edge = this.edges[edgesIdarray[j]]; - // the edge can be clustered by this function in a previous loop - if (edge !== undefined) { - var childNode = this.nodes[(edge.fromId == hubNode.id) ? edge.toId : edge.fromId]; - // we do not want hubs to merge with other hubs nor do we want to cluster itself. - if ((childNode.dynamicEdges.length <= (this.hubThreshold + absorptionSizeOffset)) && - (childNode.id != hubNode.id)) { - this._addToCluster(hubNode,childNode,force); - } - } - } + else { + options += "enabled:true}"; } + options += '};' } - }; + this.optionsDiv.innerHTML = options; + } /** - * This function adds the child node to the parent node, creating a cluster if it is not already. + * this is used to switch between barnesHut, repulsion and hierarchical. * - * @param {Node} parentNode | this is the node that will house the child node - * @param {Node} childNode | this node will be deleted from the global this.nodes and stored in the parent node - * @param {Boolean} force | true will only update the remainingEdges at the very end of the clustering, ensuring single level collapse - * @private */ - exports._addToCluster = function(parentNode, childNode, force) { - // join child node in the parent node - parentNode.containedNodes[childNode.id] = childNode; - - // manage all the edges connected to the child and parent nodes - for (var i = 0; i < childNode.dynamicEdges.length; i++) { - var edge = childNode.dynamicEdges[i]; - if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode - this._addToContainedEdges(parentNode,childNode,edge); - } - else { - this._connectEdgeToCluster(parentNode,childNode,edge); + function switchConfigurations () { + var ids = ["graph_BH_table", "graph_R_table", "graph_H_table"]; + var radioButton = document.querySelector('input[name="graph_physicsMethod"]:checked').value; + var tableId = "graph_" + radioButton + "_table"; + var table = document.getElementById(tableId); + table.style.display = "block"; + for (var i = 0; i < ids.length; i++) { + if (ids[i] != tableId) { + table = document.getElementById(ids[i]); + table.style.display = "none"; } } - // a contained node has no dynamic edges. - childNode.dynamicEdges = []; - - // remove circular edges from clusters - this._containCircularEdgesFromNode(parentNode,childNode); - - - // remove the childNode from the global nodes object - delete this.nodes[childNode.id]; - - // update the properties of the child and parent - var massBefore = parentNode.options.mass; - childNode.clusterSession = this.clusterSession; - parentNode.options.mass += childNode.options.mass; - parentNode.clusterSize += childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); - - // keep track of the clustersessions so we can open the cluster up as it has been formed. - if (parentNode.clusterSessions[parentNode.clusterSessions.length - 1] != this.clusterSession) { - parentNode.clusterSessions.push(this.clusterSession); + this._restoreNodes(); + if (radioButton == "R") { + this.constants.hierarchicalLayout.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = false; + this.constants.physics.barnesHut.enabled = false; } - - // forced clusters only open from screen size and double tap - if (force == true) { - // parentNode.formationScale = Math.pow(1 - (1.0/11.0),this.clusterSession+3); - parentNode.formationScale = 0; + else if (radioButton == "H") { + if (this.constants.hierarchicalLayout.enabled == false) { + this.constants.hierarchicalLayout.enabled = true; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this.constants.physics.barnesHut.enabled = false; + this.constants.smoothCurves.enabled = false; + this._setupHierarchicalLayout(); + } } else { - parentNode.formationScale = this.scale; // The latest child has been added on this scale + this.constants.hierarchicalLayout.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = false; + this.constants.physics.barnesHut.enabled = true; } - - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); - - // set the pop-out scale for the childnode - parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; - - // nullify the movement velocity of the child, this is to avoid hectic behaviour - childNode.clearVelocity(); - - // the mass has altered, preservation of energy dictates the velocity to be updated - parentNode.updateVelocity(massBefore); - - // restart the simulation to reorganise all nodes + this._loadSelectedForceSolver(); + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} + else {graph_toggleSmooth.style.background = "#FF8532";} this.moving = true; - }; + this.start(); + } /** - * This function will apply the changes made to the remainingEdges during the formation of the clusters. - * This is a seperate function to allow for level-wise collapsing of the node barnesHutTree. - * It has to be called if a level is collapsed. It is called by _formClusters(). - * @private + * this generates the ranges depending on the iniital values. + * + * @param id + * @param map + * @param constantsVariableName */ - exports._updateDynamicEdges = function() { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - node.dynamicEdgesLength = node.dynamicEdges.length; + function showValueOfRange (id,map,constantsVariableName) { + var valueId = id + "_value"; + var rangeValue = document.getElementById(id).value; - // this corrects for multiple edges pointing at the same other node - var correction = 0; - if (node.dynamicEdgesLength > 1) { - for (var j = 0; j < node.dynamicEdgesLength - 1; j++) { - var edgeToId = node.dynamicEdges[j].toId; - var edgeFromId = node.dynamicEdges[j].fromId; - for (var k = j+1; k < node.dynamicEdgesLength; k++) { - if ((node.dynamicEdges[k].toId == edgeToId && node.dynamicEdges[k].fromId == edgeFromId) || - (node.dynamicEdges[k].fromId == edgeToId && node.dynamicEdges[k].toId == edgeFromId)) { - correction += 1; - } - } - } - } - node.dynamicEdgesLength -= correction; + if (map instanceof Array) { + document.getElementById(valueId).value = map[parseInt(rangeValue)]; + this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); + } + else { + document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); + this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); } - }; - - /** - * This adds an edge from the childNode to the contained edges of the parent node - * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object - * @private - */ - exports._addToContainedEdges = function(parentNode, childNode, edge) { - // create an array object if it does not yet exist for this childNode - if (!(parentNode.containedEdges.hasOwnProperty(childNode.id))) { - parentNode.containedEdges[childNode.id] = [] + if (constantsVariableName == "hierarchicalLayout_direction" || + constantsVariableName == "hierarchicalLayout_levelSeparation" || + constantsVariableName == "hierarchicalLayout_nodeSpacing") { + this._setupHierarchicalLayout(); } - // add this edge to the list - parentNode.containedEdges[childNode.id].push(edge); + this.moving = true; + this.start(); + } - // remove the edge from the global edges object - delete this.edges[edge.id]; - // remove the edge from the parent object - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - if (parentNode.dynamicEdges[i].id == edge.id) { - parentNode.dynamicEdges.splice(i,1); - break; - } - } - }; +/***/ }, +/* 52 */ +/***/ function(module, exports, __webpack_require__) { /** - * This function connects an edge that was connected to a child node to the parent node. - * It keeps track of which nodes it has been connected to with the originalId array. + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. * - * @param {Node} parentNode | Node object - * @param {Node} childNode | Node object - * @param {Edge} edge | Edge object * @private */ - exports._connectEdgeToCluster = function(parentNode, childNode, edge) { - // handle circular edges - if (edge.toId == edge.fromId) { - this._addToContainedEdges(parentNode, childNode, edge); - } - else { - if (edge.toId == childNode.id) { // edge connected to other node on the "to" side - edge.originalToId.push(childNode.id); - edge.to = parentNode; - edge.toId = parentNode.id; - } - else { // edge connected to other node with the "from" side + exports._calculateNodeForces = function () { + var dx, dy, angle, distance, fx, fy, combinedClusterSize, + repulsingForce, node1, node2, i, j; + + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + + // approximation constants + var a_base = -2 / 3; + var b = 4 / 3; + + // repulsing forces between nodes + var nodeDistance = this.constants.physics.repulsion.nodeDistance; + var minimumDistance = nodeDistance; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j + for (i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + combinedClusterSize = node1.clusterSize + node2.clusterSize - 2; + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + minimumDistance = (combinedClusterSize == 0) ? nodeDistance : (nodeDistance * (1 + combinedClusterSize * this.constants.clustering.distanceAmplification)); + var a = a_base / minimumDistance; + if (distance < 2 * minimumDistance) { + if (distance < 0.5 * minimumDistance) { + repulsingForce = 1.0; + } + else { + repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / minimumDistance - 1) * steepness)) + } + + // amplify the repulsion for clusters. + repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; + repulsingForce = repulsingForce / distance; + + fx = dx * repulsingForce; + fy = dy * repulsingForce; - edge.originalFromId.push(childNode.id); - edge.from = parentNode; - edge.fromId = parentNode.id; + node1.fx -= fx; + node1.fy -= fy; + node2.fx += fx; + node2.fy += fy; + } } - - this._addToReroutedEdges(parentNode,childNode,edge); } }; +/***/ }, +/* 53 */ +/***/ function(module, exports, __webpack_require__) { + /** - * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain - * these edges inside of the cluster. + * Calculate the forces the nodes apply on eachother based on a repulsion field. + * This field is linearly approximated. * - * @param parentNode - * @param childNode * @private */ - exports._containCircularEdgesFromNode = function(parentNode, childNode) { - // manage all the edges connected to the child and parent nodes - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - var edge = parentNode.dynamicEdges[i]; - // handle circular edges - if (edge.toId == edge.fromId) { - this._addToContainedEdges(parentNode, childNode, edge); + exports._calculateNodeForces = function () { + var dx, dy, distance, fx, fy, + repulsingForce, node1, node2, i, j; + + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + + // repulsing forces between nodes + var nodeDistance = this.constants.physics.hierarchicalRepulsion.nodeDistance; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j + for (i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + + // nodes only affect nodes on their level + if (node1.level == node2.level) { + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + + var steepness = 0.05; + if (distance < nodeDistance) { + repulsingForce = -Math.pow(steepness*distance,2) + Math.pow(steepness*nodeDistance,2); + } + else { + repulsingForce = 0; + } + // normalize force with + if (distance == 0) { + distance = 0.01; + } + else { + repulsingForce = repulsingForce / distance; + } + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + node1.fx -= fx; + node1.fy -= fy; + node2.fx += fx; + node2.fy += fy; + } } } }; /** - * This adds an edge from the childNode to the rerouted edges of the parent node + * this function calculates the effects of the springs in the case of unsmooth curves. * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object * @private */ - exports._addToReroutedEdges = function(parentNode, childNode, edge) { - // create an array object if it does not yet exist for this childNode - // we store the edge in the rerouted edges so we can restore it when the cluster pops open - if (!(parentNode.reroutedEdges.hasOwnProperty(childNode.id))) { - parentNode.reroutedEdges[childNode.id] = []; + exports._calculateHierarchicalSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; + + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + + + for (var i = 0; i < nodeIndices.length; i++) { + var node1 = nodes[nodeIndices[i]]; + node1.springFx = 0; + node1.springFy = 0; } - parentNode.reroutedEdges[childNode.id].push(edge); - // this edge becomes part of the dynamicEdges of the cluster node - parentNode.dynamicEdges.push(edge); - }; + // forces caused by the edges, modelled as springs + for (edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + if (edge.connected) { + // only calculate forces if nodes are in the same sector + if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { + edgeLength = edge.physics.springLength; + // this implies that the edges between big clusters are longer + edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); - /** - * This function connects an edge that was connected to a cluster node back to the child node. - * - * @param parentNode | Node object - * @param childNode | Node object - * @private - */ - exports._connectEdgeBackToChild = function(parentNode, childNode) { - if (parentNode.reroutedEdges.hasOwnProperty(childNode.id)) { - for (var i = 0; i < parentNode.reroutedEdges[childNode.id].length; i++) { - var edge = parentNode.reroutedEdges[childNode.id][i]; - if (edge.originalFromId[edge.originalFromId.length-1] == childNode.id) { - edge.originalFromId.pop(); - edge.fromId = childNode.id; - edge.from = childNode; - } - else { - edge.originalToId.pop(); - edge.toId = childNode.id; - edge.to = childNode; - } + if (distance == 0) { + distance = 0.01; + } - // append this edge to the list of edges connecting to the childnode - childNode.dynamicEdges.push(edge); + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - // remove the edge from the parent object - for (var j = 0; j < parentNode.dynamicEdges.length; j++) { - if (parentNode.dynamicEdges[j].id == edge.id) { - parentNode.dynamicEdges.splice(j,1); - break; + fx = dx * springForce; + fy = dy * springForce; + + + + if (edge.to.level != edge.from.level) { + edge.to.springFx -= fx; + edge.to.springFy -= fy; + edge.from.springFx += fx; + edge.from.springFy += fy; + } + else { + var factor = 0.5; + edge.to.fx -= factor*fx; + edge.to.fy -= factor*fy; + edge.from.fx += factor*fx; + edge.from.fy += factor*fy; + } } } } - // remove the entry from the rerouted edges - delete parentNode.reroutedEdges[childNode.id]; } - }; + // normalize spring forces + var springForce = 1; + var springFx, springFy; + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + springFx = Math.min(springForce,Math.max(-springForce,node.springFx)); + springFy = Math.min(springForce,Math.max(-springForce,node.springFy)); - /** - * When loops are clustered, an edge can be both in the rerouted array and the contained array. - * This function is called last to verify that all edges in dynamicEdges are in fact connected to the - * parentNode - * - * @param parentNode | Node object - * @private - */ - exports._validateEdges = function(parentNode) { - for (var i = 0; i < parentNode.dynamicEdges.length; i++) { - var edge = parentNode.dynamicEdges[i]; - if (parentNode.id != edge.toId && parentNode.id != edge.fromId) { - parentNode.dynamicEdges.splice(i,1); - } + node.fx += springFx; + node.fy += springFy; + } + + // retain energy balance + var totalFx = 0; + var totalFy = 0; + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + totalFx += node.fx; + totalFy += node.fy; + } + var correctionFx = totalFx / nodeIndices.length; + var correctionFy = totalFy / nodeIndices.length; + + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + node.fx -= correctionFx; + node.fy -= correctionFy; } + }; +/***/ }, +/* 54 */ +/***/ function(module, exports, __webpack_require__) { /** - * This function released the contained edges back into the global domain and puts them back into the - * dynamic edges of both parent and child. + * This function calculates the forces the nodes apply on eachother based on a gravitational model. + * The Barnes Hut method is used to speed up this N-body simulation. * - * @param {Node} parentNode | - * @param {Node} childNode | * @private */ - exports._releaseContainedEdges = function(parentNode, childNode) { - for (var i = 0; i < parentNode.containedEdges[childNode.id].length; i++) { - var edge = parentNode.containedEdges[childNode.id][i]; + exports._calculateNodeForces = function() { + if (this.constants.physics.barnesHut.gravitationalConstant != 0) { + var node; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + var nodeCount = nodeIndices.length; - // put the edge back in the global edges object - this.edges[edge.id] = edge; + this._formBarnesHutTree(nodes,nodeIndices); - // put the edge back in the dynamic edges of the child and parent - childNode.dynamicEdges.push(edge); - parentNode.dynamicEdges.push(edge); - } - // remove the entry from the contained edges - delete parentNode.containedEdges[childNode.id]; + var barnesHutTree = this.barnesHutTree; + // place the nodes one by one recursively + for (var i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + // starting with root is irrelevant, it never passes the BarnesHut condition + this._getForceContribution(barnesHutTree.root.children.NW,node); + this._getForceContribution(barnesHutTree.root.children.NE,node); + this._getForceContribution(barnesHutTree.root.children.SW,node); + this._getForceContribution(barnesHutTree.root.children.SE,node); + } + } + } }; - - - // ------------------- UTILITY FUNCTIONS ---------------------------- // - - /** - * This updates the node labels for all nodes (for debugging purposes) + * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. + * If a region contains a single node, we check if it is not itself, then we apply the force. + * + * @param parentBranch + * @param node + * @private */ - exports.updateLabels = function() { - var nodeId; - // update node labels - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.clusterSize > 1) { - node.label = "[".concat(String(node.clusterSize),"]"); + exports._getForceContribution = function(parentBranch,node) { + // we get no force contribution from an empty region + if (parentBranch.childrenCount > 0) { + var dx,dy,distance; + + // get the distance from the center of mass to the node. + dx = parentBranch.centerOfMass.x - node.x; + dy = parentBranch.centerOfMass.y - node.y; + distance = Math.sqrt(dx * dx + dy * dy); + + // BarnesHut condition + // original condition : s/d < theta = passed === d/s > 1/theta = passed + // calcSize = 1/s --> d * 1/s > 1/theta = passed + if (distance * parentBranch.calcSize > this.constants.physics.barnesHut.theta) { + // duplicate code to reduce function calls to speed up program + if (distance == 0) { + distance = 0.1*Math.random(); + dx = distance; } + var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + node.fx += fx; + node.fy += fy; } - } - - // update node labels - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.clusterSize == 1) { - if (node.originalLabel !== undefined) { - node.label = node.originalLabel; - } - else { - node.label = String(node.id); + else { + // Did not pass the condition, go into children if available + if (parentBranch.childrenCount == 4) { + this._getForceContribution(parentBranch.children.NW,node); + this._getForceContribution(parentBranch.children.NE,node); + this._getForceContribution(parentBranch.children.SW,node); + this._getForceContribution(parentBranch.children.SE,node); + } + else { // parentBranch must have only one node, if it was empty we wouldnt be here + if (parentBranch.children.data.id != node.id) { // if it is not self + // duplicate code to reduce function calls to speed up program + if (distance == 0) { + distance = 0.5*Math.random(); + dx = distance; + } + var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + node.fx += fx; + node.fy += fy; } } } } - - // /* Debug Override */ - // for (nodeId in this.nodes) { - // if (this.nodes.hasOwnProperty(nodeId)) { - // node = this.nodes[nodeId]; - // node.label = String(node.level); - // } - // } - }; - /** - * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes - * if the rest of the nodes are already a few cluster levels in. - * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not - * clustered enough to the clusterToSmallestNeighbours function. + * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * + * @param nodes + * @param nodeIndices + * @private */ - exports.normalizeClusterLevels = function() { - var maxLevel = 0; - var minLevel = 1e9; - var clusterLevel = 0; - var nodeId; + exports._formBarnesHutTree = function(nodes,nodeIndices) { + var node; + var nodeCount = nodeIndices.length; - // we loop over all nodes in the list - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - clusterLevel = this.nodes[nodeId].clusterSessions.length; - if (maxLevel < clusterLevel) {maxLevel = clusterLevel;} - if (minLevel > clusterLevel) {minLevel = clusterLevel;} + var minX = Number.MAX_VALUE, + minY = Number.MAX_VALUE, + maxX =-Number.MAX_VALUE, + maxY =-Number.MAX_VALUE; + + // get the range of the nodes + for (var i = 0; i < nodeCount; i++) { + var x = nodes[nodeIndices[i]].x; + var y = nodes[nodeIndices[i]].y; + if (nodes[nodeIndices[i]].options.mass > 0) { + if (x < minX) { minX = x; } + if (x > maxX) { maxX = x; } + if (y < minY) { minY = y; } + if (y > maxY) { maxY = y; } } } + // make the range a square + var sizeDiff = Math.abs(maxX - minX) - Math.abs(maxY - minY); // difference between X and Y + if (sizeDiff > 0) {minY -= 0.5 * sizeDiff; maxY += 0.5 * sizeDiff;} // xSize > ySize + else {minX += 0.5 * sizeDiff; maxX -= 0.5 * sizeDiff;} // xSize < ySize - if (maxLevel - minLevel > this.constants.clustering.clusterLevelDifference) { - var amountOfNodes = this.nodeIndices.length; - var targetLevel = maxLevel - this.constants.clustering.clusterLevelDifference; - // we loop over all nodes in the list - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].clusterSessions.length < targetLevel) { - this._clusterToSmallestNeighbour(this.nodes[nodeId]); - } - } + + var minimumTreeSize = 1e-5; + var rootSize = Math.max(minimumTreeSize,Math.abs(maxX - minX)); + var halfRootSize = 0.5 * rootSize; + var centerX = 0.5 * (minX + maxX), centerY = 0.5 * (minY + maxY); + + // construct the barnesHutTree + var barnesHutTree = { + root:{ + centerOfMass: {x:0, y:0}, + mass:0, + range: { + minX: centerX-halfRootSize,maxX:centerX+halfRootSize, + minY: centerY-halfRootSize,maxY:centerY+halfRootSize + }, + size: rootSize, + calcSize: 1 / rootSize, + children: { data:null}, + maxWidth: 0, + level: 0, + childrenCount: 4 } - this._updateNodeIndexList(); - this._updateDynamicEdges(); - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; + }; + this._splitBranch(barnesHutTree.root); + + // place the nodes one by one recursively + for (i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + this._placeInTree(barnesHutTree.root,node); } } - }; + // make global + this.barnesHutTree = barnesHutTree + }; /** - * This function determines if the cluster we want to decluster is in the active area - * this means around the zoom center + * this updates the mass of a branch. this is increased by adding a node. * - * @param {Node} node - * @returns {boolean} + * @param parentBranch + * @param node * @private */ - exports._nodeInActiveArea = function(node) { - return ( - Math.abs(node.x - this.areaCenter.x) <= this.constants.clustering.activeAreaBoxSize/this.scale - && - Math.abs(node.y - this.areaCenter.y) <= this.constants.clustering.activeAreaBoxSize/this.scale - ) - }; + exports._updateBranchMass = function(parentBranch, node) { + var totalMass = parentBranch.mass + node.options.mass; + var totalMassInv = 1/totalMass; + parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; + parentBranch.centerOfMass.x *= totalMassInv; + + parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; + parentBranch.centerOfMass.y *= totalMassInv; + + parentBranch.mass = totalMass; + var biggestSize = Math.max(Math.max(node.height,node.radius),node.width); + parentBranch.maxWidth = (parentBranch.maxWidth < biggestSize) ? biggestSize : parentBranch.maxWidth; - /** - * This is an adaptation of the original repositioning function. This is called if the system is clustered initially - * It puts large clusters away from the center and randomizes the order. - * - */ - exports.repositionNodes = function() { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - if ((node.xFixed == false || node.yFixed == false)) { - var radius = 10 * 0.1*this.nodeIndices.length * Math.min(100,node.options.mass); - var angle = 2 * Math.PI * Math.random(); - if (node.xFixed == false) {node.x = radius * Math.cos(angle);} - if (node.yFixed == false) {node.y = radius * Math.sin(angle);} - this._repositionBezierNodes(node); - } - } }; /** - * We determine how many connections denote an important hub. - * We take the mean + 2*std as the important hub size. (Assuming a normal distribution of data, ~2.2%) + * determine in which branch the node will be placed. * + * @param parentBranch + * @param node + * @param skipMassUpdate * @private */ - exports._getHubSize = function() { - var average = 0; - var averageSquared = 0; - var hubCounter = 0; - var largestHub = 0; - - for (var i = 0; i < this.nodeIndices.length; i++) { + exports._placeInTree = function(parentBranch,node,skipMassUpdate) { + if (skipMassUpdate != true || skipMassUpdate === undefined) { + // update the mass of the branch. + this._updateBranchMass(parentBranch,node); + } - var node = this.nodes[this.nodeIndices[i]]; - if (node.dynamicEdgesLength > largestHub) { - largestHub = node.dynamicEdgesLength; + if (parentBranch.children.NW.range.maxX > node.x) { // in NW or SW + if (parentBranch.children.NW.range.maxY > node.y) { // in NW + this._placeInRegion(parentBranch,node,"NW"); + } + else { // in SW + this._placeInRegion(parentBranch,node,"SW"); } - average += node.dynamicEdgesLength; - averageSquared += Math.pow(node.dynamicEdgesLength,2); - hubCounter += 1; } - average = average / hubCounter; - averageSquared = averageSquared / hubCounter; - - var variance = averageSquared - Math.pow(average,2); - - var standardDeviation = Math.sqrt(variance); - - this.hubThreshold = Math.floor(average + 2*standardDeviation); - - // always have at least one to cluster - if (this.hubThreshold > largestHub) { - this.hubThreshold = largestHub; + else { // in NE or SE + if (parentBranch.children.NW.range.maxY > node.y) { // in NE + this._placeInRegion(parentBranch,node,"NE"); + } + else { // in SE + this._placeInRegion(parentBranch,node,"SE"); + } } - - // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); - // console.log("hubThreshold:",this.hubThreshold); }; /** - * We reduce the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods - * with this amount we can cluster specifically on these chains. + * actually place the node in a region (or branch) * - * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce + * @param parentBranch + * @param node + * @param region * @private */ - exports._reduceAmountOfChains = function(fraction) { - this.hubThreshold = 2; - var reduceAmount = Math.floor(this.nodeIndices.length * fraction); - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { - if (reduceAmount > 0) { - this._formClusterFromHub(this.nodes[nodeId],true,true,1); - reduceAmount -= 1; - } + exports._placeInRegion = function(parentBranch,node,region) { + switch (parentBranch.children[region].childrenCount) { + case 0: // place node here + parentBranch.children[region].children.data = node; + parentBranch.children[region].childrenCount = 1; + this._updateBranchMass(parentBranch.children[region],node); + break; + case 1: // convert into children + // if there are two nodes exactly overlapping (on init, on opening of cluster etc.) + // we move one node a pixel and we do not put it in the tree. + if (parentBranch.children[region].children.data.x == node.x && + parentBranch.children[region].children.data.y == node.y) { + node.x += Math.random(); + node.y += Math.random(); } - } + else { + this._splitBranch(parentBranch.children[region]); + this._placeInTree(parentBranch.children[region],node); + } + break; + case 4: // place in branch + this._placeInTree(parentBranch.children[region],node); + break; } }; + /** - * We get the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods - * with this amount we can cluster specifically on these chains. + * this function splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch + * after the split is complete. * + * @param parentBranch * @private */ - exports._getChainFraction = function() { - var chains = 0; - var total = 0; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { - chains += 1; - } - total += 1; - } + exports._splitBranch = function(parentBranch) { + // if the branch is shaded with a node, replace the node in the new subset. + var containedNode = null; + if (parentBranch.childrenCount == 1) { + containedNode = parentBranch.children.data; + parentBranch.mass = 0; parentBranch.centerOfMass.x = 0; parentBranch.centerOfMass.y = 0; } - return chains/total; - }; - - -/***/ }, -/* 51 */ -/***/ function(module, exports, __webpack_require__) { + parentBranch.childrenCount = 4; + parentBranch.children.data = null; + this._insertRegion(parentBranch,"NW"); + this._insertRegion(parentBranch,"NE"); + this._insertRegion(parentBranch,"SW"); + this._insertRegion(parentBranch,"SE"); - var util = __webpack_require__(1); + if (containedNode != null) { + this._placeInTree(parentBranch,containedNode); + } + }; - /** - * Creation of the SectorMixin var. - * - * This contains all the functions the Network object can use to employ the sector system. - * The sector system is always used by Network, though the benefits only apply to the use of clustering. - * If clustering is not used, there is no overhead except for a duplicate object with references to nodes and edges. - */ /** - * This function is only called by the setData function of the Network object. - * This loads the global references into the active sector. This initializes the sector. + * This function subdivides the region into four new segments. + * Specifically, this inserts a single new segment. + * It fills the children section of the parentBranch * + * @param parentBranch + * @param region + * @param parentRange * @private */ - exports._putDataInSector = function() { - this.sectors["active"][this._sector()].nodes = this.nodes; - this.sectors["active"][this._sector()].edges = this.edges; - this.sectors["active"][this._sector()].nodeIndices = this.nodeIndices; + exports._insertRegion = function(parentBranch, region) { + var minX,maxX,minY,maxY; + var childSize = 0.5 * parentBranch.size; + switch (region) { + case "NW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "NE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "SW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + case "SE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + } + + + parentBranch.children[region] = { + centerOfMass:{x:0,y:0}, + mass:0, + range:{minX:minX,maxX:maxX,minY:minY,maxY:maxY}, + size: 0.5 * parentBranch.size, + calcSize: 2 * parentBranch.calcSize, + children: {data:null}, + maxWidth: 0, + level: parentBranch.level+1, + childrenCount: 0 + }; }; /** - * /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied (active) sector. If a type is defined, do the specific type + * This function is for debugging purposed, it draws the tree. * - * @param {String} sectorId - * @param {String} [sectorType] | "active" or "frozen" + * @param ctx + * @param color * @private */ - exports._switchToSector = function(sectorId, sectorType) { - if (sectorType === undefined || sectorType == "active") { - this._switchToActiveSector(sectorId); - } - else { - this._switchToFrozenSector(sectorId); + exports._drawTree = function(ctx,color) { + if (this.barnesHutTree !== undefined) { + + ctx.lineWidth = 1; + + this._drawBranch(this.barnesHutTree.root,ctx,color); } }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. + * This function is for debugging purposes. It draws the branches recursively. * - * @param sectorId + * @param branch + * @param ctx + * @param color * @private */ - exports._switchToActiveSector = function(sectorId) { - this.nodeIndices = this.sectors["active"][sectorId]["nodeIndices"]; - this.nodes = this.sectors["active"][sectorId]["nodes"]; - this.edges = this.sectors["active"][sectorId]["edges"]; - }; + exports._drawBranch = function(branch,ctx,color) { + if (color === undefined) { + color = "#FF0000"; + } + + if (branch.childrenCount == 4) { + this._drawBranch(branch.children.NW,ctx); + this._drawBranch(branch.children.NE,ctx); + this._drawBranch(branch.children.SE,ctx); + this._drawBranch(branch.children.SW,ctx); + } + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(branch.range.minX,branch.range.minY); + ctx.lineTo(branch.range.maxX,branch.range.minY); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(branch.range.maxX,branch.range.minY); + ctx.lineTo(branch.range.maxX,branch.range.maxY); + ctx.stroke(); - /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. - * - * @private - */ - exports._switchToSupportSector = function() { - this.nodeIndices = this.sectors["support"]["nodeIndices"]; - this.nodes = this.sectors["support"]["nodes"]; - this.edges = this.sectors["support"]["edges"]; + ctx.beginPath(); + ctx.moveTo(branch.range.maxX,branch.range.maxY); + ctx.lineTo(branch.range.minX,branch.range.maxY); + ctx.stroke(); + + ctx.beginPath(); + ctx.moveTo(branch.range.minX,branch.range.maxY); + ctx.lineTo(branch.range.minX,branch.range.minY); + ctx.stroke(); + + /* + if (branch.mass > 0) { + ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); + ctx.stroke(); + } + */ }; +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { + /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied frozen sector. + * Creation of the ClusterMixin var. * - * @param sectorId - * @private + * This contains all the functions the Network object can use to employ clustering */ - exports._switchToFrozenSector = function(sectorId) { - this.nodeIndices = this.sectors["frozen"][sectorId]["nodeIndices"]; - this.nodes = this.sectors["frozen"][sectorId]["nodes"]; - this.edges = this.sectors["frozen"][sectorId]["edges"]; + + /** + * This is only called in the constructor of the network object + * + */ + exports.startWithClustering = function() { + // cluster if the data set is big + this.clusterToFit(this.constants.clustering.initialMaxNodes, true); + + // updates the lables after clustering + this.updateLabels(); + + // this is called here because if clusterin is disabled, the start and stabilize are called in + // the setData function. + if (this.stabilize) { + this._stabilize(); + } + this.start(); }; - /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the currently active sector. + * This function clusters until the initialMaxNodes has been reached * - * @private + * @param {Number} maxNumberOfNodes + * @param {Boolean} reposition */ - exports._loadLatestSector = function() { - this._switchToSector(this._sector()); - }; - + exports.clusterToFit = function(maxNumberOfNodes, reposition) { + var numberOfNodes = this.nodeIndices.length; - /** - * This function returns the currently active sector Id - * - * @returns {String} - * @private - */ - exports._sector = function() { - return this.activeSector[this.activeSector.length-1]; - }; + var maxLevels = 50; + var level = 0; + // we first cluster the hubs, then we pull in the outliers, repeat + while (numberOfNodes > maxNumberOfNodes && level < maxLevels) { + if (level % 3 == 0) { + this.forceAggregateHubs(true); + this.normalizeClusterLevels(); + } + else { + this.increaseClusterLevel(); // this also includes a cluster normalization + } - /** - * This function returns the previously active sector Id - * - * @returns {String} - * @private - */ - exports._previousSector = function() { - if (this.activeSector.length > 1) { - return this.activeSector[this.activeSector.length-2]; + numberOfNodes = this.nodeIndices.length; + level += 1; } - else { - throw new TypeError('there are not enough sectors in the this.activeSector array.'); + + // after the clustering we reposition the nodes to reduce the initial chaos + if (level > 0 && reposition == true) { + this.repositionNodes(); } + this._updateCalculationNodes(); }; - /** - * We add the active sector at the end of the this.activeSector array - * This ensures it is the currently active sector returned by _sector() and it reaches the top - * of the activeSector stack. When we reverse our steps we move from the end to the beginning of this stack. + * This function can be called to open up a specific cluster. It is only called by + * It will unpack the cluster back one level. * - * @param newId - * @private + * @param node | Node object: cluster to open. */ - exports._setActiveSector = function(newId) { - this.activeSector.push(newId); - }; - + exports.openCluster = function(node) { + var isMovingBeforeClustering = this.moving; + if (node.clusterSize > this.constants.clustering.sectorThreshold && this._nodeInActiveArea(node) && + !(this._sector() == "default" && this.nodeIndices.length == 1)) { + // this loads a new sector, loads the nodes and edges and nodeIndices of it. + this._addSector(node); + var level = 0; - /** - * We remove the currently active sector id from the active sector stack. This happens when - * we reactivate the previously active sector - * - * @private - */ - exports._forgetLastSector = function() { - this.activeSector.pop(); - }; + // we decluster until we reach a decent number of nodes + while ((this.nodeIndices.length < this.constants.clustering.initialMaxNodes) && (level < 10)) { + this.decreaseClusterLevel(); + level += 1; + } + } + else { + this._expandClusterNode(node,false,true); - /** - * This function creates a new active sector with the supplied newId. This newId - * is the expanding node id. - * - * @param {String} newId | Id of the new active sector - * @private - */ - exports._createNewSector = function(newId) { - // create the new sector - this.sectors["active"][newId] = {"nodes":{}, - "edges":{}, - "nodeIndices":[], - "formationScale": this.scale, - "drawingNode": undefined}; + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this._updateCalculationNodes(); + this.updateLabels(); + } - // create the new sector render node. This gives visual feedback that you are in a new sector. - this.sectors["active"][newId]['drawingNode'] = new Node( - {id:newId, - color: { - background: "#eaefef", - border: "495c5e" - } - },{},{},this.constants); - this.sectors["active"][newId]['drawingNode'].clusterSize = 2; + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); + } }; /** - * This function removes the currently active sector. This is called when we create a new - * active sector. - * - * @param {String} sectorId | Id of the active sector that will be removed - * @private + * This calls the updateClustes with default arguments */ - exports._deleteActiveSector = function(sectorId) { - delete this.sectors["active"][sectorId]; + exports.updateClustersDefault = function() { + if (this.constants.clustering.enabled == true) { + this.updateClusters(0,false,false); + } }; /** - * This function removes the currently active sector. This is called when we reactivate - * the previously active sector. - * - * @param {String} sectorId | Id of the active sector that will be removed - * @private + * This function can be called to increase the cluster level. This means that the nodes with only one edge connection will + * be clustered with their connected node. This can be repeated as many times as needed. + * This can be called externally (by a keybind for instance) to reduce the complexity of big datasets. */ - exports._deleteFrozenSector = function(sectorId) { - delete this.sectors["frozen"][sectorId]; + exports.increaseClusterLevel = function() { + this.updateClusters(-1,false,true); }; /** - * Freezing an active sector means moving it from the "active" object to the "frozen" object. - * We copy the references, then delete the active entree. - * - * @param sectorId - * @private + * This function can be called to decrease the cluster level. This means that the nodes with only one edge connection will + * be unpacked if they are a cluster. This can be repeated as many times as needed. + * This can be called externally (by a key-bind for instance) to look into clusters without zooming. */ - exports._freezeSector = function(sectorId) { - // we move the set references from the active to the frozen stack. - this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; - - // we have moved the sector data into the frozen set, we now remove it from the active set - this._deleteActiveSector(sectorId); + exports.decreaseClusterLevel = function() { + this.updateClusters(1,false,true); }; /** - * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" - * object to the "active" object. + * This is the main clustering function. It clusters and declusters on zoom or forced + * This function clusters on zoom, it can be called with a predefined zoom direction + * If out, check if we can form clusters, if in, check if we can open clusters. + * This function is only called from _zoom() + * + * @param {Number} zoomDirection | -1 / 0 / +1 for zoomOut / determineByZoom / zoomIn + * @param {Boolean} recursive | enabled or disable recursive calling of the opening of clusters + * @param {Boolean} force | enabled or disable forcing + * @param {Boolean} doNotStart | if true do not call start * - * @param sectorId - * @private */ - exports._activateSector = function(sectorId) { - // we move the set references from the frozen to the active stack. - this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; - - // we have moved the sector data into the active set, we now remove it from the frozen stack - this._deleteFrozenSector(sectorId); - }; + exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; + // on zoom out collapse the sector if the scale is at the level the sector was made + if (this.previousScale > this.scale && zoomDirection == 0) { + this._collapseSector(); + } - /** - * This function merges the data from the currently active sector with a frozen sector. This is used - * in the process of reverting back to the previously active sector. - * The data that is placed in the frozen (the previously active) sector is the node that has been removed from it - * upon the creation of a new active sector. - * - * @param sectorId - * @private - */ - exports._mergeThisWithFrozen = function(sectorId) { - // copy all nodes - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; + // check if we zoom in or out + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + // forming clusters when forced pulls outliers in. When not forced, the edge length of the + // outer nodes determines if it is being clustered + this._formClusters(force); + } + else if (this.previousScale < this.scale || zoomDirection == 1) { // zoom in + if (force == true) { + // _openClusters checks for each node if the formationScale of the cluster is smaller than + // the current scale and if so, declusters. When forced, all clusters are reduced by one step + this._openClusters(recursive,force); + } + else { + // if a cluster takes up a set percentage of the active window + this._openClustersBySize(); } } + this._updateNodeIndexList(); - // copy all edges (if not fully clustered, else there are no edges) - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - this.sectors["frozen"][sectorId]["edges"][edgeId] = this.edges[edgeId]; - } + // if a cluster was NOT formed and the user zoomed out, we try clustering by hubs + if (this.nodeIndices.length == amountOfNodes && (this.previousScale > this.scale || zoomDirection == -1)) { + this._aggregateHubs(force); + this._updateNodeIndexList(); } - // merge the nodeIndices - for (var i = 0; i < this.nodeIndices.length; i++) { - this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); + // we now reduce chains. + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + this.handleChains(); + this._updateNodeIndexList(); + } + + this.previousScale = this.scale; + + // rest of the update the index list, dynamic edges and labels + this._updateDynamicEdges(); + this.updateLabels(); + + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length < amountOfNodes) { // this means a clustering operation has taken place + this.clusterSession += 1; + // if clusters have been made, we normalize the cluster level + this.normalizeClusterLevels(); + } + + if (doNotStart == false || doNotStart === undefined) { + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); + } } - }; + this._updateCalculationNodes(); + }; /** - * This clusters the sector to one cluster. It was a single cluster before this process started so - * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. - * - * @private + * This function handles the chains. It is called on every updateClusters(). */ - exports._collapseThisToSingleCluster = function() { - this.clusterToFit(1,false); - }; + exports.handleChains = function() { + // after clustering we check how many chains there are + var chainPercentage = this._getChainFraction(); + if (chainPercentage > this.constants.clustering.chainThreshold) { + this._reduceAmountOfChains(1 - this.constants.clustering.chainThreshold / chainPercentage) + } + }; /** - * We create a new active sector from the node that we want to open. + * this functions starts clustering by hubs + * The minimum hub threshold is set globally * - * @param node * @private */ - exports._addSector = function(node) { - // this is the currently active sector - var sector = this._sector(); - - // // this should allow me to select nodes from a frozen set. - // if (this.sectors['active'][sector]["nodes"].hasOwnProperty(node.id)) { - // console.log("the node is part of the active sector"); - // } - // else { - // console.log("I dont know what the fuck happened!!"); - // } - - // when we switch to a new sector, we remove the node that will be expanded from the current nodes list. - delete this.nodes[node.id]; - - var unqiueIdentifier = util.randomUUID(); - - // we fully freeze the currently active sector - this._freezeSector(sector); - - // we create a new active sector. This sector has the Id of the node to ensure uniqueness - this._createNewSector(unqiueIdentifier); - - // we add the active sector to the sectors array to be able to revert these steps later on - this._setActiveSector(unqiueIdentifier); - - // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier - this._switchToSector(this._sector()); - - // finally we add the node we removed from our previous active sector to the new active sector - this.nodes[node.id] = node; + exports._aggregateHubs = function(force) { + this._getHubSize(); + this._formClustersByHub(force,false); }; /** - * We close the sector that is currently open and revert back to the one before. - * If the active sector is the "default" sector, nothing happens. + * This function is fired by keypress. It forces hubs to form. * - * @private */ - exports._collapseSector = function() { - // the currently active sector - var sector = this._sector(); - - // we cannot collapse the default sector - if (sector != "default") { - if ((this.nodeIndices.length == 1) || - (this.sectors["active"][sector]["drawingNode"].width*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || - (this.sectors["active"][sector]["drawingNode"].height*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { - var previousSector = this._previousSector(); - - // we collapse the sector back to a single cluster - this._collapseThisToSingleCluster(); - - // we move the remaining nodes, edges and nodeIndices to the previous sector. - // This previous sector is the one we will reactivate - this._mergeThisWithFrozen(previousSector); - - // the previously active (frozen) sector now has all the data from the currently active sector. - // we can now delete the active sector. - this._deleteActiveSector(sector); - - // we activate the previously active (and currently frozen) sector. - this._activateSector(previousSector); + exports.forceAggregateHubs = function(doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; - // we load the references from the newly active sector into the global references - this._switchToSector(previousSector); + this._aggregateHubs(true); - // we forget the previously active sector because we reverted to the one before - this._forgetLastSector(); + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this.updateLabels(); - // finally, we update the node index list. - this._updateNodeIndexList(); + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; + } - // we refresh the list with calulation nodes and calculation node indices. - this._updateCalculationNodes(); + if (doNotStart == false || doNotStart === undefined) { + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); } } }; - /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * If a cluster takes up more than a set percentage of the screen, open the cluster * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInAllActiveSectors = function(runFunction,argument) { - if (argument === undefined) { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - this[runFunction](); - } - } - } - else { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); + exports._openClustersBySize = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.inView() == true) { + if ((node.width*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || + (node.height*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { + this.openCluster(node); } } } } - // we revert the global references back to our active sector - this._loadLatestSector(); }; /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * This function loops over all nodes in the nodeIndices list. For each node it checks if it is a cluster and if it + * has to be opened based on the current zoom level. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInSupportSector = function(runFunction,argument) { - if (argument === undefined) { - this._switchToSupportSector(); - this[runFunction](); - } - else { - this._switchToSupportSector(); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } + exports._openClusters = function(recursive,force) { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + this._expandClusterNode(node,recursive,force); + this._updateCalculationNodes(); } - // we revert the global references back to our active sector - this._loadLatestSector(); }; - /** - * This runs a function in all frozen sectors. This is used in the _redraw(). + * This function checks if a node has to be opened. This is done by checking the zoom level. + * If the node contains child nodes, this function is recursively called on the child nodes as well. + * This recursive behaviour is optional and can be set by the recursive argument. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we don't pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction + * @param {Node} parentNode | to check for cluster and expand + * @param {Boolean} recursive | enabled or disable recursive calling + * @param {Boolean} force | enabled or disable forcing + * @param {Boolean} [openAll] | This will recursively force all nodes in the parent to be released * @private */ - exports._doInAllFrozenSectors = function(runFunction,argument) { - if (argument === undefined) { - for (var sector in this.sectors["frozen"]) { - if (this.sectors["frozen"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToFrozenSector(sector); - this[runFunction](); - } - } - } - else { - for (var sector in this.sectors["frozen"]) { - if (this.sectors["frozen"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToFrozenSector(sector); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } - } + exports._expandClusterNode = function(parentNode, recursive, force, openAll) { + // first check if node is a cluster + if (parentNode.clusterSize > 1) { + // this means that on a double tap event or a zoom event, the cluster fully unpacks if it is smaller than 20 + if (parentNode.clusterSize < this.constants.clustering.sectorThreshold) { + openAll = true; } - } - this._loadLatestSector(); - }; + recursive = openAll ? true : recursive; + // if the last child has been added on a smaller scale than current scale decluster + if (parentNode.formationScale < this.scale || force == true) { + // we will check if any of the contained child nodes should be removed from the cluster + for (var containedNodeId in parentNode.containedNodes) { + if (parentNode.containedNodes.hasOwnProperty(containedNodeId)) { + var childNode = parentNode.containedNodes[containedNodeId]; - /** - * This runs a function in all sectors. This is used in the _redraw(). - * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we don't pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction - * @private - */ - exports._doInAllSectors = function(runFunction,argument) { - var args = Array.prototype.splice.call(arguments, 1); - if (argument === undefined) { - this._doInAllActiveSectors(runFunction); - this._doInAllFrozenSectors(runFunction); - } - else { - if (args.length > 1) { - this._doInAllActiveSectors(runFunction,args[0],args[1]); - this._doInAllFrozenSectors(runFunction,args[0],args[1]); - } - else { - this._doInAllActiveSectors(runFunction,argument); - this._doInAllFrozenSectors(runFunction,argument); + // force expand will expand the largest cluster size clusters. Since we cluster from outside in, we assume that + // the largest cluster is the one that comes from outside + if (force == true) { + if (childNode.clusterSession == parentNode.clusterSessions[parentNode.clusterSessions.length-1] + || openAll) { + this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); + } + } + else { + if (this._nodeInActiveArea(parentNode)) { + this._expelChildFromParent(parentNode,containedNodeId,recursive,force,openAll); + } + } + } + } } } }; - /** - * This clears the nodeIndices list. We cannot use this.nodeIndices = [] because we would break the link with the - * active sector. Thus we clear the nodeIndices in the active sector, then reconnect the this.nodeIndices to it. + * ONLY CALLED FROM _expandClusterNode + * + * This function will expel a child_node from a parent_node. This is to de-cluster the node. This function will remove + * the child node from the parent contained_node object and put it back into the global nodes object. + * The same holds for the edge that was connected to the child node. It is moved back into the global edges object. * + * @param {Node} parentNode | the parent node + * @param {String} containedNodeId | child_node id as it is contained in the containedNodes object of the parent node + * @param {Boolean} recursive | This will also check if the child needs to be expanded. + * With force and recursive both true, the entire cluster is unpacked + * @param {Boolean} force | This will disregard the zoom level and will expel this child from the parent + * @param {Boolean} openAll | This will recursively force all nodes in the parent to be released * @private */ - exports._clearNodeIndexList = function() { - var sector = this._sector(); - this.sectors["active"][sector]["nodeIndices"] = []; - this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; - }; + exports._expelChildFromParent = function(parentNode, containedNodeId, recursive, force, openAll) { + var childNode = parentNode.containedNodes[containedNodeId]; + + // if child node has been added on smaller scale than current, kick out + if (childNode.formationScale < this.scale || force == true) { + // unselect all selected items + this._unselectAll(); + // put the child node back in the global nodes object + this.nodes[containedNodeId] = childNode; - /** - * Draw the encompassing sector node - * - * @param ctx - * @param sectorType - * @private - */ - exports._drawSectorNodes = function(ctx,sectorType) { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var sector in this.sectors[sectorType]) { - if (this.sectors[sectorType].hasOwnProperty(sector)) { - if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { + // release the contained edges from this childNode back into the global edges + this._releaseContainedEdges(parentNode,childNode); - this._switchToSector(sector,sectorType); + // reconnect rerouted edges to the childNode + this._connectEdgeBackToChild(parentNode,childNode); - minY = 1e9; maxY = -1e9; minX = 1e9; maxX = -1e9; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - node.resize(ctx); - if (minX > node.x - 0.5 * node.width) {minX = node.x - 0.5 * node.width;} - if (maxX < node.x + 0.5 * node.width) {maxX = node.x + 0.5 * node.width;} - if (minY > node.y - 0.5 * node.height) {minY = node.y - 0.5 * node.height;} - if (maxY < node.y + 0.5 * node.height) {maxY = node.y + 0.5 * node.height;} - } + // validate all edges in dynamicEdges + this._validateEdges(parentNode); + + // undo the changes from the clustering operation on the parent node + parentNode.options.mass -= childNode.options.mass; + parentNode.clusterSize -= childNode.clusterSize; + parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + parentNode.dynamicEdgesLength = parentNode.dynamicEdges.length; + + // place the child node near the parent, not at the exact same location to avoid chaos in the system + childNode.x = parentNode.x + parentNode.growthIndicator * (0.5 - Math.random()); + childNode.y = parentNode.y + parentNode.growthIndicator * (0.5 - Math.random()); + + // remove node from the list + delete parentNode.containedNodes[containedNodeId]; + + // check if there are other childs with this clusterSession in the parent. + var othersPresent = false; + for (var childNodeId in parentNode.containedNodes) { + if (parentNode.containedNodes.hasOwnProperty(childNodeId)) { + if (parentNode.containedNodes[childNodeId].clusterSession == childNode.clusterSession) { + othersPresent = true; + break; } - node = this.sectors[sectorType][sector]["drawingNode"]; - node.x = 0.5 * (maxX + minX); - node.y = 0.5 * (maxY + minY); - node.width = 2 * (node.x - minX); - node.height = 2 * (node.y - minY); - node.radius = Math.sqrt(Math.pow(0.5*node.width,2) + Math.pow(0.5*node.height,2)); - node.setScale(this.scale); - node._drawCircle(ctx); } } - } - }; + // if there are no others, remove the cluster session from the list + if (othersPresent == false) { + parentNode.clusterSessions.pop(); + } - exports._drawAllSectorNodes = function(ctx) { - this._drawSectorNodes(ctx,"frozen"); - this._drawSectorNodes(ctx,"active"); - this._loadLatestSector(); - }; + this._repositionBezierNodes(childNode); + // this._repositionBezierNodes(parentNode); + // remove the clusterSession from the child node + childNode.clusterSession = 0; -/***/ }, -/* 52 */ -/***/ function(module, exports, __webpack_require__) { + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); - var Node = __webpack_require__(36); + // restart the simulation to reorganise all nodes + this.moving = true; + } - /** - * This function can be called from the _doInAllSectors function - * - * @param object - * @param overlappingNodes - * @private - */ - exports._getNodesOverlappingWith = function(object, overlappingNodes) { - var nodes = this.nodes; - for (var nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - if (nodes[nodeId].isOverlappingWith(object)) { - overlappingNodes.push(nodeId); - } - } + // check if a further expansion step is possible if recursivity is enabled + if (recursive == true) { + this._expandClusterNode(childNode,recursive,force,openAll); } }; + /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes + * position the bezier nodes at the center of the edges + * + * @param node * @private */ - exports._getAllNodesOverlappingWith = function (object) { - var overlappingNodes = []; - this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); - return overlappingNodes; + exports._repositionBezierNodes = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + node.dynamicEdges[i].positionBezierNode(); + } }; /** - * Return a position object in canvasspace from a single point in screenspace + * This function checks if any nodes at the end of their trees have edges below a threshold length + * This function is called only from updateClusters() + * forceLevelCollapse ignores the length of the edge and collapses one level + * This means that a node with only one edge will be clustered with its connected node * - * @param pointer - * @returns {{left: number, top: number, right: number, bottom: number}} * @private + * @param {Boolean} force */ - exports._pointerToPositionObject = function(pointer) { - var x = this._XconvertDOMtoCanvas(pointer.x); - var y = this._YconvertDOMtoCanvas(pointer.y); - - return { - left: x, - top: y, - right: x, - bottom: y - }; + exports._formClusters = function(force) { + if (force == false) { + this._formClustersByZoom(); + } + else { + this._forceClustersByZoom(); + } }; /** - * Get the top node at the a specific point (like a click) + * This function handles the clustering by zooming out, this is based on a minimum edge distance * - * @param {{x: Number, y: Number}} pointer - * @return {Node | null} node * @private */ - exports._getNodeAt = function (pointer) { - // we first check if this is an navigation controls element - var positionObject = this._pointerToPositionObject(pointer); - var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + exports._formClustersByZoom = function() { + var dx,dy,length, + minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - // if there are overlapping nodes, select the last one, this is the - // one which is drawn on top of the others - if (overlappingNodes.length > 0) { - return this.nodes[overlappingNodes[overlappingNodes.length - 1]]; - } - else { - return null; + // check if any edges are shorter than minLength and start the clustering + // the clustering favours the node with the larger mass + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + var edge = this.edges[edgeId]; + if (edge.connected) { + if (edge.toId != edge.fromId) { + dx = (edge.to.x - edge.from.x); + dy = (edge.to.y - edge.from.y); + length = Math.sqrt(dx * dx + dy * dy); + + + if (length < minLength) { + // first check which node is larger + var parentNode = edge.from; + var childNode = edge.to; + if (edge.to.options.mass > edge.from.options.mass) { + parentNode = edge.to; + childNode = edge.from; + } + + if (childNode.dynamicEdgesLength == 1) { + this._addToCluster(parentNode,childNode,false); + } + else if (parentNode.dynamicEdgesLength == 1) { + this._addToCluster(childNode,parentNode,false); + } + } + } + } + } } }; - /** - * retrieve all edges overlapping with given object, selector is around center - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes + * This function forces the network to cluster all nodes with only one connecting edge to their + * connected node. + * * @private */ - exports._getEdgesOverlappingWith = function (object, overlappingEdges) { - var edges = this.edges; - for (var edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - if (edges[edgeId].isOverlappingWith(object)) { - overlappingEdges.push(edgeId); + exports._forceClustersByZoom = function() { + for (var nodeId in this.nodes) { + // another node could have absorbed this child. + if (this.nodes.hasOwnProperty(nodeId)) { + var childNode = this.nodes[nodeId]; + + // the edges can be swallowed by another decrease + if (childNode.dynamicEdgesLength == 1 && childNode.dynamicEdges.length != 0) { + var edge = childNode.dynamicEdges[0]; + var parentNode = (edge.toId == childNode.id) ? this.nodes[edge.fromId] : this.nodes[edge.toId]; + + // group to the largest node + if (childNode.id != parentNode.id) { + if (parentNode.options.mass > childNode.options.mass) { + this._addToCluster(parentNode,childNode,true); + } + else { + this._addToCluster(childNode,parentNode,true); + } + } } } } @@ -27779,2475 +27673,2464 @@ return /******/ (function(modules) { // webpackBootstrap /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes - * @private - */ - exports._getAllEdgesOverlappingWith = function (object) { - var overlappingEdges = []; - this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); - return overlappingEdges; - }; - - /** - * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call - * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. + * To keep the nodes of roughly equal size we normalize the cluster levels. + * This function clusters a node to its smallest connected neighbour. * - * @param pointer - * @returns {null} + * @param node * @private */ - exports._getEdgeAt = function(pointer) { - var positionObject = this._pointerToPositionObject(pointer); - var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + exports._clusterToSmallestNeighbour = function(node) { + var smallestNeighbour = -1; + var smallestNeighbourNode = null; + for (var i = 0; i < node.dynamicEdges.length; i++) { + if (node.dynamicEdges[i] !== undefined) { + var neighbour = null; + if (node.dynamicEdges[i].fromId != node.id) { + neighbour = node.dynamicEdges[i].from; + } + else if (node.dynamicEdges[i].toId != node.id) { + neighbour = node.dynamicEdges[i].to; + } - if (overlappingEdges.length > 0) { - return this.edges[overlappingEdges[overlappingEdges.length - 1]]; + + if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { + smallestNeighbour = neighbour.clusterSessions.length; + smallestNeighbourNode = neighbour; + } + } } - else { - return null; + + if (neighbour != null && this.nodes[neighbour.id] !== undefined) { + this._addToCluster(neighbour, node, true); } }; /** - * Add object to the selection array. + * This function forms clusters from hubs, it loops over all nodes * - * @param obj + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges * @private */ - exports._addToSelection = function(obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; - } - else { - this.selectionObj.edges[obj.id] = obj; + exports._formClustersByHub = function(force, onlyEqual) { + // we loop over all nodes in the list + for (var nodeId in this.nodes) { + // we check if it is still available since it can be used by the clustering in this loop + if (this.nodes.hasOwnProperty(nodeId)) { + this._formClusterFromHub(this.nodes[nodeId],force,onlyEqual); + } } }; /** - * Add object to the selection array. + * This function forms a cluster from a specific preselected hub node * - * @param obj + * @param {Node} hubNode | the node we will cluster as a hub + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @param {Number} [absorptionSizeOffset] | * @private */ - exports._addToHover = function(obj) { - if (obj instanceof Node) { - this.hoverObj.nodes[obj.id] = obj; + exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { + if (absorptionSizeOffset === undefined) { + absorptionSizeOffset = 0; } - else { - this.hoverObj.edges[obj.id] = obj; + // we decide if the node is a hub + if ((hubNode.dynamicEdgesLength >= this.hubThreshold && onlyEqual == false) || + (hubNode.dynamicEdgesLength == this.hubThreshold && onlyEqual == true)) { + // initialize variables + var dx,dy,length; + var minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; + var allowCluster = false; + + // we create a list of edges because the dynamicEdges change over the course of this loop + var edgesIdarray = []; + var amountOfInitialEdges = hubNode.dynamicEdges.length; + for (var j = 0; j < amountOfInitialEdges; j++) { + edgesIdarray.push(hubNode.dynamicEdges[j].id); + } + + // if the hub clustering is not forces, we check if one of the edges connected + // to a cluster is small enough based on the constants.clustering.clusterEdgeThreshold + if (force == false) { + allowCluster = false; + for (j = 0; j < amountOfInitialEdges; j++) { + var edge = this.edges[edgesIdarray[j]]; + if (edge !== undefined) { + if (edge.connected) { + if (edge.toId != edge.fromId) { + dx = (edge.to.x - edge.from.x); + dy = (edge.to.y - edge.from.y); + length = Math.sqrt(dx * dx + dy * dy); + + if (length < minLength) { + allowCluster = true; + break; + } + } + } + } + } + } + + // start the clustering if allowed + if ((!force && allowCluster) || force) { + // we loop over all edges INITIALLY connected to this hub + for (j = 0; j < amountOfInitialEdges; j++) { + edge = this.edges[edgesIdarray[j]]; + // the edge can be clustered by this function in a previous loop + if (edge !== undefined) { + var childNode = this.nodes[(edge.fromId == hubNode.id) ? edge.toId : edge.fromId]; + // we do not want hubs to merge with other hubs nor do we want to cluster itself. + if ((childNode.dynamicEdges.length <= (this.hubThreshold + absorptionSizeOffset)) && + (childNode.id != hubNode.id)) { + this._addToCluster(hubNode,childNode,force); + } + } + } + } } }; + /** - * Remove a single option from selection. + * This function adds the child node to the parent node, creating a cluster if it is not already. * - * @param {Object} obj + * @param {Node} parentNode | this is the node that will house the child node + * @param {Node} childNode | this node will be deleted from the global this.nodes and stored in the parent node + * @param {Boolean} force | true will only update the remainingEdges at the very end of the clustering, ensuring single level collapse * @private */ - exports._removeFromSelection = function(obj) { - if (obj instanceof Node) { - delete this.selectionObj.nodes[obj.id]; + exports._addToCluster = function(parentNode, childNode, force) { + // join child node in the parent node + parentNode.containedNodes[childNode.id] = childNode; + + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < childNode.dynamicEdges.length; i++) { + var edge = childNode.dynamicEdges[i]; + if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode + this._addToContainedEdges(parentNode,childNode,edge); + } + else { + this._connectEdgeToCluster(parentNode,childNode,edge); + } + } + // a contained node has no dynamic edges. + childNode.dynamicEdges = []; + + // remove circular edges from clusters + this._containCircularEdgesFromNode(parentNode,childNode); + + + // remove the childNode from the global nodes object + delete this.nodes[childNode.id]; + + // update the properties of the child and parent + var massBefore = parentNode.options.mass; + childNode.clusterSession = this.clusterSession; + parentNode.options.mass += childNode.options.mass; + parentNode.clusterSize += childNode.clusterSize; + parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + + // keep track of the clustersessions so we can open the cluster up as it has been formed. + if (parentNode.clusterSessions[parentNode.clusterSessions.length - 1] != this.clusterSession) { + parentNode.clusterSessions.push(this.clusterSession); + } + + // forced clusters only open from screen size and double tap + if (force == true) { + // parentNode.formationScale = Math.pow(1 - (1.0/11.0),this.clusterSession+3); + parentNode.formationScale = 0; } else { - delete this.selectionObj.edges[obj.id]; + parentNode.formationScale = this.scale; // The latest child has been added on this scale } + + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); + + // set the pop-out scale for the childnode + parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; + + // nullify the movement velocity of the child, this is to avoid hectic behaviour + childNode.clearVelocity(); + + // the mass has altered, preservation of energy dictates the velocity to be updated + parentNode.updateVelocity(massBefore); + + // restart the simulation to reorganise all nodes + this.moving = true; }; + /** - * Unselect all. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger + * This function will apply the changes made to the remainingEdges during the formation of the clusters. + * This is a seperate function to allow for level-wise collapsing of the node barnesHutTree. + * It has to be called if a level is collapsed. It is called by _formClusters(). * @private */ - exports._unselectAll = function(doNotTrigger) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - this.selectionObj.nodes[nodeId].unselect(); + exports._updateDynamicEdges = function() { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + node.dynamicEdgesLength = node.dynamicEdges.length; + + // this corrects for multiple edges pointing at the same other node + var correction = 0; + if (node.dynamicEdgesLength > 1) { + for (var j = 0; j < node.dynamicEdgesLength - 1; j++) { + var edgeToId = node.dynamicEdges[j].toId; + var edgeFromId = node.dynamicEdges[j].fromId; + for (var k = j+1; k < node.dynamicEdgesLength; k++) { + if ((node.dynamicEdges[k].toId == edgeToId && node.dynamicEdges[k].fromId == edgeFromId) || + (node.dynamicEdges[k].fromId == edgeToId && node.dynamicEdges[k].toId == edgeFromId)) { + correction += 1; + } + } + } } + node.dynamicEdgesLength -= correction; } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - this.selectionObj.edges[edgeId].unselect(); - } + }; + + + /** + * This adds an edge from the childNode to the contained edges of the parent node + * + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object + * @private + */ + exports._addToContainedEdges = function(parentNode, childNode, edge) { + // create an array object if it does not yet exist for this childNode + if (!(parentNode.containedEdges.hasOwnProperty(childNode.id))) { + parentNode.containedEdges[childNode.id] = [] } + // add this edge to the list + parentNode.containedEdges[childNode.id].push(edge); - this.selectionObj = {nodes:{},edges:{}}; + // remove the edge from the global edges object + delete this.edges[edge.id]; - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + // remove the edge from the parent object + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + if (parentNode.dynamicEdges[i].id == edge.id) { + parentNode.dynamicEdges.splice(i,1); + break; + } } }; /** - * Unselect all clusters. The selectionObj is useful for this. + * This function connects an edge that was connected to a child node to the parent node. + * It keeps track of which nodes it has been connected to with the originalId array. * - * @param {Boolean} [doNotTrigger] | ignore trigger + * @param {Node} parentNode | Node object + * @param {Node} childNode | Node object + * @param {Edge} edge | Edge object * @private */ - exports._unselectClusters = function(doNotTrigger) { - if (doNotTrigger === undefined) { - doNotTrigger = false; + exports._connectEdgeToCluster = function(parentNode, childNode, edge) { + // handle circular edges + if (edge.toId == edge.fromId) { + this._addToContainedEdges(parentNode, childNode, edge); } + else { + if (edge.toId == childNode.id) { // edge connected to other node on the "to" side + edge.originalToId.push(childNode.id); + edge.to = parentNode; + edge.toId = parentNode.id; + } + else { // edge connected to other node with the "from" side - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - this.selectionObj.nodes[nodeId].unselect(); - this._removeFromSelection(this.selectionObj.nodes[nodeId]); - } + edge.originalFromId.push(childNode.id); + edge.from = parentNode; + edge.fromId = parentNode.id; } - } - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + this._addToReroutedEdges(parentNode,childNode,edge); } }; /** - * return the number of selected nodes + * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain + * these edges inside of the cluster. * - * @returns {number} + * @param parentNode + * @param childNode * @private */ - exports._getSelectedNodeCount = function() { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; + exports._containCircularEdgesFromNode = function(parentNode, childNode) { + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + var edge = parentNode.dynamicEdges[i]; + // handle circular edges + if (edge.toId == edge.fromId) { + this._addToContainedEdges(parentNode, childNode, edge); } } - return count; }; + /** - * return the selected node + * This adds an edge from the childNode to the rerouted edges of the parent node * - * @returns {number} + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object * @private */ - exports._getSelectedNode = function() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; - } + exports._addToReroutedEdges = function(parentNode, childNode, edge) { + // create an array object if it does not yet exist for this childNode + // we store the edge in the rerouted edges so we can restore it when the cluster pops open + if (!(parentNode.reroutedEdges.hasOwnProperty(childNode.id))) { + parentNode.reroutedEdges[childNode.id] = []; } - return null; - }; + parentNode.reroutedEdges[childNode.id].push(edge); + + // this edge becomes part of the dynamicEdges of the cluster node + parentNode.dynamicEdges.push(edge); + }; + + /** - * return the selected edge + * This function connects an edge that was connected to a cluster node back to the child node. * - * @returns {number} + * @param parentNode | Node object + * @param childNode | Node object * @private */ - exports._getSelectedEdge = function() { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return this.selectionObj.edges[edgeId]; + exports._connectEdgeBackToChild = function(parentNode, childNode) { + if (parentNode.reroutedEdges.hasOwnProperty(childNode.id)) { + for (var i = 0; i < parentNode.reroutedEdges[childNode.id].length; i++) { + var edge = parentNode.reroutedEdges[childNode.id][i]; + if (edge.originalFromId[edge.originalFromId.length-1] == childNode.id) { + edge.originalFromId.pop(); + edge.fromId = childNode.id; + edge.from = childNode; + } + else { + edge.originalToId.pop(); + edge.toId = childNode.id; + edge.to = childNode; + } + + // append this edge to the list of edges connecting to the childnode + childNode.dynamicEdges.push(edge); + + // remove the edge from the parent object + for (var j = 0; j < parentNode.dynamicEdges.length; j++) { + if (parentNode.dynamicEdges[j].id == edge.id) { + parentNode.dynamicEdges.splice(j,1); + break; + } + } } + // remove the entry from the rerouted edges + delete parentNode.reroutedEdges[childNode.id]; } - return null; }; /** - * return the number of selected edges + * When loops are clustered, an edge can be both in the rerouted array and the contained array. + * This function is called last to verify that all edges in dynamicEdges are in fact connected to the + * parentNode * - * @returns {number} + * @param parentNode | Node object * @private */ - exports._getSelectedEdgeCount = function() { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; + exports._validateEdges = function(parentNode) { + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + var edge = parentNode.dynamicEdges[i]; + if (parentNode.id != edge.toId && parentNode.id != edge.fromId) { + parentNode.dynamicEdges.splice(i,1); } } - return count; }; /** - * return the number of selected objects. + * This function released the contained edges back into the global domain and puts them back into the + * dynamic edges of both parent and child. * - * @returns {number} + * @param {Node} parentNode | + * @param {Node} childNode | * @private */ - exports._getSelectedObjectCount = function() { - var count = 0; - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; + exports._releaseContainedEdges = function(parentNode, childNode) { + for (var i = 0; i < parentNode.containedEdges[childNode.id].length; i++) { + var edge = parentNode.containedEdges[childNode.id][i]; + + // put the edge back in the global edges object + this.edges[edge.id] = edge; + + // put the edge back in the dynamic edges of the child and parent + childNode.dynamicEdges.push(edge); + parentNode.dynamicEdges.push(edge); + } + // remove the entry from the contained edges + delete parentNode.containedEdges[childNode.id]; + + }; + + + + + // ------------------- UTILITY FUNCTIONS ---------------------------- // + + + /** + * This updates the node labels for all nodes (for debugging purposes) + */ + exports.updateLabels = function() { + var nodeId; + // update node labels + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.clusterSize > 1) { + node.label = "[".concat(String(node.clusterSize),"]"); + } } } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; + + // update node labels + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.clusterSize == 1) { + if (node.originalLabel !== undefined) { + node.label = node.originalLabel; + } + else { + node.label = String(node.id); + } + } } } - return count; + + // /* Debug Override */ + // for (nodeId in this.nodes) { + // if (this.nodes.hasOwnProperty(nodeId)) { + // node = this.nodes[nodeId]; + // node.label = String(node.level); + // } + // } + }; + /** - * Check if anything is selected - * - * @returns {boolean} - * @private + * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes + * if the rest of the nodes are already a few cluster levels in. + * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not + * clustered enough to the clusterToSmallestNeighbours function. */ - exports._selectionIsEmpty = function() { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return false; + exports.normalizeClusterLevels = function() { + var maxLevel = 0; + var minLevel = 1e9; + var clusterLevel = 0; + var nodeId; + + // we loop over all nodes in the list + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + clusterLevel = this.nodes[nodeId].clusterSessions.length; + if (maxLevel < clusterLevel) {maxLevel = clusterLevel;} + if (minLevel > clusterLevel) {minLevel = clusterLevel;} } } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - return false; + + if (maxLevel - minLevel > this.constants.clustering.clusterLevelDifference) { + var amountOfNodes = this.nodeIndices.length; + var targetLevel = maxLevel - this.constants.clustering.clusterLevelDifference; + // we loop over all nodes in the list + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].clusterSessions.length < targetLevel) { + this._clusterToSmallestNeighbour(this.nodes[nodeId]); + } + } + } + this._updateNodeIndexList(); + this._updateDynamicEdges(); + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; } } - return true; }; - /** - * check if one of the selected nodes is a cluster. - * - * @returns {boolean} - * @private - */ - exports._clusterInSelection = function() { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - return true; - } - } - } - return false; - }; /** - * select the edges connected to the node that is being selected + * This function determines if the cluster we want to decluster is in the active area + * this means around the zoom center * * @param {Node} node + * @returns {boolean} * @private */ - exports._selectConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.select(); - this._addToSelection(edge); - } + exports._nodeInActiveArea = function(node) { + return ( + Math.abs(node.x - this.areaCenter.x) <= this.constants.clustering.activeAreaBoxSize/this.scale + && + Math.abs(node.y - this.areaCenter.y) <= this.constants.clustering.activeAreaBoxSize/this.scale + ) }; + /** - * select the edges connected to the node that is being selected + * This is an adaptation of the original repositioning function. This is called if the system is clustered initially + * It puts large clusters away from the center and randomizes the order. * - * @param {Node} node - * @private */ - exports._hoverConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.hover = true; - this._addToHover(edge); + exports.repositionNodes = function() { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + if ((node.xFixed == false || node.yFixed == false)) { + var radius = 10 * 0.1*this.nodeIndices.length * Math.min(100,node.options.mass); + var angle = 2 * Math.PI * Math.random(); + if (node.xFixed == false) {node.x = radius * Math.cos(angle);} + if (node.yFixed == false) {node.y = radius * Math.sin(angle);} + this._repositionBezierNodes(node); + } } }; /** - * unselect the edges connected to the node that is being selected + * We determine how many connections denote an important hub. + * We take the mean + 2*std as the important hub size. (Assuming a normal distribution of data, ~2.2%) * - * @param {Node} node * @private */ - exports._unselectConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.unselect(); - this._removeFromSelection(edge); - } - }; + exports._getHubSize = function() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + if (node.dynamicEdgesLength > largestHub) { + largestHub = node.dynamicEdgesLength; + } + average += node.dynamicEdgesLength; + averageSquared += Math.pow(node.dynamicEdgesLength,2); + hubCounter += 1; + } + average = average / hubCounter; + averageSquared = averageSquared / hubCounter; + var variance = averageSquared - Math.pow(average,2); - /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection - * - * @param {Node || Edge} object - * @param {Boolean} append - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private - */ - exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - if (highlightEdges === undefined) { - highlightEdges = true; - } + var standardDeviation = Math.sqrt(variance); - if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { - this._unselectAll(true); - } + this.hubThreshold = Math.floor(average + 2*standardDeviation); - if (object.selected == false) { - object.select(); - this._addToSelection(object); - if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { - this._selectConnectedEdges(object); - } - } - else { - object.unselect(); - this._removeFromSelection(object); + // always have at least one to cluster + if (this.hubThreshold > largestHub) { + this.hubThreshold = largestHub; } - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); - } + // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); + // console.log("hubThreshold:",this.hubThreshold); }; /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection + * We reduce the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods + * with this amount we can cluster specifically on these chains. * - * @param {Node || Edge} object + * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce * @private */ - exports._blurObject = function(object) { - if (object.hover == true) { - object.hover = false; - this.emit("blurNode",{node:object.id}); + exports._reduceAmountOfChains = function(fraction) { + this.hubThreshold = 2; + var reduceAmount = Math.floor(this.nodeIndices.length * fraction); + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { + if (reduceAmount > 0) { + this._formClusterFromHub(this.nodes[nodeId],true,true,1); + reduceAmount -= 1; + } + } + } } }; /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection + * We get the amount of "extension nodes" or chains. These are not quickly clustered with the outliers and hubs methods + * with this amount we can cluster specifically on these chains. * - * @param {Node || Edge} object * @private */ - exports._hoverObject = function(object) { - if (object.hover == false) { - object.hover = true; - this._addToHover(object); - if (object instanceof Node) { - this.emit("hoverNode",{node:object.id}); + exports._getChainFraction = function() { + var chains = 0; + var total = 0; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { + chains += 1; + } + total += 1; } } - if (object instanceof Node) { - this._hoverConnectedEdges(object); - } + return chains/total; }; +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + /** - * handles the selection part of the touch, only for navigation controls elements; - * Touch is triggered before tap, also before hold. Hold triggers after a while. - * This is the most responsive solution + * Creation of the SectorMixin var. + * + * This contains all the functions the Network object can use to employ the sector system. + * The sector system is always used by Network, though the benefits only apply to the use of clustering. + * If clustering is not used, there is no overhead except for a duplicate object with references to nodes and edges. + */ + + /** + * This function is only called by the setData function of the Network object. + * This loads the global references into the active sector. This initializes the sector. * - * @param {Object} pointer * @private */ - exports._handleTouch = function(pointer) { + exports._putDataInSector = function() { + this.sectors["active"][this._sector()].nodes = this.nodes; + this.sectors["active"][this._sector()].edges = this.edges; + this.sectors["active"][this._sector()].nodeIndices = this.nodeIndices; }; /** - * handles the selection part of the tap; + * /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied (active) sector. If a type is defined, do the specific type * - * @param {Object} pointer + * @param {String} sectorId + * @param {String} [sectorType] | "active" or "frozen" * @private */ - exports._handleTap = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node,false); + exports._switchToSector = function(sectorId, sectorType) { + if (sectorType === undefined || sectorType == "active") { + this._switchToActiveSector(sectorId); } else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge,false); - } - else { - this._unselectAll(); - } + this._switchToFrozenSector(sectorId); } - this.emit("click", this.getSelection()); - this._redraw(); }; /** - * handles the selection part of the double tap and opens a cluster if needed + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. * - * @param {Object} pointer + * @param sectorId * @private */ - exports._handleDoubleTap = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null && node !== undefined) { - // we reset the areaCenter here so the opening of the node will occur - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; - this.openCluster(node); - } - this.emit("doubleClick", this.getSelection()); + exports._switchToActiveSector = function(sectorId) { + this.nodeIndices = this.sectors["active"][sectorId]["nodeIndices"]; + this.nodes = this.sectors["active"][sectorId]["nodes"]; + this.edges = this.sectors["active"][sectorId]["edges"]; }; /** - * Handle the onHold selection part + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. * - * @param pointer * @private */ - exports._handleOnHold = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node,true); - } - else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge,true); - } - } - this._redraw(); + exports._switchToSupportSector = function() { + this.nodeIndices = this.sectors["support"]["nodeIndices"]; + this.nodes = this.sectors["support"]["nodes"]; + this.edges = this.sectors["support"]["edges"]; }; /** - * handle the onRelease event. These functions are here for the navigation controls module. + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied frozen sector. * - * @private + * @param sectorId + * @private */ - exports._handleOnRelease = function(pointer) { - + exports._switchToFrozenSector = function(sectorId) { + this.nodeIndices = this.sectors["frozen"][sectorId]["nodeIndices"]; + this.nodes = this.sectors["frozen"][sectorId]["nodes"]; + this.edges = this.sectors["frozen"][sectorId]["edges"]; }; - /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the currently active sector. * - * retrieve the currently selected objects - * @return {{nodes: Array., edges: Array.}} selection + * @private */ - exports.getSelection = function() { - var nodeIds = this.getSelectedNodes(); - var edgeIds = this.getSelectedEdges(); - return {nodes:nodeIds, edges:edgeIds}; + exports._loadLatestSector = function() { + this._switchToSector(this._sector()); }; + /** + * This function returns the currently active sector Id * - * retrieve the currently selected nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. + * @returns {String} + * @private */ - exports.getSelectedNodes = function() { - var idArray = []; - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); - } - } - return idArray + exports._sector = function() { + return this.activeSector[this.activeSector.length-1]; }; + /** + * This function returns the previously active sector Id * - * retrieve the currently selected edges - * @return {Array} selection An array with the ids of the - * selected nodes. + * @returns {String} + * @private */ - exports.getSelectedEdges = function() { - var idArray = []; - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - idArray.push(edgeId); - } + exports._previousSector = function() { + if (this.activeSector.length > 1) { + return this.activeSector[this.activeSector.length-2]; + } + else { + throw new TypeError('there are not enough sectors in the this.activeSector array.'); } - return idArray; }; /** - * select zero or more nodes - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. + * We add the active sector at the end of the this.activeSector array + * This ensures it is the currently active sector returned by _sector() and it reaches the top + * of the activeSector stack. When we reverse our steps we move from the end to the beginning of this stack. + * + * @param newId + * @private */ - exports.setSelection = function(selection) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; - - // first unselect any selected node - this._unselectAll(true); - - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; - - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); - } - this._selectObject(node,true,true); - } - - console.log("setSelection is deprecated. Please use selectNodes instead.") - - this.redraw(); + exports._setActiveSector = function(newId) { + this.activeSector.push(newId); }; /** - * select zero or more nodes with the option to highlight edges - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. - * @param {boolean} [highlightEdges] + * We remove the currently active sector id from the active sector stack. This happens when + * we reactivate the previously active sector + * + * @private */ - exports.selectNodes = function(selection, highlightEdges) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; - - // first unselect any selected node - this._unselectAll(true); - - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; - - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); - } - this._selectObject(node,true,true,highlightEdges); - } - this.redraw(); + exports._forgetLastSector = function() { + this.activeSector.pop(); }; /** - * select zero or more edges - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. + * This function creates a new active sector with the supplied newId. This newId + * is the expanding node id. + * + * @param {String} newId | Id of the new active sector + * @private */ - exports.selectEdges = function(selection) { - var i, iMax, id; - - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; + exports._createNewSector = function(newId) { + // create the new sector + this.sectors["active"][newId] = {"nodes":{}, + "edges":{}, + "nodeIndices":[], + "formationScale": this.scale, + "drawingNode": undefined}; - // first unselect any selected node - this._unselectAll(true); + // create the new sector render node. This gives visual feedback that you are in a new sector. + this.sectors["active"][newId]['drawingNode'] = new Node( + {id:newId, + color: { + background: "#eaefef", + border: "495c5e" + } + },{},{},this.constants); + this.sectors["active"][newId]['drawingNode'].clusterSize = 2; + }; - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; - var edge = this.edges[id]; - if (!edge) { - throw new RangeError('Edge with id "' + id + '" not found'); - } - this._selectObject(edge,true,true,highlightEdges); - } - this.redraw(); + /** + * This function removes the currently active sector. This is called when we create a new + * active sector. + * + * @param {String} sectorId | Id of the active sector that will be removed + * @private + */ + exports._deleteActiveSector = function(sectorId) { + delete this.sectors["active"][sectorId]; }; + /** - * Validate the selection: remove ids of nodes which no longer exist + * This function removes the currently active sector. This is called when we reactivate + * the previously active sector. + * + * @param {String} sectorId | Id of the active sector that will be removed * @private */ - exports._updateSelection = function () { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (!this.nodes.hasOwnProperty(nodeId)) { - delete this.selectionObj.nodes[nodeId]; - } - } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; - } - } - } + exports._deleteFrozenSector = function(sectorId) { + delete this.sectors["frozen"][sectorId]; }; -/***/ }, -/* 53 */ -/***/ function(module, exports, __webpack_require__) { + /** + * Freezing an active sector means moving it from the "active" object to the "frozen" object. + * We copy the references, then delete the active entree. + * + * @param sectorId + * @private + */ + exports._freezeSector = function(sectorId) { + // we move the set references from the active to the frozen stack. + this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; + + // we have moved the sector data into the frozen set, we now remove it from the active set + this._deleteActiveSector(sectorId); + }; - var util = __webpack_require__(1); - var Node = __webpack_require__(36); - var Edge = __webpack_require__(33); /** - * clears the toolbar div element of children + * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" + * object to the "active" object. * + * @param sectorId * @private */ - exports._clearManipulatorBar = function() { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } + exports._activateSector = function(sectorId) { + // we move the set references from the frozen to the active stack. + this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; + + // we have moved the sector data into the active set, we now remove it from the frozen stack + this._deleteFrozenSector(sectorId); }; + /** - * Manipulation UI temporarily overloads certain functions to extend or replace them. To be able to restore - * these functions to their original functionality, we saved them in this.cachedFunctions. - * This function restores these functions to their original function. + * This function merges the data from the currently active sector with a frozen sector. This is used + * in the process of reverting back to the previously active sector. + * The data that is placed in the frozen (the previously active) sector is the node that has been removed from it + * upon the creation of a new active sector. * + * @param sectorId * @private */ - exports._restoreOverloadedFunctions = function() { - for (var functionName in this.cachedFunctions) { - if (this.cachedFunctions.hasOwnProperty(functionName)) { - this[functionName] = this.cachedFunctions[functionName]; + exports._mergeThisWithFrozen = function(sectorId) { + // copy all nodes + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; } } + + // copy all edges (if not fully clustered, else there are no edges) + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.sectors["frozen"][sectorId]["edges"][edgeId] = this.edges[edgeId]; + } + } + + // merge the nodeIndices + for (var i = 0; i < this.nodeIndices.length; i++) { + this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); + } }; + /** - * Enable or disable edit-mode. + * This clusters the sector to one cluster. It was a single cluster before this process started so + * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. * * @private */ - exports._toggleEditMode = function() { - this.editMode = !this.editMode; - var toolbar = document.getElementById("network-manipulationDiv"); - var closeDiv = document.getElementById("network-manipulation-closeDiv"); - var editModeDiv = document.getElementById("network-manipulation-editMode"); - if (this.editMode == true) { - toolbar.style.display="block"; - closeDiv.style.display="block"; - editModeDiv.style.display="none"; - closeDiv.onclick = this._toggleEditMode.bind(this); - } - else { - toolbar.style.display="none"; - closeDiv.style.display="none"; - editModeDiv.style.display="block"; - closeDiv.onclick = null; - } - this._createManipulatorBar() + exports._collapseThisToSingleCluster = function() { + this.clusterToFit(1,false); }; + /** - * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * We create a new active sector from the node that we want to open. * + * @param node * @private */ - exports._createManipulatorBar = function() { - // remove bound functions - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + exports._addSector = function(node) { + // this is the currently active sector + var sector = this._sector(); - if (this.edgeBeingEdited !== undefined) { - this.edgeBeingEdited._disableControlNodes(); - this.edgeBeingEdited = undefined; - this.selectedControlNode = null; - this.controlNodesActive = false; - } + // // this should allow me to select nodes from a frozen set. + // if (this.sectors['active'][sector]["nodes"].hasOwnProperty(node.id)) { + // console.log("the node is part of the active sector"); + // } + // else { + // console.log("I dont know what the fuck happened!!"); + // } - // restore overloaded functions - this._restoreOverloadedFunctions(); + // when we switch to a new sector, we remove the node that will be expanded from the current nodes list. + delete this.nodes[node.id]; - // resume calculation - this.freezeSimulation = false; + var unqiueIdentifier = util.randomUUID(); - // reset global variables - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; + // we fully freeze the currently active sector + this._freezeSector(sector); - if (this.editMode == true) { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } - // add the icons to the manipulator div - this.manipulationDiv.innerHTML = "" + - "" + - ""+this.constants.labels['add'] +"" + - "
" + - "" + - ""+this.constants.labels['link'] +""; - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['editNode'] +""; - } - else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['editEdge'] +""; - } - if (this._selectionIsEmpty() == false) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+this.constants.labels['del'] +""; - } + // we create a new active sector. This sector has the Id of the node to ensure uniqueness + this._createNewSector(unqiueIdentifier); + // we add the active sector to the sectors array to be able to revert these steps later on + this._setActiveSector(unqiueIdentifier); - // bind the icons - var addNodeButton = document.getElementById("network-manipulate-addNode"); - addNodeButton.onclick = this._createAddNodeToolbar.bind(this); - var addEdgeButton = document.getElementById("network-manipulate-connectNode"); - addEdgeButton.onclick = this._createAddEdgeToolbar.bind(this); - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - var editButton = document.getElementById("network-manipulate-editNode"); - editButton.onclick = this._editNode.bind(this); - } - else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - var editButton = document.getElementById("network-manipulate-editEdge"); - editButton.onclick = this._createEditEdgeToolbar.bind(this); - } - if (this._selectionIsEmpty() == false) { - var deleteButton = document.getElementById("network-manipulate-delete"); - deleteButton.onclick = this._deleteSelected.bind(this); - } - var closeDiv = document.getElementById("network-manipulation-closeDiv"); - closeDiv.onclick = this._toggleEditMode.bind(this); + // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier + this._switchToSector(this._sector()); - this.boundFunction = this._createManipulatorBar.bind(this); - this.on('select', this.boundFunction); - } - else { - this.editModeDiv.innerHTML = "" + - "" + - "" + this.constants.labels['edit'] + ""; - var editModeButton = document.getElementById("network-manipulate-editModeButton"); - editModeButton.onclick = this._toggleEditMode.bind(this); - } + // finally we add the node we removed from our previous active sector to the new active sector + this.nodes[node.id] = node; }; - /** - * Create the toolbar for adding Nodes + * We close the sector that is currently open and revert back to the one before. + * If the active sector is the "default" sector, nothing happens. * * @private */ - exports._createAddNodeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - if (this.boundFunction) { - this.off('select', this.boundFunction); - } - - // create the toolbar contents - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['addDescription'] + ""; + exports._collapseSector = function() { + // the currently active sector + var sector = this._sector(); - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + // we cannot collapse the default sector + if (sector != "default") { + if ((this.nodeIndices.length == 1) || + (this.sectors["active"][sector]["drawingNode"].width*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || + (this.sectors["active"][sector]["drawingNode"].height*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { + var previousSector = this._previousSector(); - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - this.boundFunction = this._addNode.bind(this); - this.on('select', this.boundFunction); - }; + // we collapse the sector back to a single cluster + this._collapseThisToSingleCluster(); + // we move the remaining nodes, edges and nodeIndices to the previous sector. + // This previous sector is the one we will reactivate + this._mergeThisWithFrozen(previousSector); - /** - * create the toolbar to connect nodes - * - * @private - */ - exports._createAddEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this._unselectAll(true); - this.freezeSimulation = true; + // the previously active (frozen) sector now has all the data from the currently active sector. + // we can now delete the active sector. + this._deleteActiveSector(sector); - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + // we activate the previously active (and currently frozen) sector. + this._activateSector(previousSector); - this._unselectAll(); - this.forceAppendSelection = false; - this.blockConnectingEdgeSelection = true; + // we load the references from the newly active sector into the global references + this._switchToSector(previousSector); - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['linkDescription'] + ""; + // we forget the previously active sector because we reverted to the one before + this._forgetLastSector(); - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + // finally, we update the node index list. + this._updateNodeIndexList(); - // we use the boundFunction so we can reference it when we unbind it from the "select" event. - this.boundFunction = this._handleConnect.bind(this); - this.on('select', this.boundFunction); + // we refresh the list with calulation nodes and calculation node indices. + this._updateCalculationNodes(); + } + } + }; - // temporarily overload functions - this.cachedFunctions["_handleTouch"] = this._handleTouch; - this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; - this._handleTouch = this._handleConnect; - this._handleOnRelease = this._finishConnect; - // redraw to show the unselect - this._redraw(); + /** + * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we dont pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction + * @private + */ + exports._doInAllActiveSectors = function(runFunction,argument) { + if (argument === undefined) { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + this[runFunction](); + } + } + } + else { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); + } + } + } + } + // we revert the global references back to our active sector + this._loadLatestSector(); }; + /** - * create the toolbar to edit edges + * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). * + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we dont pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._createEditEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this.controlNodesActive = true; - - if (this.boundFunction) { - this.off('select', this.boundFunction); + exports._doInSupportSector = function(runFunction,argument) { + if (argument === undefined) { + this._switchToSupportSector(); + this[runFunction](); } - - this.edgeBeingEdited = this._getSelectedEdge(); - this.edgeBeingEdited._enableControlNodes(); - - this.manipulationDiv.innerHTML = "" + - "" + - "" + this.constants.labels['back'] + " " + - "
" + - "" + - "" + this.constants.labels['editEdgeDescription'] + ""; - - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); - - // temporarily overload functions - this.cachedFunctions["_handleTouch"] = this._handleTouch; - this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; - this.cachedFunctions["_handleTap"] = this._handleTap; - this.cachedFunctions["_handleDragStart"] = this._handleDragStart; - this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; - this._handleTouch = this._selectControlNode; - this._handleTap = function () {}; - this._handleOnDrag = this._controlNodeDrag; - this._handleDragStart = function () {} - this._handleOnRelease = this._releaseControlNode; - - // redraw to show the unselect - this._redraw(); + else { + this._switchToSupportSector(); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); + } + } + // we revert the global references back to our active sector + this._loadLatestSector(); }; - - - /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. + * This runs a function in all frozen sectors. This is used in the _redraw(). * + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we don't pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._selectControlNode = function(pointer) { - this.edgeBeingEdited.controlNodes.from.unselect(); - this.edgeBeingEdited.controlNodes.to.unselect(); - this.selectedControlNode = this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(pointer.x),this._YconvertDOMtoCanvas(pointer.y)); - if (this.selectedControlNode !== null) { - this.selectedControlNode.select(); - this.freezeSimulation = true; + exports._doInAllFrozenSectors = function(runFunction,argument) { + if (argument === undefined) { + for (var sector in this.sectors["frozen"]) { + if (this.sectors["frozen"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToFrozenSector(sector); + this[runFunction](); + } + } } - this._redraw(); + else { + for (var sector in this.sectors["frozen"]) { + if (this.sectors["frozen"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToFrozenSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); + } + } + } + } + this._loadLatestSector(); }; + /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. + * This runs a function in all sectors. This is used in the _redraw(). * + * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors + * | we don't pass the function itself because then the "this" is the window object + * | instead of the Network object + * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._controlNodeDrag = function(event) { - var pointer = this._getPointer(event.gesture.center); - if (this.selectedControlNode !== null && this.selectedControlNode !== undefined) { - this.selectedControlNode.x = this._XconvertDOMtoCanvas(pointer.x); - this.selectedControlNode.y = this._YconvertDOMtoCanvas(pointer.y); + exports._doInAllSectors = function(runFunction,argument) { + var args = Array.prototype.splice.call(arguments, 1); + if (argument === undefined) { + this._doInAllActiveSectors(runFunction); + this._doInAllFrozenSectors(runFunction); } - this._redraw(); - }; - - exports._releaseControlNode = function(pointer) { - var newNode = this._getNodeAt(pointer); - if (newNode != null) { - if (this.edgeBeingEdited.controlNodes.from.selected == true) { - this._editEdge(newNode.id, this.edgeBeingEdited.to.id); - this.edgeBeingEdited.controlNodes.from.unselect(); + else { + if (args.length > 1) { + this._doInAllActiveSectors(runFunction,args[0],args[1]); + this._doInAllFrozenSectors(runFunction,args[0],args[1]); } - if (this.edgeBeingEdited.controlNodes.to.selected == true) { - this._editEdge(this.edgeBeingEdited.from.id, newNode.id); - this.edgeBeingEdited.controlNodes.to.unselect(); + else { + this._doInAllActiveSectors(runFunction,argument); + this._doInAllFrozenSectors(runFunction,argument); } } - else { - this.edgeBeingEdited._restoreControlNodes(); - } - this.freezeSimulation = false; - this._redraw(); }; + /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. + * This clears the nodeIndices list. We cannot use this.nodeIndices = [] because we would break the link with the + * active sector. Thus we clear the nodeIndices in the active sector, then reconnect the this.nodeIndices to it. * * @private */ - exports._handleConnect = function(pointer) { - if (this._getSelectedNodeCount() == 0) { - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert("Cannot create edges to a cluster.") + exports._clearNodeIndexList = function() { + var sector = this._sector(); + this.sectors["active"][sector]["nodeIndices"] = []; + this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; + }; + + + /** + * Draw the encompassing sector node + * + * @param ctx + * @param sectorType + * @private + */ + exports._drawSectorNodes = function(ctx,sectorType) { + var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; + for (var sector in this.sectors[sectorType]) { + if (this.sectors[sectorType].hasOwnProperty(sector)) { + if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { + + this._switchToSector(sector,sectorType); + + minY = 1e9; maxY = -1e9; minX = 1e9; maxX = -1e9; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + node.resize(ctx); + if (minX > node.x - 0.5 * node.width) {minX = node.x - 0.5 * node.width;} + if (maxX < node.x + 0.5 * node.width) {maxX = node.x + 0.5 * node.width;} + if (minY > node.y - 0.5 * node.height) {minY = node.y - 0.5 * node.height;} + if (maxY < node.y + 0.5 * node.height) {maxY = node.y + 0.5 * node.height;} + } + } + node = this.sectors[sectorType][sector]["drawingNode"]; + node.x = 0.5 * (maxX + minX); + node.y = 0.5 * (maxY + minY); + node.width = 2 * (node.x - minX); + node.height = 2 * (node.y - minY); + node.radius = Math.sqrt(Math.pow(0.5*node.width,2) + Math.pow(0.5*node.height,2)); + node.setScale(this.scale); + node._drawCircle(ctx); } - else { - this._selectObject(node,false); - // create a node the temporary line can look at - this.sectors['support']['nodes']['targetNode'] = new Node({id:'targetNode'},{},{},this.constants); - this.sectors['support']['nodes']['targetNode'].x = node.x; - this.sectors['support']['nodes']['targetNode'].y = node.y; - this.sectors['support']['nodes']['targetViaNode'] = new Node({id:'targetViaNode'},{},{},this.constants); - this.sectors['support']['nodes']['targetViaNode'].x = node.x; - this.sectors['support']['nodes']['targetViaNode'].y = node.y; - this.sectors['support']['nodes']['targetViaNode'].parentEdgeId = "connectionEdge"; + } + } + }; - // create a temporary edge - this.edges['connectionEdge'] = new Edge({id:"connectionEdge",from:node.id,to:this.sectors['support']['nodes']['targetNode'].id}, this, this.constants); - this.edges['connectionEdge'].from = node; - this.edges['connectionEdge'].connected = true; - this.edges['connectionEdge'].smooth = true; - this.edges['connectionEdge'].selected = true; - this.edges['connectionEdge'].to = this.sectors['support']['nodes']['targetNode']; - this.edges['connectionEdge'].via = this.sectors['support']['nodes']['targetViaNode']; + exports._drawAllSectorNodes = function(ctx) { + this._drawSectorNodes(ctx,"frozen"); + this._drawSectorNodes(ctx,"active"); + this._loadLatestSector(); + }; - this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; - this._handleOnDrag = function(event) { - var pointer = this._getPointer(event.gesture.center); - this.sectors['support']['nodes']['targetNode'].x = this._XconvertDOMtoCanvas(pointer.x); - this.sectors['support']['nodes']['targetNode'].y = this._YconvertDOMtoCanvas(pointer.y); - this.sectors['support']['nodes']['targetViaNode'].x = 0.5 * (this._XconvertDOMtoCanvas(pointer.x) + this.edges['connectionEdge'].from.x); - this.sectors['support']['nodes']['targetViaNode'].y = this._YconvertDOMtoCanvas(pointer.y); - }; - this.moving = true; - this.start(); +/***/ }, +/* 57 */ +/***/ function(module, exports, __webpack_require__) { + + var Node = __webpack_require__(47); + + /** + * This function can be called from the _doInAllSectors function + * + * @param object + * @param overlappingNodes + * @private + */ + exports._getNodesOverlappingWith = function(object, overlappingNodes) { + var nodes = this.nodes; + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].isOverlappingWith(object)) { + overlappingNodes.push(nodeId); } } } }; - exports._finishConnect = function(pointer) { - if (this._getSelectedNodeCount() == 1) { + /** + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + exports._getAllNodesOverlappingWith = function (object) { + var overlappingNodes = []; + this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); + return overlappingNodes; + }; + - // restore the drag function - this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; - delete this.cachedFunctions["_handleOnDrag"]; + /** + * Return a position object in canvasspace from a single point in screenspace + * + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} + * @private + */ + exports._pointerToPositionObject = function(pointer) { + var x = this._XconvertDOMtoCanvas(pointer.x); + var y = this._YconvertDOMtoCanvas(pointer.y); - // remember the edge id - var connectFromId = this.edges['connectionEdge'].fromId; + return { + left: x, + top: y, + right: x, + bottom: y + }; + }; - // remove the temporary nodes and edge - delete this.edges['connectionEdge']; - delete this.sectors['support']['nodes']['targetNode']; - delete this.sectors['support']['nodes']['targetViaNode']; - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert("Cannot create edges to a cluster.") - } - else { - this._createEdge(connectFromId,node.id); - this._createManipulatorBar(); - } - } - this._unselectAll(); + /** + * Get the top node at the a specific point (like a click) + * + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node + * @private + */ + exports._getNodeAt = function (pointer) { + // we first check if this is an navigation controls element + var positionObject = this._pointerToPositionObject(pointer); + var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + + // if there are overlapping nodes, select the last one, this is the + // one which is drawn on top of the others + if (overlappingNodes.length > 0) { + return this.nodes[overlappingNodes[overlappingNodes.length - 1]]; + } + else { + return null; } }; /** - * Adds a node on the specified location + * retrieve all edges overlapping with given object, selector is around center + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private */ - exports._addNode = function() { - if (this._selectionIsEmpty() && this.editMode == true) { - var positionObject = this._pointerToPositionObject(this.pointerPosition); - var defaultData = {id:util.randomUUID(),x:positionObject.left,y:positionObject.top,label:"new",allowedToMoveX:true,allowedToMoveY:true}; - if (this.triggerFunctions.add) { - if (this.triggerFunctions.add.length == 2) { - var me = this; - this.triggerFunctions.add(defaultData, function(finalizedData) { - me.nodesData.add(finalizedData); - me._createManipulatorBar(); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels['addError']); - this._createManipulatorBar(); - this.moving = true; - this.start(); + exports._getEdgesOverlappingWith = function (object, overlappingEdges) { + var edges = this.edges; + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].isOverlappingWith(object)) { + overlappingEdges.push(edgeId); } } - else { - this.nodesData.add(defaultData); - this._createManipulatorBar(); - this.moving = true; - this.start(); - } } }; /** - * connect two nodes with a new edge. - * + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes * @private */ - exports._createEdge = function(sourceNodeId,targetNodeId) { - if (this.editMode == true) { - var defaultData = {from:sourceNodeId, to:targetNodeId}; - if (this.triggerFunctions.connect) { - if (this.triggerFunctions.connect.length == 2) { - var me = this; - this.triggerFunctions.connect(defaultData, function(finalizedData) { - me.edgesData.add(finalizedData); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["linkError"]); - this.moving = true; - this.start(); - } - } - else { - this.edgesData.add(defaultData); - this.moving = true; - this.start(); - } - } + exports._getAllEdgesOverlappingWith = function (object) { + var overlappingEdges = []; + this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); + return overlappingEdges; }; /** - * connect two nodes with a new edge. + * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call + * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. * + * @param pointer + * @returns {null} * @private */ - exports._editEdge = function(sourceNodeId,targetNodeId) { - if (this.editMode == true) { - var defaultData = {id: this.edgeBeingEdited.id, from:sourceNodeId, to:targetNodeId}; - if (this.triggerFunctions.editEdge) { - if (this.triggerFunctions.editEdge.length == 2) { - var me = this; - this.triggerFunctions.editEdge(defaultData, function(finalizedData) { - me.edgesData.update(finalizedData); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["linkError"]); - this.moving = true; - this.start(); - } - } - else { - this.edgesData.update(defaultData); - this.moving = true; - this.start(); - } + exports._getEdgeAt = function(pointer) { + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + + if (overlappingEdges.length > 0) { + return this.edges[overlappingEdges[overlappingEdges.length - 1]]; + } + else { + return null; } }; + /** - * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. + * Add object to the selection array. * + * @param obj * @private */ - exports._editNode = function() { - if (this.triggerFunctions.edit && this.editMode == true) { - var node = this._getSelectedNode(); - var data = {id:node.id, - label: node.label, - group: node.options.group, - shape: node.options.shape, - color: { - background:node.options.color.background, - border:node.options.color.border, - highlight: { - background:node.options.color.highlight.background, - border:node.options.color.highlight.border - } - }}; - if (this.triggerFunctions.edit.length == 2) { - var me = this; - this.triggerFunctions.edit(data, function (finalizedData) { - me.nodesData.update(finalizedData); - me._createManipulatorBar(); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["editError"]); - } + exports._addToSelection = function(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; } else { - alert(this.constants.labels["editBoundError"]); + this.selectionObj.edges[obj.id] = obj; } }; - - - /** - * delete everything in the selection + * Add object to the selection array. * + * @param obj * @private */ - exports._deleteSelected = function() { - if (!this._selectionIsEmpty() && this.editMode == true) { - if (!this._clusterInSelection()) { - var selectedNodes = this.getSelectedNodes(); - var selectedEdges = this.getSelectedEdges(); - if (this.triggerFunctions.del) { - var me = this; - var data = {nodes: selectedNodes, edges: selectedEdges}; - if (this.triggerFunctions.del.length = 2) { - this.triggerFunctions.del(data, function (finalizedData) { - me.edgesData.remove(finalizedData.edges); - me.nodesData.remove(finalizedData.nodes); - me._unselectAll(); - me.moving = true; - me.start(); - }); - } - else { - alert(this.constants.labels["deleteError"]) - } - } - else { - this.edgesData.remove(selectedEdges); - this.nodesData.remove(selectedNodes); - this._unselectAll(); - this.moving = true; - this.start(); - } - } - else { - alert(this.constants.labels["deleteClusterError"]); - } + exports._addToHover = function(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; } - }; - - -/***/ }, -/* 54 */ -/***/ function(module, exports, __webpack_require__) { + else { + this.hoverObj.edges[obj.id] = obj; + } + }; - var util = __webpack_require__(1); - var Hammer = __webpack_require__(41); - exports._cleanNavigation = function() { - // clean up previous navigation items - var wrapper = document.getElementById('network-navigation_wrapper'); - if (wrapper != null) { - this.containerElement.removeChild(wrapper); + /** + * Remove a single option from selection. + * + * @param {Object} obj + * @private + */ + exports._removeFromSelection = function(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; + } + else { + delete this.selectionObj.edges[obj.id]; } - document.onmouseup = null; }; /** - * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation - * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent - * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. - * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. + * Unselect all. The selectionObj is useful for this. * + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._loadNavigationElements = function() { - this._cleanNavigation(); - - this.navigationDivs = {}; - var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; - var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; + exports._unselectAll = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + this.selectionObj.nodes[nodeId].unselect(); + } + } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + this.selectionObj.edges[edgeId].unselect(); + } + } - this.navigationDivs['wrapper'] = document.createElement('div'); - this.navigationDivs['wrapper'].id = "network-navigation_wrapper"; - this.navigationDivs['wrapper'].style.position = "absolute"; - this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; - this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; - this.containerElement.insertBefore(this.navigationDivs['wrapper'],this.frame); + this.selectionObj = {nodes:{},edges:{}}; - var me = this; - for (var i = 0; i < navigationDivs.length; i++) { - this.navigationDivs[navigationDivs[i]] = document.createElement('div'); - this.navigationDivs[navigationDivs[i]].id = "network-navigation_" + navigationDivs[i]; - this.navigationDivs[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; - this.navigationDivs['wrapper'].appendChild(this.navigationDivs[navigationDivs[i]]); - var hammer = Hammer(this.navigationDivs[navigationDivs[i]], {prevent_default: true}); - hammer.on("touch", me[navigationDivActions[i]].bind(me)); + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); } - var hammer = Hammer(document, {prevent_default: false}); - hammer.on("release", me._stopMovement.bind(me)); }; /** - * this stops all movement induced by the navigation buttons + * Unselect all clusters. The selectionObj is useful for this. * + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._stopMovement = function() { - this._xStopMoving(); - this._yStopMoving(); - this._stopZoom(); + exports._unselectClusters = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + this.selectionObj.nodes[nodeId].unselect(); + this._removeFromSelection(this.selectionObj.nodes[nodeId]); + } + } + } + + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } }; /** - * move the screen up - * By using the increments, instead of adding a fixed number to the translation, we keep fluent and - * instant movement. The onKeypress event triggers immediately, then pauses, then triggers frequently - * To avoid this behaviour, we do the translation in the start loop. + * return the number of selected nodes * + * @returns {number} * @private */ - exports._moveUp = function(event) { - this.yIncrement = this.constants.keyboard.speed.y; - this.start(); // if there is no node movement, the calculation wont be done + exports._getSelectedNodeCount = function() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + return count; }; - /** - * move the screen down + * return the selected node + * + * @returns {number} * @private */ - exports._moveDown = function(event) { - this.yIncrement = -this.constants.keyboard.speed.y; - this.start(); // if there is no node movement, the calculation wont be done + exports._getSelectedNode = function() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } + } + return null; }; - /** - * move the screen left + * return the selected edge + * + * @returns {number} * @private */ - exports._moveLeft = function(event) { - this.xIncrement = this.constants.keyboard.speed.x; - this.start(); // if there is no node movement, the calculation wont be done + exports._getSelectedEdge = function() { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return this.selectionObj.edges[edgeId]; + } + } + return null; }; /** - * move the screen right + * return the number of selected edges + * + * @returns {number} * @private */ - exports._moveRight = function(event) { - this.xIncrement = -this.constants.keyboard.speed.y; - this.start(); // if there is no node movement, the calculation wont be done + exports._getSelectedEdgeCount = function() { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; }; /** - * Zoom in, using the same method as the movement. + * return the number of selected objects. + * + * @returns {number} * @private */ - exports._zoomIn = function(event) { - this.zoomIncrement = this.constants.keyboard.speed.zoom; - this.start(); // if there is no node movement, the calculation wont be done + exports._getSelectedObjectCount = function() { + var count = 0; + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; }; - /** - * Zoom out + * Check if anything is selected + * + * @returns {boolean} * @private */ - exports._zoomOut = function() { - this.zoomIncrement = -this.constants.keyboard.speed.zoom; - this.start(); // if there is no node movement, the calculation wont be done - util.preventDefault(event); + exports._selectionIsEmpty = function() { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } + } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } + } + return true; }; /** - * Stop zooming and unhighlight the zoom controls + * check if one of the selected nodes is a cluster. + * + * @returns {boolean} * @private */ - exports._stopZoom = function() { - this.zoomIncrement = 0; + exports._clusterInSelection = function() { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + return true; + } + } + } + return false; }; - /** - * Stop moving in the Y direction and unHighlight the up and down + * select the edges connected to the node that is being selected + * + * @param {Node} node * @private */ - exports._yStopMoving = function() { - this.yIncrement = 0; + exports._selectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.select(); + this._addToSelection(edge); + } }; - /** - * Stop moving in the X direction and unHighlight left and right. + * select the edges connected to the node that is being selected + * + * @param {Node} node * @private */ - exports._xStopMoving = function() { - this.xIncrement = 0; + exports._hoverConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.hover = true; + this._addToHover(edge); + } }; -/***/ }, -/* 55 */ -/***/ function(module, exports, __webpack_require__) { - - exports._resetLevels = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.preassignedLevel == false) { - node.level = -1; - } - } + /** + * unselect the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + exports._unselectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.unselect(); + this._removeFromSelection(edge); } }; + + + /** - * This is the main function to layout the nodes in a hierarchical way. - * It checks if the node details are supplied correctly + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection * + * @param {Node || Edge} object + * @param {Boolean} append + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._setupHierarchicalLayout = function() { - if (this.constants.hierarchicalLayout.enabled == true && this.nodeIndices.length > 0) { - if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "DU") { - this.constants.hierarchicalLayout.levelSeparation *= -1; - } - else { - this.constants.hierarchicalLayout.levelSeparation = Math.abs(this.constants.hierarchicalLayout.levelSeparation); - } - - if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "LR") { - if (this.constants.smoothCurves.enabled == true) { - this.constants.smoothCurves.type = "vertical"; - } - } - else { - if (this.constants.smoothCurves.enabled == true) { - this.constants.smoothCurves.type = "horizontal"; - } - } - // get the size of the largest hubs and check if the user has defined a level for a node. - var hubsize = 0; - var node, nodeId; - var definedLevel = false; - var undefinedLevel = false; + exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + if (highlightEdges === undefined) { + highlightEdges = true; + } - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.level != -1) { - definedLevel = true; - } - else { - undefinedLevel = true; - } - if (hubsize < node.edges.length) { - hubsize = node.edges.length; - } - } - } + if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { + this._unselectAll(true); + } - // if the user defined some levels but not all, alert and run without hierarchical layout - if (undefinedLevel == true && definedLevel == true) { - alert("To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes."); - this.zoomExtent(true,this.constants.clustering.enabled); - if (!this.constants.clustering.enabled) { - this.start(); - } + if (object.selected == false) { + object.select(); + this._addToSelection(object); + if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { + this._selectConnectedEdges(object); } - else { - // setup the system to use hierarchical method. - this._changeConstants(); - - // define levels if undefined by the users. Based on hubsize - if (undefinedLevel == true) { - this._determineLevels(hubsize); - } - // check the distribution of the nodes per level. - var distribution = this._getDistribution(); - - // place the nodes on the canvas. This also stablilizes the system. - this._placeNodesByHierarchy(distribution); + } + else { + object.unselect(); + this._removeFromSelection(object); + } - // start the simulation. - this.start(); - } + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); } }; /** - * This function places the nodes on the canvas based on the hierarchial distribution. + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection * - * @param {Object} distribution | obtained by the function this._getDistribution() + * @param {Node || Edge} object * @private */ - exports._placeNodesByHierarchy = function(distribution) { - var nodeId, node; - - // start placing all the level 0 nodes first. Then recursively position their branches. - for (var level in distribution) { - if (distribution.hasOwnProperty(level)) { - - for (nodeId in distribution[level].nodes) { - if (distribution[level].nodes.hasOwnProperty(nodeId)) { - node = distribution[level].nodes[nodeId]; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - if (node.xFixed) { - node.x = distribution[level].minPos; - node.xFixed = false; - - distribution[level].minPos += distribution[level].nodeSpacing; - } - } - else { - if (node.yFixed) { - node.y = distribution[level].minPos; - node.yFixed = false; + exports._blurObject = function(object) { + if (object.hover == true) { + object.hover = false; + this.emit("blurNode",{node:object.id}); + } + }; - distribution[level].minPos += distribution[level].nodeSpacing; - } - } - this._placeBranchNodes(node.edges,node.id,distribution,node.level); - } - } + /** + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection + * + * @param {Node || Edge} object + * @private + */ + exports._hoverObject = function(object) { + if (object.hover == false) { + object.hover = true; + this._addToHover(object); + if (object instanceof Node) { + this.emit("hoverNode",{node:object.id}); } } - - // stabilize the system after positioning. This function calls zoomExtent. - this._stabilize(); + if (object instanceof Node) { + this._hoverConnectedEdges(object); + } }; /** - * This function get the distribution of levels based on hubsize + * handles the selection part of the touch, only for navigation controls elements; + * Touch is triggered before tap, also before hold. Hold triggers after a while. + * This is the most responsive solution * - * @returns {Object} + * @param {Object} pointer * @private */ - exports._getDistribution = function() { - var distribution = {}; - var nodeId, node, level; + exports._handleTouch = function(pointer) { + }; - // we fix Y because the hierarchy is vertical, we fix X so we do not give a node an x position for a second time. - // the fix of X is removed after the x value has been set. - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - node.xFixed = true; - node.yFixed = true; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - node.y = this.constants.hierarchicalLayout.levelSeparation*node.level; - } - else { - node.x = this.constants.hierarchicalLayout.levelSeparation*node.level; - } - if (distribution[node.level] === undefined) { - distribution[node.level] = {amount: 0, nodes: {}, minPos:0, nodeSpacing:0}; - } - distribution[node.level].amount += 1; - distribution[node.level].nodes[nodeId] = node; - } - } - // determine the largest amount of nodes of all levels - var maxCount = 0; - for (level in distribution) { - if (distribution.hasOwnProperty(level)) { - if (maxCount < distribution[level].amount) { - maxCount = distribution[level].amount; - } - } + /** + * handles the selection part of the tap; + * + * @param {Object} pointer + * @private + */ + exports._handleTap = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node,false); } - - // set the initial position and spacing of each nodes accordingly - for (level in distribution) { - if (distribution.hasOwnProperty(level)) { - distribution[level].nodeSpacing = (maxCount + 1) * this.constants.hierarchicalLayout.nodeSpacing; - distribution[level].nodeSpacing /= (distribution[level].amount + 1); - distribution[level].minPos = distribution[level].nodeSpacing - (0.5 * (distribution[level].amount + 1) * distribution[level].nodeSpacing); + else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,false); + } + else { + this._unselectAll(); } } - - return distribution; + this.emit("click", this.getSelection()); + this._redraw(); }; /** - * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * handles the selection part of the double tap and opens a cluster if needed * - * @param hubsize + * @param {Object} pointer * @private */ - exports._determineLevels = function(hubsize) { - var nodeId, node; - - // determine hubs - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.edges.length == hubsize) { - node.level = 0; - } - } + exports._handleDoubleTap = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null && node !== undefined) { + // we reset the areaCenter here so the opening of the node will occur + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; + this.openCluster(node); } + this.emit("doubleClick", this.getSelection()); + }; - // branch from hubs - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.level == 0) { - this._setLevel(1,node.edges,node.id); - } + + /** + * Handle the onHold selection part + * + * @param pointer + * @private + */ + exports._handleOnHold = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node,true); + } + else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,true); } } + this._redraw(); }; /** - * Since hierarchical layout does not support: - * - smooth curves (based on the physics), - * - clustering (based on dynamic node counts) - * - * We disable both features so there will be no problems. + * handle the onRelease event. These functions are here for the navigation controls module. * - * @private + * @private */ - exports._changeConstants = function() { - this.constants.clustering.enabled = false; - this.constants.physics.barnesHut.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = true; - this._loadSelectedForceSolver(); - if (this.constants.smoothCurves.enabled == true) { - this.constants.smoothCurves.dynamic = false; - } - this._configureSmoothCurves(); + exports._handleOnRelease = function(pointer) { + }; + /** - * This is a recursively called function to enumerate the branches from the largest hubs and place the nodes - * on a X position that ensures there will be no overlap. * - * @param edges - * @param parentId - * @param distribution - * @param parentLevel - * @private + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection */ - exports._placeBranchNodes = function(edges, parentId, distribution, parentLevel) { - for (var i = 0; i < edges.length; i++) { - var childNode = null; - if (edges[i].toId == parentId) { - childNode = edges[i].from; - } - else { - childNode = edges[i].to; - } - - // if a node is conneceted to another node on the same level (or higher (means lower level))!, this is not handled here. - var nodeMoved = false; - if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { - if (childNode.xFixed && childNode.level > parentLevel) { - childNode.xFixed = false; - childNode.x = distribution[childNode.level].minPos; - nodeMoved = true; - } - } - else { - if (childNode.yFixed && childNode.level > parentLevel) { - childNode.yFixed = false; - childNode.y = distribution[childNode.level].minPos; - nodeMoved = true; - } - } + exports.getSelection = function() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return {nodes:nodeIds, edges:edgeIds}; + }; - if (nodeMoved == true) { - distribution[childNode.level].minPos += distribution[childNode.level].nodeSpacing; - if (childNode.edges.length > 1) { - this._placeBranchNodes(childNode.edges,childNode.id,distribution,childNode.level); - } + /** + * + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. + */ + exports.getSelectedNodes = function() { + var idArray = []; + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); } } + return idArray }; - /** - * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. * - * @param level - * @param edges - * @param parentId - * @private + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. */ - exports._setLevel = function(level, edges, parentId) { - for (var i = 0; i < edges.length; i++) { - var childNode = null; - if (edges[i].toId == parentId) { - childNode = edges[i].from; - } - else { - childNode = edges[i].to; - } - if (childNode.level == -1 || childNode.level > level) { - childNode.level = level; - if (edges.length > 1) { - this._setLevel(level+1, childNode.edges, childNode.id); - } + exports.getSelectedEdges = function() { + var idArray = []; + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); } } + return idArray; }; /** - * Unfix nodes - * - * @private + * select zero or more nodes + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - exports._restoreNodes = function() { - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.nodes[nodeId].xFixed = false; - this.nodes[nodeId].yFixed = false; + exports.setSelection = function(selection) { + var i, iMax, id; + + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; + + // first unselect any selected node + this._unselectAll(true); + + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; + + var node = this.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); } + this._selectObject(node,true,true); } - }; + console.log("setSelection is deprecated. Please use selectNodes instead.") -/***/ }, -/* 56 */ -/***/ function(module, exports, __webpack_require__) { + this.redraw(); + }; - var util = __webpack_require__(1); - var RepulsionMixin = __webpack_require__(58); - var HierarchialRepulsionMixin = __webpack_require__(59); - var BarnesHutMixin = __webpack_require__(60); /** - * Toggling barnes Hut calculation on and off. - * - * @private + * select zero or more nodes with the option to highlight edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + * @param {boolean} [highlightEdges] */ - exports._toggleBarnesHut = function () { - this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; - this._loadSelectedForceSolver(); - this.moving = true; - this.start(); - }; + exports.selectNodes = function(selection, highlightEdges) { + var i, iMax, id; + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; - /** - * This loads the node force solver based on the barnes hut or repulsion algorithm - * - * @private - */ - exports._loadSelectedForceSolver = function () { - // this overloads the this._calculateNodeForces - if (this.constants.physics.barnesHut.enabled == true) { - this._clearMixin(RepulsionMixin); - this._clearMixin(HierarchialRepulsionMixin); + // first unselect any selected node + this._unselectAll(true); - this.constants.physics.centralGravity = this.constants.physics.barnesHut.centralGravity; - this.constants.physics.springLength = this.constants.physics.barnesHut.springLength; - this.constants.physics.springConstant = this.constants.physics.barnesHut.springConstant; - this.constants.physics.damping = this.constants.physics.barnesHut.damping; + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; - this._loadMixin(BarnesHutMixin); + var node = this.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); + } + this._selectObject(node,true,true,highlightEdges); } - else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._clearMixin(BarnesHutMixin); - this._clearMixin(RepulsionMixin); + this.redraw(); + }; - this.constants.physics.centralGravity = this.constants.physics.hierarchicalRepulsion.centralGravity; - this.constants.physics.springLength = this.constants.physics.hierarchicalRepulsion.springLength; - this.constants.physics.springConstant = this.constants.physics.hierarchicalRepulsion.springConstant; - this.constants.physics.damping = this.constants.physics.hierarchicalRepulsion.damping; - this._loadMixin(HierarchialRepulsionMixin); - } - else { - this._clearMixin(BarnesHutMixin); - this._clearMixin(HierarchialRepulsionMixin); - this.barnesHutTree = undefined; + /** + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + exports.selectEdges = function(selection) { + var i, iMax, id; - this.constants.physics.centralGravity = this.constants.physics.repulsion.centralGravity; - this.constants.physics.springLength = this.constants.physics.repulsion.springLength; - this.constants.physics.springConstant = this.constants.physics.repulsion.springConstant; - this.constants.physics.damping = this.constants.physics.repulsion.damping; + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; - this._loadMixin(RepulsionMixin); + // first unselect any selected node + this._unselectAll(true); + + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; + + var edge = this.edges[id]; + if (!edge) { + throw new RangeError('Edge with id "' + id + '" not found'); + } + this._selectObject(edge,true,true,highlightEdges); } + this.redraw(); }; /** - * Before calculating the forces, we check if we need to cluster to keep up performance and we check - * if there is more than one node. If it is just one node, we dont calculate anything. - * + * Validate the selection: remove ids of nodes which no longer exist * @private */ - exports._initializeForceCalculation = function () { - // stop calculation if there is only one node - if (this.nodeIndices.length == 1) { - this.nodes[this.nodeIndices[0]]._setForce(0, 0); + exports._updateSelection = function () { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (!this.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; + } + } } - else { - // if there are too many nodes on screen, we cluster without repositioning - if (this.nodeIndices.length > this.constants.clustering.clusterThreshold && this.constants.clustering.enabled == true) { - this.clusterToFit(this.constants.clustering.reduceToNodes, false); + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; + } } - - // we now start the force calculation - this._calculateForces(); } }; +/***/ }, +/* 58 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var Node = __webpack_require__(47); + var Edge = __webpack_require__(48); + /** - * Calculate the external forces acting on the nodes - * Forces are caused by: edges, repulsing forces between nodes, gravity + * clears the toolbar div element of children + * * @private */ - exports._calculateForces = function () { - // Gravity is required to keep separated groups from floating off - // the forces are reset to zero in this loop by using _setForce instead - // of _addForce - - this._calculateGravitationalForces(); - this._calculateNodeForces(); - - if (this.constants.physics.springConstant > 0) { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._calculateSpringForcesWithSupport(); - } - else { - if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._calculateHierarchicalSpringForces(); - } - else { - this._calculateSpringForces(); - } - } + exports._clearManipulatorBar = function() { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); } }; - /** - * Smooth curves are created by adding invisible nodes in the center of the edges. These nodes are also - * handled in the calculateForces function. We then use a quadratic curve with the center node as control. - * This function joins the datanodes and invisible (called support) nodes into one object. - * We do this so we do not contaminate this.nodes with the support nodes. + * Manipulation UI temporarily overloads certain functions to extend or replace them. To be able to restore + * these functions to their original functionality, we saved them in this.cachedFunctions. + * This function restores these functions to their original function. * * @private */ - exports._updateCalculationNodes = function () { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this.calculationNodes = {}; - this.calculationNodeIndices = []; - - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId] = this.nodes[nodeId]; - } - } - var supportNodes = this.sectors['support']['nodes']; - for (var supportNodeId in supportNodes) { - if (supportNodes.hasOwnProperty(supportNodeId)) { - if (this.edges.hasOwnProperty(supportNodes[supportNodeId].parentEdgeId)) { - this.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; - } - else { - supportNodes[supportNodeId]._setForce(0, 0); - } - } - } - - for (var idx in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(idx)) { - this.calculationNodeIndices.push(idx); - } + exports._restoreOverloadedFunctions = function() { + for (var functionName in this.cachedFunctions) { + if (this.cachedFunctions.hasOwnProperty(functionName)) { + this[functionName] = this.cachedFunctions[functionName]; } } - else { - this.calculationNodes = this.nodes; - this.calculationNodeIndices = this.nodeIndices; - } }; - /** - * this function applies the central gravity effect to keep groups from floating off + * Enable or disable edit-mode. * * @private */ - exports._calculateGravitationalForces = function () { - var dx, dy, distance, node, i; - var nodes = this.calculationNodes; - var gravity = this.constants.physics.centralGravity; - var gravityForce = 0; - - for (i = 0; i < this.calculationNodeIndices.length; i++) { - node = nodes[this.calculationNodeIndices[i]]; - node.damping = this.constants.physics.damping; // possibly add function to alter damping properties of clusters. - // gravity does not apply when we are in a pocket sector - if (this._sector() == "default" && gravity != 0) { - dx = -node.x; - dy = -node.y; - distance = Math.sqrt(dx * dx + dy * dy); - - gravityForce = (distance == 0) ? 0 : (gravity / distance); - node.fx = dx * gravityForce; - node.fy = dy * gravityForce; - } - else { - node.fx = 0; - node.fy = 0; - } + exports._toggleEditMode = function() { + this.editMode = !this.editMode; + var toolbar = document.getElementById("network-manipulationDiv"); + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + var editModeDiv = document.getElementById("network-manipulation-editMode"); + if (this.editMode == true) { + toolbar.style.display="block"; + closeDiv.style.display="block"; + editModeDiv.style.display="none"; + closeDiv.onclick = this._toggleEditMode.bind(this); + } + else { + toolbar.style.display="none"; + closeDiv.style.display="none"; + editModeDiv.style.display="block"; + closeDiv.onclick = null; } + this._createManipulatorBar() }; - - - /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. * * @private */ - exports._calculateSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; - - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - edgeLength = edge.physics.springLength; - // this implies that the edges between big clusters are longer - edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; + exports._createManipulatorBar = function() { + // remove bound functions + if (this.boundFunction) { + this.off('select', this.boundFunction); + } - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); + if (this.edgeBeingEdited !== undefined) { + this.edgeBeingEdited._disableControlNodes(); + this.edgeBeingEdited = undefined; + this.selectedControlNode = null; + this.controlNodesActive = false; + } - if (distance == 0) { - distance = 0.01; - } + // restore overloaded functions + this._restoreOverloadedFunctions(); - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + // resume calculation + this.freezeSimulation = false; - fx = dx * springForce; - fy = dy * springForce; + // reset global variables + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; - edge.from.fx += fx; - edge.from.fy += fy; - edge.to.fx -= fx; - edge.to.fy -= fy; - } - } + if (this.editMode == true) { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } + // add the icons to the manipulator div + this.manipulationDiv.innerHTML = "" + + "" + + ""+this.constants.labels['add'] +"" + + "
" + + "" + + ""+this.constants.labels['link'] +""; + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['editNode'] +""; + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['editEdge'] +""; + } + if (this._selectionIsEmpty() == false) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+this.constants.labels['del'] +""; } - } - }; - - - /** - * This function calculates the springforces on the nodes, accounting for the support nodes. - * - * @private - */ - exports._calculateSpringForcesWithSupport = function () { - var edgeLength, edge, edgeId, combinedClusterSize; - var edges = this.edges; + // bind the icons + var addNodeButton = document.getElementById("network-manipulate-addNode"); + addNodeButton.onclick = this._createAddNodeToolbar.bind(this); + var addEdgeButton = document.getElementById("network-manipulate-connectNode"); + addEdgeButton.onclick = this._createAddEdgeToolbar.bind(this); + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + var editButton = document.getElementById("network-manipulate-editNode"); + editButton.onclick = this._editNode.bind(this); + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + var editButton = document.getElementById("network-manipulate-editEdge"); + editButton.onclick = this._createEditEdgeToolbar.bind(this); + } + if (this._selectionIsEmpty() == false) { + var deleteButton = document.getElementById("network-manipulate-delete"); + deleteButton.onclick = this._deleteSelected.bind(this); + } + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + closeDiv.onclick = this._toggleEditMode.bind(this); - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - if (edge.via != null) { - var node1 = edge.to; - var node2 = edge.via; - var node3 = edge.from; + this.boundFunction = this._createManipulatorBar.bind(this); + this.on('select', this.boundFunction); + } + else { + this.editModeDiv.innerHTML = "" + + "" + + "" + this.constants.labels['edit'] + ""; + var editModeButton = document.getElementById("network-manipulate-editModeButton"); + editModeButton.onclick = this._toggleEditMode.bind(this); + } + }; - edgeLength = edge.physics.springLength; - combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; - // this implies that the edges between big clusters are longer - edgeLength += combinedClusterSize * this.constants.clustering.edgeGrowth; - this._calculateSpringForce(node1, node2, 0.5 * edgeLength); - this._calculateSpringForce(node2, node3, 0.5 * edgeLength); - } - } - } - } + /** + * Create the toolbar for adding Nodes + * + * @private + */ + exports._createAddNodeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + if (this.boundFunction) { + this.off('select', this.boundFunction); } + + // create the toolbar contents + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['addDescription'] + ""; + + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); + + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._addNode.bind(this); + this.on('select', this.boundFunction); }; /** - * This is the code actually performing the calculation for the function above. It is split out to avoid repetition. + * create the toolbar to connect nodes * - * @param node1 - * @param node2 - * @param edgeLength * @private */ - exports._calculateSpringForce = function (node1, node2, edgeLength) { - var dx, dy, fx, fy, springForce, distance; - - dx = (node1.x - node2.x); - dy = (node1.y - node2.y); - distance = Math.sqrt(dx * dx + dy * dy); + exports._createAddEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this._unselectAll(true); + this.freezeSimulation = true; - if (distance == 0) { - distance = 0.01; + if (this.boundFunction) { + this.off('select', this.boundFunction); } - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + this._unselectAll(); + this.forceAppendSelection = false; + this.blockConnectingEdgeSelection = true; - fx = dx * springForce; - fy = dy * springForce; + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['linkDescription'] + ""; - node1.fx += fx; - node1.fy += fy; - node2.fx -= fx; - node2.fy -= fy; - }; + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); + + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._handleConnect.bind(this); + this.on('select', this.boundFunction); + + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this._handleTouch = this._handleConnect; + this._handleOnRelease = this._finishConnect; + // redraw to show the unselect + this._redraw(); + }; /** - * Load the HTML for the physics config and bind it + * create the toolbar to edit edges + * * @private */ - exports._loadPhysicsConfiguration = function () { - if (this.physicsConfiguration === undefined) { - this.backupConstants = {}; - util.deepExtend(this.backupConstants,this.constants); + exports._createEditEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this.controlNodesActive = true; - var hierarchicalLayoutDirections = ["LR", "RL", "UD", "DU"]; - this.physicsConfiguration = document.createElement('div'); - this.physicsConfiguration.className = "PhysicsConfiguration"; - this.physicsConfiguration.innerHTML = '' + - '' + - '' + - '' + - '' + - '' + - '' + - '
Simulation Mode:
Barnes HutRepulsionHierarchical
' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '
Options:
' - this.containerElement.parentElement.insertBefore(this.physicsConfiguration, this.containerElement); - this.optionsDiv = document.createElement("div"); - this.optionsDiv.style.fontSize = "14px"; - this.optionsDiv.style.fontFamily = "verdana"; - this.containerElement.parentElement.insertBefore(this.optionsDiv, this.containerElement); + if (this.boundFunction) { + this.off('select', this.boundFunction); + } - var rangeElement; - rangeElement = document.getElementById('graph_BH_gc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_gc', -1, "physics_barnesHut_gravitationalConstant"); - rangeElement = document.getElementById('graph_BH_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_BH_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_BH_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_BH_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_BH_damp', 1, "physics_damping"); + this.edgeBeingEdited = this._getSelectedEdge(); + this.edgeBeingEdited._enableControlNodes(); - rangeElement = document.getElementById('graph_R_nd'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_nd', 1, "physics_repulsion_nodeDistance"); - rangeElement = document.getElementById('graph_R_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_R_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_R_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_R_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_R_damp', 1, "physics_damping"); + this.manipulationDiv.innerHTML = "" + + "" + + "" + this.constants.labels['back'] + " " + + "
" + + "" + + "" + this.constants.labels['editEdgeDescription'] + ""; - rangeElement = document.getElementById('graph_H_nd'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); - rangeElement = document.getElementById('graph_H_cg'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_cg', 1, "physics_centralGravity"); - rangeElement = document.getElementById('graph_H_sc'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sc', 1, "physics_springConstant"); - rangeElement = document.getElementById('graph_H_sl'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_sl', 1, "physics_springLength"); - rangeElement = document.getElementById('graph_H_damp'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_damp', 1, "physics_damping"); - rangeElement = document.getElementById('graph_H_direction'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_direction', hierarchicalLayoutDirections, "hierarchicalLayout_direction"); - rangeElement = document.getElementById('graph_H_levsep'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_levsep', 1, "hierarchicalLayout_levelSeparation"); - rangeElement = document.getElementById('graph_H_nspac'); - rangeElement.onchange = showValueOfRange.bind(this, 'graph_H_nspac', 1, "hierarchicalLayout_nodeSpacing"); + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); - var radioButton1 = document.getElementById("graph_physicsMethod1"); - var radioButton2 = document.getElementById("graph_physicsMethod2"); - var radioButton3 = document.getElementById("graph_physicsMethod3"); - radioButton2.checked = true; - if (this.constants.physics.barnesHut.enabled) { - radioButton1.checked = true; - } - if (this.constants.hierarchicalLayout.enabled) { - radioButton3.checked = true; - } + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this.cachedFunctions["_handleTap"] = this._handleTap; + this.cachedFunctions["_handleDragStart"] = this._handleDragStart; + this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; + this._handleTouch = this._selectControlNode; + this._handleTap = function () {}; + this._handleOnDrag = this._controlNodeDrag; + this._handleDragStart = function () {} + this._handleOnRelease = this._releaseControlNode; - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - var graph_repositionNodes = document.getElementById("graph_repositionNodes"); - var graph_generateOptions = document.getElementById("graph_generateOptions"); + // redraw to show the unselect + this._redraw(); + }; - graph_toggleSmooth.onclick = graphToggleSmoothCurves.bind(this); - graph_repositionNodes.onclick = graphRepositionNodes.bind(this); - graph_generateOptions.onclick = graphGenerateOptions.bind(this); - if (this.constants.smoothCurves == true && this.constants.dynamicSmoothCurves == false) { - graph_toggleSmooth.style.background = "#A4FF56"; - } - else { - graph_toggleSmooth.style.background = "#FF8532"; - } - switchConfigurations.apply(this); - radioButton1.onchange = switchConfigurations.bind(this); - radioButton2.onchange = switchConfigurations.bind(this); - radioButton3.onchange = switchConfigurations.bind(this); - } - }; /** - * This overwrites the this.constants. + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * - * @param constantsVariableName - * @param value * @private */ - exports._overWriteGraphConstants = function (constantsVariableName, value) { - var nameArray = constantsVariableName.split("_"); - if (nameArray.length == 1) { - this.constants[nameArray[0]] = value; - } - else if (nameArray.length == 2) { - this.constants[nameArray[0]][nameArray[1]] = value; - } - else if (nameArray.length == 3) { - this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; + exports._selectControlNode = function(pointer) { + this.edgeBeingEdited.controlNodes.from.unselect(); + this.edgeBeingEdited.controlNodes.to.unselect(); + this.selectedControlNode = this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(pointer.x),this._YconvertDOMtoCanvas(pointer.y)); + if (this.selectedControlNode !== null) { + this.selectedControlNode.select(); + this.freezeSimulation = true; } + this._redraw(); }; - - /** - * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. - */ - function graphToggleSmoothCurves () { - this.constants.smoothCurves.enabled = !this.constants.smoothCurves.enabled; - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} - else {graph_toggleSmooth.style.background = "#FF8532";} - - this._configureSmoothCurves(false); - } - /** - * this function is used to scramble the nodes + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * + * @private */ - function graphRepositionNodes () { - for (var nodeId in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId].vx = 0; this.calculationNodes[nodeId].vy = 0; - this.calculationNodes[nodeId].fx = 0; this.calculationNodes[nodeId].fy = 0; - } + exports._controlNodeDrag = function(event) { + var pointer = this._getPointer(event.gesture.center); + if (this.selectedControlNode !== null && this.selectedControlNode !== undefined) { + this.selectedControlNode.x = this._XconvertDOMtoCanvas(pointer.x); + this.selectedControlNode.y = this._YconvertDOMtoCanvas(pointer.y); } - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); - showValueOfRange.call(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); - showValueOfRange.call(this, 'graph_H_cg', 1, "physics_centralGravity"); - showValueOfRange.call(this, 'graph_H_sc', 1, "physics_springConstant"); - showValueOfRange.call(this, 'graph_H_sl', 1, "physics_springLength"); - showValueOfRange.call(this, 'graph_H_damp', 1, "physics_damping"); + this._redraw(); + }; + + exports._releaseControlNode = function(pointer) { + var newNode = this._getNodeAt(pointer); + if (newNode != null) { + if (this.edgeBeingEdited.controlNodes.from.selected == true) { + this._editEdge(newNode.id, this.edgeBeingEdited.to.id); + this.edgeBeingEdited.controlNodes.from.unselect(); + } + if (this.edgeBeingEdited.controlNodes.to.selected == true) { + this._editEdge(this.edgeBeingEdited.from.id, newNode.id); + this.edgeBeingEdited.controlNodes.to.unselect(); + } } else { - this.repositionNodes(); + this.edgeBeingEdited._restoreControlNodes(); } - this.moving = true; - this.start(); - } + this.freezeSimulation = false; + this._redraw(); + }; /** - * this is used to generate an options file from the playing with physics system. + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. + * + * @private */ - function graphGenerateOptions () { - var options = "No options are required, default values used."; - var optionsSpecific = []; - var radioButton1 = document.getElementById("graph_physicsMethod1"); - var radioButton2 = document.getElementById("graph_physicsMethod2"); - if (radioButton1.checked == true) { - if (this.constants.physics.barnesHut.gravitationalConstant != this.backupConstants.physics.barnesHut.gravitationalConstant) {optionsSpecific.push("gravitationalConstant: " + this.constants.physics.barnesHut.gravitationalConstant);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.barnesHut.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.barnesHut.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.barnesHut.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.barnesHut.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options = "var options = {"; - options += "physics: {barnesHut: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } + exports._handleConnect = function(pointer) { + if (this._getSelectedNodeCount() == 0) { + var node = this._getNodeAt(pointer); + if (node != null) { + if (node.clusterSize > 1) { + alert("Cannot create edges to a cluster.") + } + else { + this._selectObject(node,false); + // create a node the temporary line can look at + this.sectors['support']['nodes']['targetNode'] = new Node({id:'targetNode'},{},{},this.constants); + this.sectors['support']['nodes']['targetNode'].x = node.x; + this.sectors['support']['nodes']['targetNode'].y = node.y; + this.sectors['support']['nodes']['targetViaNode'] = new Node({id:'targetViaNode'},{},{},this.constants); + this.sectors['support']['nodes']['targetViaNode'].x = node.x; + this.sectors['support']['nodes']['targetViaNode'].y = node.y; + this.sectors['support']['nodes']['targetViaNode'].parentEdgeId = "connectionEdge"; + + // create a temporary edge + this.edges['connectionEdge'] = new Edge({id:"connectionEdge",from:node.id,to:this.sectors['support']['nodes']['targetNode'].id}, this, this.constants); + this.edges['connectionEdge'].from = node; + this.edges['connectionEdge'].connected = true; + this.edges['connectionEdge'].smooth = true; + this.edges['connectionEdge'].selected = true; + this.edges['connectionEdge'].to = this.sectors['support']['nodes']['targetNode']; + this.edges['connectionEdge'].via = this.sectors['support']['nodes']['targetViaNode']; + + this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; + this._handleOnDrag = function(event) { + var pointer = this._getPointer(event.gesture.center); + this.sectors['support']['nodes']['targetNode'].x = this._XconvertDOMtoCanvas(pointer.x); + this.sectors['support']['nodes']['targetNode'].y = this._YconvertDOMtoCanvas(pointer.y); + this.sectors['support']['nodes']['targetViaNode'].x = 0.5 * (this._XconvertDOMtoCanvas(pointer.x) + this.edges['connectionEdge'].from.x); + this.sectors['support']['nodes']['targetViaNode'].y = this._YconvertDOMtoCanvas(pointer.y); + }; + + this.moving = true; + this.start(); } - options += '}}' - } - if (this.constants.smoothCurves.enabled != this.backupConstants.smoothCurves.enabled) { - if (optionsSpecific.length == 0) {options = "var options = {";} - else {options += ", "} - options += "smoothCurves: " + this.constants.smoothCurves.enabled; - } - if (options != "No options are required, default values used.") { - options += '};' } } - else if (radioButton2.checked == true) { - options = "var options = {"; - options += "physics: {barnesHut: {enabled: false}"; - if (this.constants.physics.repulsion.nodeDistance != this.backupConstants.physics.repulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.repulsion.nodeDistance);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.repulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.repulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.repulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.repulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options += ", repulsion: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } + }; + + exports._finishConnect = function(pointer) { + if (this._getSelectedNodeCount() == 1) { + + // restore the drag function + this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; + delete this.cachedFunctions["_handleOnDrag"]; + + // remember the edge id + var connectFromId = this.edges['connectionEdge'].fromId; + + // remove the temporary nodes and edge + delete this.edges['connectionEdge']; + delete this.sectors['support']['nodes']['targetNode']; + delete this.sectors['support']['nodes']['targetViaNode']; + + var node = this._getNodeAt(pointer); + if (node != null) { + if (node.clusterSize > 1) { + alert("Cannot create edges to a cluster.") + } + else { + this._createEdge(connectFromId,node.id); + this._createManipulatorBar(); } - options += '}}' - } - if (optionsSpecific.length == 0) {options += "}"} - if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { - options += ", smoothCurves: " + this.constants.smoothCurves; } - options += '};' + this._unselectAll(); } - else { - options = "var options = {"; - if (this.constants.physics.hierarchicalRepulsion.nodeDistance != this.backupConstants.physics.hierarchicalRepulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.hierarchicalRepulsion.nodeDistance);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.hierarchicalRepulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.hierarchicalRepulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.hierarchicalRepulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.hierarchicalRepulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options += "physics: {hierarchicalRepulsion: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", "; - } + }; + + + /** + * Adds a node on the specified location + */ + exports._addNode = function() { + if (this._selectionIsEmpty() && this.editMode == true) { + var positionObject = this._pointerToPositionObject(this.pointerPosition); + var defaultData = {id:util.randomUUID(),x:positionObject.left,y:positionObject.top,label:"new",allowedToMoveX:true,allowedToMoveY:true}; + if (this.triggerFunctions.add) { + if (this.triggerFunctions.add.length == 2) { + var me = this; + this.triggerFunctions.add(defaultData, function(finalizedData) { + me.nodesData.add(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); } - options += '}},'; - } - options += 'hierarchicalLayout: {'; - optionsSpecific = []; - if (this.constants.hierarchicalLayout.direction != this.backupConstants.hierarchicalLayout.direction) {optionsSpecific.push("direction: " + this.constants.hierarchicalLayout.direction);} - if (Math.abs(this.constants.hierarchicalLayout.levelSeparation) != this.backupConstants.hierarchicalLayout.levelSeparation) {optionsSpecific.push("levelSeparation: " + this.constants.hierarchicalLayout.levelSeparation);} - if (this.constants.hierarchicalLayout.nodeSpacing != this.backupConstants.hierarchicalLayout.nodeSpacing) {optionsSpecific.push("nodeSpacing: " + this.constants.hierarchicalLayout.nodeSpacing);} - if (optionsSpecific.length != 0) { - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } + else { + alert(this.constants.labels['addError']); + this._createManipulatorBar(); + this.moving = true; + this.start(); } - options += '}' } else { - options += "enabled:true}"; + this.nodesData.add(defaultData); + this._createManipulatorBar(); + this.moving = true; + this.start(); } - options += '};' } + }; - this.optionsDiv.innerHTML = options; - } - /** - * this is used to switch between barnesHut, repulsion and hierarchical. + * connect two nodes with a new edge. * + * @private */ - function switchConfigurations () { - var ids = ["graph_BH_table", "graph_R_table", "graph_H_table"]; - var radioButton = document.querySelector('input[name="graph_physicsMethod"]:checked').value; - var tableId = "graph_" + radioButton + "_table"; - var table = document.getElementById(tableId); - table.style.display = "block"; - for (var i = 0; i < ids.length; i++) { - if (ids[i] != tableId) { - table = document.getElementById(ids[i]); - table.style.display = "none"; + exports._createEdge = function(sourceNodeId,targetNodeId) { + if (this.editMode == true) { + var defaultData = {from:sourceNodeId, to:targetNodeId}; + if (this.triggerFunctions.connect) { + if (this.triggerFunctions.connect.length == 2) { + var me = this; + this.triggerFunctions.connect(defaultData, function(finalizedData) { + me.edgesData.add(finalizedData); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["linkError"]); + this.moving = true; + this.start(); + } } - } - this._restoreNodes(); - if (radioButton == "R") { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = false; - } - else if (radioButton == "H") { - if (this.constants.hierarchicalLayout.enabled == false) { - this.constants.hierarchicalLayout.enabled = true; - this.constants.physics.hierarchicalRepulsion.enabled = true; - this.constants.physics.barnesHut.enabled = false; - this.constants.smoothCurves.enabled = false; - this._setupHierarchicalLayout(); + else { + this.edgesData.add(defaultData); + this.moving = true; + this.start(); } } - else { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = true; - } - this._loadSelectedForceSolver(); - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} - else {graph_toggleSmooth.style.background = "#FF8532";} - this.moving = true; - this.start(); - } - + }; /** - * this generates the ranges depending on the iniital values. + * connect two nodes with a new edge. * - * @param id - * @param map - * @param constantsVariableName + * @private */ - function showValueOfRange (id,map,constantsVariableName) { - var valueId = id + "_value"; - var rangeValue = document.getElementById(id).value; + exports._editEdge = function(sourceNodeId,targetNodeId) { + if (this.editMode == true) { + var defaultData = {id: this.edgeBeingEdited.id, from:sourceNodeId, to:targetNodeId}; + if (this.triggerFunctions.editEdge) { + if (this.triggerFunctions.editEdge.length == 2) { + var me = this; + this.triggerFunctions.editEdge(defaultData, function(finalizedData) { + me.edgesData.update(finalizedData); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["linkError"]); + this.moving = true; + this.start(); + } + } + else { + this.edgesData.update(defaultData); + this.moving = true; + this.start(); + } + } + }; - if (map instanceof Array) { - document.getElementById(valueId).value = map[parseInt(rangeValue)]; - this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); + /** + * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. + * + * @private + */ + exports._editNode = function() { + if (this.triggerFunctions.edit && this.editMode == true) { + var node = this._getSelectedNode(); + var data = {id:node.id, + label: node.label, + group: node.options.group, + shape: node.options.shape, + color: { + background:node.options.color.background, + border:node.options.color.border, + highlight: { + background:node.options.color.highlight.background, + border:node.options.color.highlight.border + } + }}; + if (this.triggerFunctions.edit.length == 2) { + var me = this; + this.triggerFunctions.edit(data, function (finalizedData) { + me.nodesData.update(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["editError"]); + } } else { - document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); - this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); - } - - if (constantsVariableName == "hierarchicalLayout_direction" || - constantsVariableName == "hierarchicalLayout_levelSeparation" || - constantsVariableName == "hierarchicalLayout_nodeSpacing") { - this._setupHierarchicalLayout(); + alert(this.constants.labels["editBoundError"]); } - this.moving = true; - this.start(); - } - - -/***/ }, -/* 57 */ -/***/ function(module, exports, __webpack_require__) { - - var map = {}; - function webpackContext(req) { - return __webpack_require__(webpackContextResolve(req)); - }; - function webpackContextResolve(req) { - return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }()); - }; - webpackContext.keys = function webpackContextKeys() { - return Object.keys(map); }; - webpackContext.resolve = webpackContextResolve; - module.exports = webpackContext; -/***/ }, -/* 58 */ -/***/ function(module, exports, __webpack_require__) { + /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. + * delete everything in the selection * * @private */ - exports._calculateNodeForces = function () { - var dx, dy, angle, distance, fx, fy, combinedClusterSize, - repulsingForce, node1, node2, i, j; - - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - - // approximation constants - var a_base = -2 / 3; - var b = 4 / 3; - - // repulsing forces between nodes - var nodeDistance = this.constants.physics.repulsion.nodeDistance; - var minimumDistance = nodeDistance; - - // we loop from i over all but the last entree in the array - // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j - for (i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; - combinedClusterSize = node1.clusterSize + node2.clusterSize - 2; - - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); - - minimumDistance = (combinedClusterSize == 0) ? nodeDistance : (nodeDistance * (1 + combinedClusterSize * this.constants.clustering.distanceAmplification)); - var a = a_base / minimumDistance; - if (distance < 2 * minimumDistance) { - if (distance < 0.5 * minimumDistance) { - repulsingForce = 1.0; - } - else { - repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / minimumDistance - 1) * steepness)) - } - - // amplify the repulsion for clusters. - repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; - repulsingForce = repulsingForce / distance; - - fx = dx * repulsingForce; - fy = dy * repulsingForce; - - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; + exports._deleteSelected = function() { + if (!this._selectionIsEmpty() && this.editMode == true) { + if (!this._clusterInSelection()) { + var selectedNodes = this.getSelectedNodes(); + var selectedEdges = this.getSelectedEdges(); + if (this.triggerFunctions.del) { + var me = this; + var data = {nodes: selectedNodes, edges: selectedEdges}; + if (this.triggerFunctions.del.length = 2) { + this.triggerFunctions.del(data, function (finalizedData) { + me.edgesData.remove(finalizedData.edges); + me.nodesData.remove(finalizedData.nodes); + me._unselectAll(); + me.moving = true; + me.start(); + }); + } + else { + alert(this.constants.labels["deleteError"]) + } + } + else { + this.edgesData.remove(selectedEdges); + this.nodesData.remove(selectedNodes); + this._unselectAll(); + this.moving = true; + this.start(); } } + else { + alert(this.constants.labels["deleteClusterError"]); + } } }; @@ -30256,579 +30139,713 @@ return /******/ (function(modules) { // webpackBootstrap /* 59 */ /***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(1); + var Hammer = __webpack_require__(18); + + exports._cleanNavigation = function() { + // clean up previous navigation items + var wrapper = document.getElementById('network-navigation_wrapper'); + if (wrapper != null) { + this.containerElement.removeChild(wrapper); + } + document.onmouseup = null; + }; + /** - * Calculate the forces the nodes apply on eachother based on a repulsion field. - * This field is linearly approximated. + * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation + * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent + * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. + * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. * * @private */ - exports._calculateNodeForces = function () { - var dx, dy, distance, fx, fy, - repulsingForce, node1, node2, i, j; - - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - - // repulsing forces between nodes - var nodeDistance = this.constants.physics.hierarchicalRepulsion.nodeDistance; - - // we loop from i over all but the last entree in the array - // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j - for (i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; - - // nodes only affect nodes on their level - if (node1.level == node2.level) { - - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + exports._loadNavigationElements = function() { + this._cleanNavigation(); + this.navigationDivs = {}; + var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; + var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; - var steepness = 0.05; - if (distance < nodeDistance) { - repulsingForce = -Math.pow(steepness*distance,2) + Math.pow(steepness*nodeDistance,2); - } - else { - repulsingForce = 0; - } - // normalize force with - if (distance == 0) { - distance = 0.01; - } - else { - repulsingForce = repulsingForce / distance; - } - fx = dx * repulsingForce; - fy = dy * repulsingForce; + this.navigationDivs['wrapper'] = document.createElement('div'); + this.navigationDivs['wrapper'].id = "network-navigation_wrapper"; + this.navigationDivs['wrapper'].style.position = "absolute"; + this.navigationDivs['wrapper'].style.width = this.frame.canvas.clientWidth + "px"; + this.navigationDivs['wrapper'].style.height = this.frame.canvas.clientHeight + "px"; + this.containerElement.insertBefore(this.navigationDivs['wrapper'],this.frame); - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; - } - } + var me = this; + for (var i = 0; i < navigationDivs.length; i++) { + this.navigationDivs[navigationDivs[i]] = document.createElement('div'); + this.navigationDivs[navigationDivs[i]].id = "network-navigation_" + navigationDivs[i]; + this.navigationDivs[navigationDivs[i]].className = "network-navigation " + navigationDivs[i]; + this.navigationDivs['wrapper'].appendChild(this.navigationDivs[navigationDivs[i]]); + var hammer = Hammer(this.navigationDivs[navigationDivs[i]], {prevent_default: true}); + hammer.on("touch", me[navigationDivActions[i]].bind(me)); } + var hammer = Hammer(document, {prevent_default: false}); + hammer.on("release", me._stopMovement.bind(me)); }; - /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * this stops all movement induced by the navigation buttons * * @private */ - exports._calculateHierarchicalSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; + exports._stopMovement = function() { + this._xStopMoving(); + this._yStopMoving(); + this._stopZoom(); + }; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; + + /** + * move the screen up + * By using the increments, instead of adding a fixed number to the translation, we keep fluent and + * instant movement. The onKeypress event triggers immediately, then pauses, then triggers frequently + * To avoid this behaviour, we do the translation in the start loop. + * + * @private + */ + exports._moveUp = function(event) { + this.yIncrement = this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done + }; - for (var i = 0; i < nodeIndices.length; i++) { - var node1 = nodes[nodeIndices[i]]; - node1.springFx = 0; - node1.springFy = 0; - } + /** + * move the screen down + * @private + */ + exports._moveDown = function(event) { + this.yIncrement = -this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done + }; - // forces caused by the edges, modelled as springs - for (edgeId in edges) { - if (edges.hasOwnProperty(edgeId)) { - edge = edges[edgeId]; - if (edge.connected) { - // only calculate forces if nodes are in the same sector - if (this.nodes.hasOwnProperty(edge.toId) && this.nodes.hasOwnProperty(edge.fromId)) { - edgeLength = edge.physics.springLength; - // this implies that the edges between big clusters are longer - edgeLength += (edge.to.clusterSize + edge.from.clusterSize - 2) * this.constants.clustering.edgeGrowth; + /** + * move the screen left + * @private + */ + exports._moveLeft = function(event) { + this.xIncrement = this.constants.keyboard.speed.x; + this.start(); // if there is no node movement, the calculation wont be done + }; - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); - if (distance == 0) { - distance = 0.01; - } + /** + * move the screen right + * @private + */ + exports._moveRight = function(event) { + this.xIncrement = -this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done + }; - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - fx = dx * springForce; - fy = dy * springForce; + /** + * Zoom in, using the same method as the movement. + * @private + */ + exports._zoomIn = function(event) { + this.zoomIncrement = this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + }; + /** + * Zoom out + * @private + */ + exports._zoomOut = function() { + this.zoomIncrement = -this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + util.preventDefault(event); + }; - if (edge.to.level != edge.from.level) { - edge.to.springFx -= fx; - edge.to.springFy -= fy; - edge.from.springFx += fx; - edge.from.springFy += fy; - } - else { - var factor = 0.5; - edge.to.fx -= factor*fx; - edge.to.fy -= factor*fy; - edge.from.fx += factor*fx; - edge.from.fy += factor*fy; - } - } - } - } - } - // normalize spring forces - var springForce = 1; - var springFx, springFy; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - springFx = Math.min(springForce,Math.max(-springForce,node.springFx)); - springFy = Math.min(springForce,Math.max(-springForce,node.springFy)); + /** + * Stop zooming and unhighlight the zoom controls + * @private + */ + exports._stopZoom = function() { + this.zoomIncrement = 0; + }; - node.fx += springFx; - node.fy += springFy; - } - // retain energy balance - var totalFx = 0; - var totalFy = 0; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - totalFx += node.fx; - totalFy += node.fy; - } - var correctionFx = totalFx / nodeIndices.length; - var correctionFy = totalFy / nodeIndices.length; + /** + * Stop moving in the Y direction and unHighlight the up and down + * @private + */ + exports._yStopMoving = function() { + this.yIncrement = 0; + }; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - node.fx -= correctionFx; - node.fy -= correctionFy; - } + /** + * Stop moving in the X direction and unHighlight left and right. + * @private + */ + exports._xStopMoving = function() { + this.xIncrement = 0; }; + /***/ }, /* 60 */ /***/ function(module, exports, __webpack_require__) { + exports._resetLevels = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.preassignedLevel == false) { + node.level = -1; + } + } + } + }; + /** - * This function calculates the forces the nodes apply on eachother based on a gravitational model. - * The Barnes Hut method is used to speed up this N-body simulation. + * This is the main function to layout the nodes in a hierarchical way. + * It checks if the node details are supplied correctly * * @private */ - exports._calculateNodeForces = function() { - if (this.constants.physics.barnesHut.gravitationalConstant != 0) { - var node; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - var nodeCount = nodeIndices.length; + exports._setupHierarchicalLayout = function() { + if (this.constants.hierarchicalLayout.enabled == true && this.nodeIndices.length > 0) { + if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "DU") { + this.constants.hierarchicalLayout.levelSeparation *= -1; + } + else { + this.constants.hierarchicalLayout.levelSeparation = Math.abs(this.constants.hierarchicalLayout.levelSeparation); + } - this._formBarnesHutTree(nodes,nodeIndices); + if (this.constants.hierarchicalLayout.direction == "RL" || this.constants.hierarchicalLayout.direction == "LR") { + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.type = "vertical"; + } + } + else { + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.type = "horizontal"; + } + } + // get the size of the largest hubs and check if the user has defined a level for a node. + var hubsize = 0; + var node, nodeId; + var definedLevel = false; + var undefinedLevel = false; - var barnesHutTree = this.barnesHutTree; + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.level != -1) { + definedLevel = true; + } + else { + undefinedLevel = true; + } + if (hubsize < node.edges.length) { + hubsize = node.edges.length; + } + } + } - // place the nodes one by one recursively - for (var i = 0; i < nodeCount; i++) { - node = nodes[nodeIndices[i]]; - if (node.options.mass > 0) { - // starting with root is irrelevant, it never passes the BarnesHut condition - this._getForceContribution(barnesHutTree.root.children.NW,node); - this._getForceContribution(barnesHutTree.root.children.NE,node); - this._getForceContribution(barnesHutTree.root.children.SW,node); - this._getForceContribution(barnesHutTree.root.children.SE,node); + // if the user defined some levels but not all, alert and run without hierarchical layout + if (undefinedLevel == true && definedLevel == true) { + alert("To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes."); + this.zoomExtent(true,this.constants.clustering.enabled); + if (!this.constants.clustering.enabled) { + this.start(); + } + } + else { + // setup the system to use hierarchical method. + this._changeConstants(); + + // define levels if undefined by the users. Based on hubsize + if (undefinedLevel == true) { + this._determineLevels(hubsize); } + // check the distribution of the nodes per level. + var distribution = this._getDistribution(); + + // place the nodes on the canvas. This also stablilizes the system. + this._placeNodesByHierarchy(distribution); + + // start the simulation. + this.start(); } } }; /** - * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. - * If a region contains a single node, we check if it is not itself, then we apply the force. + * This function places the nodes on the canvas based on the hierarchial distribution. * - * @param parentBranch - * @param node + * @param {Object} distribution | obtained by the function this._getDistribution() * @private */ - exports._getForceContribution = function(parentBranch,node) { - // we get no force contribution from an empty region - if (parentBranch.childrenCount > 0) { - var dx,dy,distance; + exports._placeNodesByHierarchy = function(distribution) { + var nodeId, node; - // get the distance from the center of mass to the node. - dx = parentBranch.centerOfMass.x - node.x; - dy = parentBranch.centerOfMass.y - node.y; - distance = Math.sqrt(dx * dx + dy * dy); + // start placing all the level 0 nodes first. Then recursively position their branches. + for (var level in distribution) { + if (distribution.hasOwnProperty(level)) { - // BarnesHut condition - // original condition : s/d < theta = passed === d/s > 1/theta = passed - // calcSize = 1/s --> d * 1/s > 1/theta = passed - if (distance * parentBranch.calcSize > this.constants.physics.barnesHut.theta) { - // duplicate code to reduce function calls to speed up program - if (distance == 0) { - distance = 0.1*Math.random(); - dx = distance; - } - var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; - node.fx += fx; - node.fy += fy; - } - else { - // Did not pass the condition, go into children if available - if (parentBranch.childrenCount == 4) { - this._getForceContribution(parentBranch.children.NW,node); - this._getForceContribution(parentBranch.children.NE,node); - this._getForceContribution(parentBranch.children.SW,node); - this._getForceContribution(parentBranch.children.SE,node); - } - else { // parentBranch must have only one node, if it was empty we wouldnt be here - if (parentBranch.children.data.id != node.id) { // if it is not self - // duplicate code to reduce function calls to speed up program - if (distance == 0) { - distance = 0.5*Math.random(); - dx = distance; + for (nodeId in distribution[level].nodes) { + if (distribution[level].nodes.hasOwnProperty(nodeId)) { + node = distribution[level].nodes[nodeId]; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (node.xFixed) { + node.x = distribution[level].minPos; + node.xFixed = false; + + distribution[level].minPos += distribution[level].nodeSpacing; + } } - var gravityForce = this.constants.physics.barnesHut.gravitationalConstant * parentBranch.mass * node.options.mass / (distance * distance * distance); - var fx = dx * gravityForce; - var fy = dy * gravityForce; - node.fx += fx; - node.fy += fy; + else { + if (node.yFixed) { + node.y = distribution[level].minPos; + node.yFixed = false; + + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + this._placeBranchNodes(node.edges,node.id,distribution,node.level); } } } } + + // stabilize the system after positioning. This function calls zoomExtent. + this._stabilize(); }; + /** - * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * This function get the distribution of levels based on hubsize * - * @param nodes - * @param nodeIndices + * @returns {Object} * @private */ - exports._formBarnesHutTree = function(nodes,nodeIndices) { - var node; - var nodeCount = nodeIndices.length; - - var minX = Number.MAX_VALUE, - minY = Number.MAX_VALUE, - maxX =-Number.MAX_VALUE, - maxY =-Number.MAX_VALUE; + exports._getDistribution = function() { + var distribution = {}; + var nodeId, node, level; - // get the range of the nodes - for (var i = 0; i < nodeCount; i++) { - var x = nodes[nodeIndices[i]].x; - var y = nodes[nodeIndices[i]].y; - if (nodes[nodeIndices[i]].options.mass > 0) { - if (x < minX) { minX = x; } - if (x > maxX) { maxX = x; } - if (y < minY) { minY = y; } - if (y > maxY) { maxY = y; } + // we fix Y because the hierarchy is vertical, we fix X so we do not give a node an x position for a second time. + // the fix of X is removed after the x value has been set. + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + node.xFixed = true; + node.yFixed = true; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + node.y = this.constants.hierarchicalLayout.levelSeparation*node.level; + } + else { + node.x = this.constants.hierarchicalLayout.levelSeparation*node.level; + } + if (distribution[node.level] === undefined) { + distribution[node.level] = {amount: 0, nodes: {}, minPos:0, nodeSpacing:0}; + } + distribution[node.level].amount += 1; + distribution[node.level].nodes[nodeId] = node; } } - // make the range a square - var sizeDiff = Math.abs(maxX - minX) - Math.abs(maxY - minY); // difference between X and Y - if (sizeDiff > 0) {minY -= 0.5 * sizeDiff; maxY += 0.5 * sizeDiff;} // xSize > ySize - else {minX += 0.5 * sizeDiff; maxX -= 0.5 * sizeDiff;} // xSize < ySize - - - var minimumTreeSize = 1e-5; - var rootSize = Math.max(minimumTreeSize,Math.abs(maxX - minX)); - var halfRootSize = 0.5 * rootSize; - var centerX = 0.5 * (minX + maxX), centerY = 0.5 * (minY + maxY); - // construct the barnesHutTree - var barnesHutTree = { - root:{ - centerOfMass: {x:0, y:0}, - mass:0, - range: { - minX: centerX-halfRootSize,maxX:centerX+halfRootSize, - minY: centerY-halfRootSize,maxY:centerY+halfRootSize - }, - size: rootSize, - calcSize: 1 / rootSize, - children: { data:null}, - maxWidth: 0, - level: 0, - childrenCount: 4 + // determine the largest amount of nodes of all levels + var maxCount = 0; + for (level in distribution) { + if (distribution.hasOwnProperty(level)) { + if (maxCount < distribution[level].amount) { + maxCount = distribution[level].amount; + } } - }; - this._splitBranch(barnesHutTree.root); + } - // place the nodes one by one recursively - for (i = 0; i < nodeCount; i++) { - node = nodes[nodeIndices[i]]; - if (node.options.mass > 0) { - this._placeInTree(barnesHutTree.root,node); + // set the initial position and spacing of each nodes accordingly + for (level in distribution) { + if (distribution.hasOwnProperty(level)) { + distribution[level].nodeSpacing = (maxCount + 1) * this.constants.hierarchicalLayout.nodeSpacing; + distribution[level].nodeSpacing /= (distribution[level].amount + 1); + distribution[level].minPos = distribution[level].nodeSpacing - (0.5 * (distribution[level].amount + 1) * distribution[level].nodeSpacing); } } - // make global - this.barnesHutTree = barnesHutTree + return distribution; }; /** - * this updates the mass of a branch. this is increased by adding a node. + * this function allocates nodes in levels based on the recursive branching from the largest hubs. * - * @param parentBranch - * @param node + * @param hubsize * @private */ - exports._updateBranchMass = function(parentBranch, node) { - var totalMass = parentBranch.mass + node.options.mass; - var totalMassInv = 1/totalMass; - - parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; - parentBranch.centerOfMass.x *= totalMassInv; - - parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; - parentBranch.centerOfMass.y *= totalMassInv; + exports._determineLevels = function(hubsize) { + var nodeId, node; - parentBranch.mass = totalMass; - var biggestSize = Math.max(Math.max(node.height,node.radius),node.width); - parentBranch.maxWidth = (parentBranch.maxWidth < biggestSize) ? biggestSize : parentBranch.maxWidth; + // determine hubs + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.edges.length == hubsize) { + node.level = 0; + } + } + } + // branch from hubs + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.level == 0) { + this._setLevel(1,node.edges,node.id); + } + } + } }; /** - * determine in which branch the node will be placed. + * Since hierarchical layout does not support: + * - smooth curves (based on the physics), + * - clustering (based on dynamic node counts) + * + * We disable both features so there will be no problems. * - * @param parentBranch - * @param node - * @param skipMassUpdate * @private */ - exports._placeInTree = function(parentBranch,node,skipMassUpdate) { - if (skipMassUpdate != true || skipMassUpdate === undefined) { - // update the mass of the branch. - this._updateBranchMass(parentBranch,node); + exports._changeConstants = function() { + this.constants.clustering.enabled = false; + this.constants.physics.barnesHut.enabled = false; + this.constants.physics.hierarchicalRepulsion.enabled = true; + this._loadSelectedForceSolver(); + if (this.constants.smoothCurves.enabled == true) { + this.constants.smoothCurves.dynamic = false; } + this._configureSmoothCurves(); + }; - if (parentBranch.children.NW.range.maxX > node.x) { // in NW or SW - if (parentBranch.children.NW.range.maxY > node.y) { // in NW - this._placeInRegion(parentBranch,node,"NW"); + + /** + * This is a recursively called function to enumerate the branches from the largest hubs and place the nodes + * on a X position that ensures there will be no overlap. + * + * @param edges + * @param parentId + * @param distribution + * @param parentLevel + * @private + */ + exports._placeBranchNodes = function(edges, parentId, distribution, parentLevel) { + for (var i = 0; i < edges.length; i++) { + var childNode = null; + if (edges[i].toId == parentId) { + childNode = edges[i].from; } - else { // in SW - this._placeInRegion(parentBranch,node,"SW"); + else { + childNode = edges[i].to; } - } - else { // in NE or SE - if (parentBranch.children.NW.range.maxY > node.y) { // in NE - this._placeInRegion(parentBranch,node,"NE"); + + // if a node is conneceted to another node on the same level (or higher (means lower level))!, this is not handled here. + var nodeMoved = false; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (childNode.xFixed && childNode.level > parentLevel) { + childNode.xFixed = false; + childNode.x = distribution[childNode.level].minPos; + nodeMoved = true; + } } - else { // in SE - this._placeInRegion(parentBranch,node,"SE"); + else { + if (childNode.yFixed && childNode.level > parentLevel) { + childNode.yFixed = false; + childNode.y = distribution[childNode.level].minPos; + nodeMoved = true; + } + } + + if (nodeMoved == true) { + distribution[childNode.level].minPos += distribution[childNode.level].nodeSpacing; + if (childNode.edges.length > 1) { + this._placeBranchNodes(childNode.edges,childNode.id,distribution,childNode.level); + } } } }; /** - * actually place the node in a region (or branch) + * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. * - * @param parentBranch - * @param node - * @param region + * @param level + * @param edges + * @param parentId * @private */ - exports._placeInRegion = function(parentBranch,node,region) { - switch (parentBranch.children[region].childrenCount) { - case 0: // place node here - parentBranch.children[region].children.data = node; - parentBranch.children[region].childrenCount = 1; - this._updateBranchMass(parentBranch.children[region],node); - break; - case 1: // convert into children - // if there are two nodes exactly overlapping (on init, on opening of cluster etc.) - // we move one node a pixel and we do not put it in the tree. - if (parentBranch.children[region].children.data.x == node.x && - parentBranch.children[region].children.data.y == node.y) { - node.x += Math.random(); - node.y += Math.random(); - } - else { - this._splitBranch(parentBranch.children[region]); - this._placeInTree(parentBranch.children[region],node); + exports._setLevel = function(level, edges, parentId) { + for (var i = 0; i < edges.length; i++) { + var childNode = null; + if (edges[i].toId == parentId) { + childNode = edges[i].from; + } + else { + childNode = edges[i].to; + } + if (childNode.level == -1 || childNode.level > level) { + childNode.level = level; + if (edges.length > 1) { + this._setLevel(level+1, childNode.edges, childNode.id); } - break; - case 4: // place in branch - this._placeInTree(parentBranch.children[region],node); - break; + } } }; /** - * this function splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch - * after the split is complete. + * Unfix nodes * - * @param parentBranch * @private */ - exports._splitBranch = function(parentBranch) { - // if the branch is shaded with a node, replace the node in the new subset. - var containedNode = null; - if (parentBranch.childrenCount == 1) { - containedNode = parentBranch.children.data; - parentBranch.mass = 0; parentBranch.centerOfMass.x = 0; parentBranch.centerOfMass.y = 0; + exports._restoreNodes = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.nodes[nodeId].xFixed = false; + this.nodes[nodeId].yFixed = false; + } } - parentBranch.childrenCount = 4; - parentBranch.children.data = null; - this._insertRegion(parentBranch,"NW"); - this._insertRegion(parentBranch,"NE"); - this._insertRegion(parentBranch,"SW"); - this._insertRegion(parentBranch,"SE"); + }; + + +/***/ }, +/* 61 */ +/***/ function(module, exports, __webpack_require__) { + + /** + * Canvas shapes used by Network + */ + if (typeof CanvasRenderingContext2D !== 'undefined') { + + /** + * Draw a circle shape + */ + CanvasRenderingContext2D.prototype.circle = function(x, y, r) { + this.beginPath(); + this.arc(x, y, r, 0, 2*Math.PI, false); + }; + + /** + * Draw a square shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r size, width and height of the square + */ + CanvasRenderingContext2D.prototype.square = function(x, y, r) { + this.beginPath(); + this.rect(x - r, y - r, r * 2, r * 2); + }; + + /** + * Draw a triangle shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.triangle = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y - (h - ir)); + this.lineTo(x + s2, y + ir); + this.lineTo(x - s2, y + ir); + this.lineTo(x, y - (h - ir)); + this.closePath(); + }; + + /** + * Draw a triangle shape in downward orientation + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius + */ + CanvasRenderingContext2D.prototype.triangleDown = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y + (h - ir)); + this.lineTo(x + s2, y - ir); + this.lineTo(x - s2, y - ir); + this.lineTo(x, y + (h - ir)); + this.closePath(); + }; - if (containedNode != null) { - this._placeInTree(parentBranch,containedNode); - } - }; + /** + * Draw a star shape, a star with 5 points + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.star = function(x, y, r) { + // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ + this.beginPath(); + for (var n = 0; n < 10; n++) { + var radius = (n % 2 === 0) ? r * 1.3 : r * 0.5; + this.lineTo( + x + radius * Math.sin(n * 2 * Math.PI / 10), + y - radius * Math.cos(n * 2 * Math.PI / 10) + ); + } - /** - * This function subdivides the region into four new segments. - * Specifically, this inserts a single new segment. - * It fills the children section of the parentBranch - * - * @param parentBranch - * @param region - * @param parentRange - * @private - */ - exports._insertRegion = function(parentBranch, region) { - var minX,maxX,minY,maxY; - var childSize = 0.5 * parentBranch.size; - switch (region) { - case "NW": - minX = parentBranch.range.minX; - maxX = parentBranch.range.minX + childSize; - minY = parentBranch.range.minY; - maxY = parentBranch.range.minY + childSize; - break; - case "NE": - minX = parentBranch.range.minX + childSize; - maxX = parentBranch.range.maxX; - minY = parentBranch.range.minY; - maxY = parentBranch.range.minY + childSize; - break; - case "SW": - minX = parentBranch.range.minX; - maxX = parentBranch.range.minX + childSize; - minY = parentBranch.range.minY + childSize; - maxY = parentBranch.range.maxY; - break; - case "SE": - minX = parentBranch.range.minX + childSize; - maxX = parentBranch.range.maxX; - minY = parentBranch.range.minY + childSize; - maxY = parentBranch.range.maxY; - break; - } + this.closePath(); + }; + + /** + * http://stackoverflow.com/questions/1255512/how-to-draw-a-rounded-rectangle-on-html-canvas + */ + CanvasRenderingContext2D.prototype.roundRect = function(x, y, w, h, r) { + var r2d = Math.PI/180; + if( w - ( 2 * r ) < 0 ) { r = ( w / 2 ); } //ensure that the radius isn't too large for x + if( h - ( 2 * r ) < 0 ) { r = ( h / 2 ); } //ensure that the radius isn't too large for y + this.beginPath(); + this.moveTo(x+r,y); + this.lineTo(x+w-r,y); + this.arc(x+w-r,y+r,r,r2d*270,r2d*360,false); + this.lineTo(x+w,y+h-r); + this.arc(x+w-r,y+h-r,r,0,r2d*90,false); + this.lineTo(x+r,y+h); + this.arc(x+r,y+h-r,r,r2d*90,r2d*180,false); + this.lineTo(x,y+r); + this.arc(x+r,y+r,r,r2d*180,r2d*270,false); + }; + /** + * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas + */ + CanvasRenderingContext2D.prototype.ellipse = function(x, y, w, h) { + var kappa = .5522848, + ox = (w / 2) * kappa, // control point offset horizontal + oy = (h / 2) * kappa, // control point offset vertical + xe = x + w, // x-end + ye = y + h, // y-end + xm = x + w / 2, // x-middle + ym = y + h / 2; // y-middle - parentBranch.children[region] = { - centerOfMass:{x:0,y:0}, - mass:0, - range:{minX:minX,maxX:maxX,minY:minY,maxY:maxY}, - size: 0.5 * parentBranch.size, - calcSize: 2 * parentBranch.calcSize, - children: {data:null}, - maxWidth: 0, - level: parentBranch.level+1, - childrenCount: 0 + this.beginPath(); + this.moveTo(x, ym); + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); }; - }; - /** - * This function is for debugging purposed, it draws the tree. - * - * @param ctx - * @param color - * @private - */ - exports._drawTree = function(ctx,color) { - if (this.barnesHutTree !== undefined) { - ctx.lineWidth = 1; + /** + * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas + */ + CanvasRenderingContext2D.prototype.database = function(x, y, w, h) { + var f = 1/3; + var wEllipse = w; + var hEllipse = h * f; - this._drawBranch(this.barnesHutTree.root,ctx,color); - } - }; + var kappa = .5522848, + ox = (wEllipse / 2) * kappa, // control point offset horizontal + oy = (hEllipse / 2) * kappa, // control point offset vertical + xe = x + wEllipse, // x-end + ye = y + hEllipse, // y-end + xm = x + wEllipse / 2, // x-middle + ym = y + hEllipse / 2, // y-middle + ymb = y + (h - hEllipse/2), // y-midlle, bottom ellipse + yeb = y + h; // y-end, bottom ellipse + this.beginPath(); + this.moveTo(xe, ym); - /** - * This function is for debugging purposes. It draws the branches recursively. - * - * @param branch - * @param ctx - * @param color - * @private - */ - exports._drawBranch = function(branch,ctx,color) { - if (color === undefined) { - color = "#FF0000"; - } + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); - if (branch.childrenCount == 4) { - this._drawBranch(branch.children.NW,ctx); - this._drawBranch(branch.children.NE,ctx); - this._drawBranch(branch.children.SE,ctx); - this._drawBranch(branch.children.SW,ctx); - } - ctx.strokeStyle = color; - ctx.beginPath(); - ctx.moveTo(branch.range.minX,branch.range.minY); - ctx.lineTo(branch.range.maxX,branch.range.minY); - ctx.stroke(); + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - ctx.beginPath(); - ctx.moveTo(branch.range.maxX,branch.range.minY); - ctx.lineTo(branch.range.maxX,branch.range.maxY); - ctx.stroke(); + this.lineTo(xe, ymb); - ctx.beginPath(); - ctx.moveTo(branch.range.maxX,branch.range.maxY); - ctx.lineTo(branch.range.minX,branch.range.maxY); - ctx.stroke(); + this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); + this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); - ctx.beginPath(); - ctx.moveTo(branch.range.minX,branch.range.maxY); - ctx.lineTo(branch.range.minX,branch.range.minY); - ctx.stroke(); + this.lineTo(x, ym); + }; - /* - if (branch.mass > 0) { - ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); - ctx.stroke(); - } + + /** + * Draw an arrow point (no line) */ - }; + CanvasRenderingContext2D.prototype.arrow = function(x, y, angle, length) { + // tail + var xt = x - length * Math.cos(angle); + var yt = y - length * Math.sin(angle); + // inner tail + // TODO: allow to customize different shapes + var xi = x - length * 0.9 * Math.cos(angle); + var yi = y - length * 0.9 * Math.sin(angle); -/***/ }, -/* 61 */ -/***/ function(module, exports, __webpack_require__) { + // left + var xl = xt + length / 3 * Math.cos(angle + 0.5 * Math.PI); + var yl = yt + length / 3 * Math.sin(angle + 0.5 * Math.PI); - module.exports = function(module) { - if(!module.webpackPolyfill) { - module.deprecate = function() {}; - module.paths = []; - // module.parent = undefined by default - module.children = []; - module.webpackPolyfill = 1; - } - return module; + // right + var xr = xt + length / 3 * Math.cos(angle - 0.5 * Math.PI); + var yr = yt + length / 3 * Math.sin(angle - 0.5 * Math.PI); + + this.beginPath(); + this.moveTo(x, y); + this.lineTo(xl, yl); + this.lineTo(xi, yi); + this.lineTo(xr, yr); + this.closePath(); + }; + + /** + * Sets up the dashedLine functionality for drawing + * Original code came from http://stackoverflow.com/questions/4576724/dotted-stroke-in-canvas + * @author David Jordan + * @date 2012-08-08 + */ + CanvasRenderingContext2D.prototype.dashedLine = function(x,y,x2,y2,dashArray){ + if (!dashArray) dashArray=[10,5]; + if (dashLength==0) dashLength = 0.001; // Hack for Safari + var dashCount = dashArray.length; + this.moveTo(x, y); + var dx = (x2-x), dy = (y2-y); + var slope = dy/dx; + var distRemaining = Math.sqrt( dx*dx + dy*dy ); + var dashIndex=0, draw=true; + while (distRemaining>=0.1){ + var dashLength = dashArray[dashIndex++%dashCount]; + if (dashLength > distRemaining) dashLength = distRemaining; + var xStep = Math.sqrt( dashLength*dashLength / (1 + slope*slope) ); + if (dx<0) xStep = -xStep; + x += xStep; + y += slope*xStep; + this[draw ? 'lineTo' : 'moveTo'](x,y); + distRemaining -= dashLength; + draw = !draw; + } + }; + + // TODO: add diamond shape } diff --git a/dist/vis.map b/dist/vis.map index 1a5ce27b..4d10412a 100644 --- a/dist/vis.map +++ b/dist/vis.map @@ -1 +1 @@ -{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","i","len","arguments","length","other","prop","hasOwnProperty","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","className","classes","split","push","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","createElement","drawPoint","x","y","group","point","drawPoints","style","setAttributeNS","size","drawBar","width","height","rect","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","prototype","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","item","col","cols","getValue","update","updatedIds","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","result","getIds","getDataSet","map","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","keys","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","viewOptions","getArguments","defaultFilter","dataSet","added","updated","removed","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","eye","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","colorAxis","colorGrid","colorDot","colorDotBorder","setOptions","Emitter","_setScale","scale","z","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dy","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","fill","stroke","strokeWidth","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","obj","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","hasChildNodes","firstChild","position","overflow","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","charAt","parseFloat","setCameraPosition","pos","horizontal","vertical","setArmRotation","distance","setArmLength","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","getCurrent","next","end","textAlign","textBaseline","fillText","label","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xOffset","yOffset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","parseInt","cross","topSideVisible","zAvg","transBottom","dist","sortDepth","aDiff","subtract","bDiff","crossproduct","crossProduct","radius","arc","PI","j","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","diff","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","getMouseX","startMouseY","getMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","delay","mouseX","mouseY","tooltipTimeout","clearTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","setTimeout","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","content","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","clientX","targetTouches","clientY","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","dataView","progress","sub","sum","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","LN10","step1","pow","step2","step5","toPrecision","getStep","coreProp","Core","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","snap","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","timeAxis","currentTime","customTime","itemSet","itemsData","groupsData","setItems","_initAutoResize","component","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","getSelection","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","minimumStep","containerHeight","forcedStepSize","current","autoScale","stepIndex","marginStart","marginEnd","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","first","niceStart","niceEnd","roundToMinor","marginRange","rounded","hasNext","previous","slice","isMajor","now","hours","minutes","seconds","milliseconds","clone","direction","moveable","zoomable","zoomMin","zoomMax","touch","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","pageX","pageY","hammerUtil","changed","_applyRange","newStart","newEnd","getRange","conversion","allowDragging","gesture","deltaX","deltaY","diffRange","fakeGesture","pointer","pointerDate","_pointerToDate","zoom","touches","initDate","move","EPSILON","orderByStart","orderByEnd","aTime","bTime","force","iMax","axis","collidingItem","jj","collision","nostack","SCALE","DAY","MILLISECOND","SECOND","MINUTE","HOUR","WEEKDAY","MONTH","YEAR","setFullYear","getFullYear","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","getDate","getMonth","setScale","newScale","newStep","setAutoScale","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","date","year","getLabelMinor","format","getLabelMajor","destroy","_isResized","resized","_previousWidth","_previousHeight","showCurrentTime","parent","backgroundVertical","title","currentTimeTimer","showCustomTime","eventParams","Hammer","drag","prevent_default","setCustomTime","time","getCustomTime","dragging","stopPropagation","svg","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","minWidth","stepPixels","stepPixelsForced","lineOffset","master","svgElements","amountOfGroups","addGroup","graphOptions","updateGroup","removeGroup","hide","show","lineContainer","display","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","backgroundHorizontal","changeCalled","activeGroups","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineWidth","minorLineHeight","majorLineWidth","majorLineHeight","_redrawLabels","amountOfSteps","stepDifference","valueAtZero","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","characterHeight","largestWidth","majorCharWidth","minorCharWidth","convertValue","invertedValue","convertedValue","textMinor","createTextNode","measureCharMinor","textMajor","measureCharMajor","groupsUsingDefaultStyles","usingDefaultStyle","zeroPosition","setZeroPosition","catmullRom","parametrization","alpha","SVGcontainer","path","fillPath","fillHeight","outline","shaded","barWidth","bar1Height","bar2Height","icon","yAxisOrientation","visibleItems","byStart","byEnd","inner","foreground","marker","visibility","Element","getLabelWidth","restack","_updateVisibleItems","markerHeight","lastMarkerHeight","dirty","displayed","offsetTop","offsetLeft","ii","repositionY","labelSet","setParent","_checkIfVisible","removeFromDataSet","removeItem","_constructByEndArray","endArray","initialPosByStart","newVisibleItems","initialPosByEnd","_checkIfInvisible","repositionX","align","groupOrder","selectable","editable","updateTime","onAdd","onUpdate","onMove","onRemove","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","_moveToGroup","oldGroup","UNGROUPED","box","_updateUngrouped","centerContainer","_onSelectItem","_onMultiSelectItem","_onAddItem","addCallback","fn","Function","markDirty","unselect","select","getVisibleItems","rawVisibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","lastWidth","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","getLabelSet","oldItemsData","getItems","_order","getGroups","itemData","_removeItem","groupData","groupOptions","oldGroupId","itemFromTarget","selected","dragLeftItem","dragRightItem","itemProps","groupFromTarget","changes","ctrlKey","srcEvent","shiftKey","oldSelection","newSelection","xAbs","newItem","itemSetFromTarget","side","iconSize","iconSpacing","textArea","drawLegendIcons","getComputedStyle","paddingTop","defaultGroup","sampling","graphHeight","barChart","allowOverlap","dataAxis","legend","lastStart","rangePerPixelInv","_updateGraph","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","preprocessedGroup","preprocessedGroupData","processedGroupData","groupRanges","minDate","maxDate","_preprocessData","_updateYAxis","_convertYvalues","_drawLineGraph","_drawBarGraph","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","axisUsed","coreDistance","intersections","amount","resolved","drawData","_getSafeDrawData","nextKey","prevKey","slots","total","slot","svgHeight","_catmullRom","_linear","dFill","_drawPoints","datapoints","xValue","yValue","extractedData","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","_catmullRomUniform","p0","p1","p2","p3","bp1","bp2","normalization","d1","d2","d3","A","N","M","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","majorLines","majorTexts","minorLines","minorTexts","lineTop","parentChanged","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","insertBefore","xFirstMajorLabel","cur","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","arr","pop","childNodes","nodeValue","_repaintDeleteButton","anchor","deleteButton","itemSetHeight","marginLeft","baseClassName","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","dragLeft","dragRight","_initializeMixinLoaders","renderRefreshRate","renderTimestep","renderTime","maxPhysicsTicksPerRender","physicsDiscreteStepsize","initializing","triggerFunctions","edit","editEdge","connect","del","nodes","mass","radiusMin","radiusMax","shape","image","fixed","fontColor","fontSize","fontFace","level","highlightColor","edges","widthSelectionMultiplier","hoverWidth","fontFill","arrowScaleFactor","dash","gap","altLength","inheritColor","configurePhysics","physics","barnesHut","theta","gravitationalConstant","centralGravity","springLength","springConstant","damping","repulsion","nodeDistance","hierarchicalRepulsion","clustering","initialMaxNodes","clusterThreshold","reduceToNodes","chainThreshold","clusterEdgeThreshold","sectorThreshold","screenSizeThreshold","fontSizeMultiplier","maxFontSize","forceAmplification","distanceAmplification","edgeGrowth","nodeScaling","maxNodeSizeIncrements","activeAreaBoxSize","clusterLevelDifference","navigation","keyboard","speed","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","freezeForStabilization","smoothCurves","dynamic","roundness","dynamicSmoothCurves","maxVelocity","minVelocity","stabilize","stabilizationIterations","link","editNode","back","addDescription","linkDescription","editEdgeDescription","addError","linkError","editError","editBoundError","deleteError","deleteClusterError","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","constants","hoverObj","controlNodesActive","images","setOnloadCallback","_redraw","xIncrement","yIncrement","zoomIncrement","_loadPhysicsSystem","_loadSectorSystem","_loadClusterSystem","_loadSelectionSystem","_loadHierarchySystem","_setTranslation","freezeSimulation","cachedFunctions","calculationNodes","calculationNodeIndices","nodeIndices","canvasTopLeft","canvasBottomRight","pointerPosition","areaCenter","previousScale","nodesData","edgesData","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","timer","_setupHierarchicalLayout","zoomExtent","startWithClustering","mousetrap","MixinLoader","_getScriptPath","scripts","getElementsByTagName","src","_getRange","node","minY","maxY","minX","maxX","nodeId","_findCenter","_centerNetwork","initialZoom","disableStart","zoomLevel","numberOfNodes","factor","yDistance","xZoomLevel","yZoomLevel","_updateNodeIndexList","_clearNodeIndexList","idx","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_putDataInSector","_stabilize","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","_createKeyBinds","pinch","_onTap","_onDoubleTap","_onRelease","_onMouseMoveTitle","reset","_moveUp","_yStopMoving","_moveDown","_moveLeft","_xStopMoving","_moveRight","_zoomIn","_stopZoom","_zoomOut","_createManipulatorBar","_deleteSelected","_getPointer","pinched","_getScale","_handleTouch","_handleDragStart","_getNodeAt","_getTranslation","isSelected","_selectObject","objectId","selectionObj","xFixed","yFixed","_handleOnDrag","_XconvertDOMtoCanvas","_XconvertCanvasToDOM","_YconvertDOMtoCanvas","_YconvertCanvasToDOM","_handleTap","_handleDoubleTap","_handleOnHold","_handleOnRelease","_zoom","scaleOld","preScaleDragPointer","DOMtoCanvas","scaleFrac","tx","ty","updateClustersDefault","postScaleDragPointer","canvasToDOM","popupObj","_checkHidePopup","checkShow","_checkShowPopup","popupTimer","edgeId","_getEdgeAt","_hoverObject","_blurObject","lastPopupNode","getTitle","isOverlappingWith","edge","connected","popup","setPosition","setText","manipulationDiv","navigationDivs","oldNodesData","_updateSelection","angle","_resetLevels","_updateCalculationNodes","_reconnectEdges","_updateValueRange","updateLabels","setProperties","properties","oldEdgesData","oldEdge","disconnect","showInternalIds","_createBezierNodes","via","sectors","setValueRange","w","save","translate","_doInAllSectors","restore","offsetX","offsetY","_drawNodes","alwaysShow","setScaleAndPos","inArea","draw","sMax","_drawEdges","_drawControlNodes","_freezeDefinedNodes","_physicsTick","_restoreFrozenNodes","iterations","fixedData","_isMoving","vmin","isMoving","_discreteStepNodes","checkMovement","nodesPresent","discreteStepLimited","discreteStep","vminCorrected","_doInAllActiveSectors","_doInSupportSector","_animationStep","_handleNavigation","calculationTime","maxSteps","timeRequired","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","ua","toLowerCase","requiresTimeout","toggleFreeze","parentEdgeId","internalMultiplier","positionBezierNode","mixin","storePosition","dataArray","allowedToMoveX","allowedToMoveY","focusOnNode","nodePosition","requiredScale","canvasCenter","distanceFromCenter","networkConstants","fromId","toId","widthSelected","originalFromId","originalToId","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","attachEdge","detachEdge","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_label","resize","_circle","_pointOnCircle","networkScaleInv","_getViaCoordinates","xVia","yVia","quadraticCurveTo","measureText","fillRect","mozDash","setLineDash","pattern","lineDashOffset","mozDashOffset","lineCap","dashedLine","percentage","atan2","arrow","edgeSegmentLength","fromBorderDist","distanceToBorder","fromBorderPoint","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","nodeIdFrom","nodeIdTo","getControlNodePositions","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","defaultIndex","DEFAULT","load","url","img","Image","onload","imagelist","grouplist","dynamicEdges","reroutedEdges","fontDrawThreshold","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","fx","fy","vx","vy","resetCluster","dynamicEdgesLength","clusterSession","clusterSizeWidthFactor","clusterSizeHeightFactor","clusterSizeRadiusFactor","growthIndicator","networkScale","formationScale","clusterSize","containedNodes","containedEdges","clusterSessions","originalLabel","triggerFunction","groupObj","imageObj","_drawDatabase","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_reset","clearSizeCache","_setForce","_addForce","isFixed","velocity","getDistance","globalAlpha","drawImage","textSize","getTextSize","clusterLineWidth","selectionLineWidth","borderWidthSelected","roundRect","database","diameter","circle","defaultSize","ellipse","_drawShape","radiusMultiplier","baseline","labelUnderNode","lineCount","yLine","inView","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","styleAttr","fontFamily","WebkitBorderRadius","whiteSpace","maxWidth","parseDOT","parseGraph","nextPreview","isAlphaNumeric","regexAlphaNumeric","merge","o","addNode","graphs","attr","addEdge","createEdge","getToken","tokenType","TOKENTYPE","NULL","token","isComment","DELIMITER","c2","DELIMITERS","IDENTIFIER","newSyntaxError","UNKNOWN","chop","strict","parseStatements","parseStatement","subgraph","parseSubgraph","parseEdge","parseAttributeStatement","parseNodeStatement","subgraphs","parseAttributeList","message","maxLength","forEach2","array1","array2","elem1","elem2","convertEdge","dotEdge","graphEdge","graphData","dotNode","graphNode","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","attributes","gNode","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","listeners","events","args","scrollTop","scrollTopMin","_stopAutoResize","what","dataRange","getWindow","borderRootHeight","borderRootWidth","autoHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","repaint","_startAutoResize","_onResize","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","eventType","getTouchList","collectEventData","CanvasRenderingContext2D","square","s2","ir","triangleDown","star","n","r2d","kappa","ox","oy","xe","ye","xm","ym","bezierCurveTo","wEllipse","hEllipse","ymb","yeb","xt","yt","xi","yi","xl","yl","xr","yr","dashArray","dashLength","dashCount","slope","distRemaining","dashIndex","PhysicsMixin","ClusterMixin","SectorsMixin","SelectionMixin","ManipulationMixin","NavigationMixin","HierarchicalLayoutMixin","_loadMixin","sourceVariable","mixinFunction","_clearMixin","_loadSelectedForceSolver","_loadPhysicsConfiguration","hubThreshold","activeSector","drawingNode","blockConnectingEdgeSelection","forceAppendSelection","editModeDiv","closeDiv","_cleanNavigation","_loadNavigationElements","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","__WEBPACK_AMD_DEFINE_RESULT__","global","dfl","defaultParsingFlags","empty","unusedTokens","unusedInput","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","deprecate","msg","printMsg","suppressDeprecationWarnings","warn","firstTime","padToken","func","leftZeroFill","ordinalizeToken","period","lang","ordinal","Language","Moment","config","checkOverflow","Duration","duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","month","weeks","week","days","day","hour","minute","second","millisecond","_milliseconds","_days","_months","_bubble","cloneMoment","momentProperties","absRound","number","targetLength","forceSign","output","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","_d","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","method","_lang","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","_pf","DATE","_overflowDayOfYear","isValid","_isValid","getTime","_strict","normalizeLanguage","makeAs","model","_isUTC","zone","_offset","local","loadLang","abbr","languages","unloadLang","getLangDefinition","k","hasModule","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_l","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_isPm","isPM","_useUTC","_tzm","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","_i","getUTCFullYear","makeDateFromStringAndFormat","_f","ISO_8601","parseISO","parsedInput","tokens","skipped","stringLength","totalParsedInputLength","matched","p4","makeDateFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","NaN","score","l","isoRegex","isoDates","isoTimes","makeDateFromString","createFromInputFallback","makeDateFromInput","aspNetJsonRegex","ms","setUTCFullYear","parseWeekday","language","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","relativeTimeThresholds","dd","dm","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","daysToDayOfWeek","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","res","dayOfMonth","unit","makeAccessor","keepTime","makeDurationGetter","makeDurationAsGetter","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","VERSION","_isAMomentObject","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","weekdaysMin","ddd","weekdaysShort","dddd","weekdays","isoWeek","YY","YYYY","YYYYY","YYYYYY","gggg","ggggg","isoWeekYear","GGGG","GGGGG","isoWeekday","meridiem","SS","SSS","SSSS","Z","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LT","L","LL","LLL","LLLL","val","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","_invalidDate","ret","parseIso","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","_abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","inputString","dur","asFloat","that","zoneDiff","startOf","humanize","fromNow","sod","isDST","getDay","endOf","isAfter","isBefore","isSame","getTimezoneOffset","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","withSuffix","difference","toIsoString","asSeconds","asMonths","require","noGlobal","setup","READY","Event","determineEventTypes","Utils","each","gestures","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","defaults","behavior","userSelect","touchAction","touchCallout","contentZooming","userDrag","tapHighlightColor","HAS_POINTEREVENTS","pointerEnabled","msPointerEnabled","HAS_TOUCHEVENTS","IS_MOBILE","NO_MOUSEEVENTS","CALCULATE_INTERVAL","EVENT_TYPES","DIRECTION_DOWN","DIRECTION_LEFT","DIRECTION_UP","DIRECTION_RIGHT","POINTER_MOUSE","POINTER_TOUCH","POINTER_PEN","EVENT_START","EVENT_RELEASE","EVENT_TOUCH","plugins","utils","dest","handler","iterator","context","inStr","find","inArray","hasParent","getCenter","getVelocity","deltaTime","getAngle","touch1","touch2","getDirection","getScale","getRotation","isVertical","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","touchList","touchListLength","triggerChange","trigger","changedLength","changedTouches","evData","identifiers","identifier","pointerType","timeStamp","preventManipulation","stopDetect","pointers","touchlist","pointerEvent","pointerId","pt","MSPOINTER_TYPE_MOUSE","MSPOINTER_TYPE_TOUCH","MSPOINTER_TYPE_PEN","detection","stopped","startDetect","inst","eventData","startEvent","lastEvent","lastCalcEvent","futureCalcEvent","lastCalcData","extendEventData","instOptions","getCalculatedData","recalc","calcEv","calcData","velocityX","velocityY","interimAngle","interimDirection","startEv","lastEv","rotation","eventStartHandler","eventHandlers","createEvent","initEvent","dispatchEvent","state","dispose","eh","dragGesture","dragMaxTouches","triggered","dragMinDistance","startCenter","dragDistanceCorrection","dragLockToAxis","dragLockMinDistance","lastDirection","dragBlockVertical","dragBlockHorizontal","Drag","Gesture","holdGesture","holdTimeout","holdThreshold","Hold","Release","Infinity","Swipe","swipeMinTouches","swipeMaxTouches","swipeVelocityX","swipeVelocityY","tapGesture","sincePrev","didDoubleTap","hasMoved","tapMaxDistance","tapMaxTime","doubleTapInterval","doubleTapDistance","tapAlways","Tap","Touch","preventMouse","transformGesture","scaleThreshold","rotationThreshold","transformMinScale","transformMinRotation","Transform","_addEvent","_characterFromEvent","fromCharCode","_MAP","_KEYCODE_MAP","_stop","tag_name","tagName","contentEditable","_modifiersMatch","modifiers1","modifiers2","_resetSequences","do_not_reset","active_sequences","_sequence_levels","_inside_sequence","_getMatches","character","modifiers","combination","matches","_isModifier","seq","combo","_eventModifiers","altKey","metaKey","_fireCallback","cancelBubble","_handleCharacter","processed_sequence_callback","_handleKey","keyCode","_ignore_next_keyup","_resetSequenceTimer","_reset_timer","_getReverseMap","_REVERSE_MAP","_pickBestAction","_bindSequence","_increaseSequence","_callbackAndReset","_bindSingle","sequence_name","sequence","_SPECIAL_ALIASES","_SHIFT_MAP","_bindMultiple","combinations",8,9,13,16,17,18,20,27,32,33,34,35,36,37,38,39,40,45,46,91,93,224,106,107,109,110,111,186,187,188,189,190,191,192,219,220,221,222,"~","!","@","#","$","%","^","&","*","(",")","_","+",":","\"","<",">","?","|","command","return","escape","_direct_map","unbind","clusterToFit","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","repositionNodes","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_sector","_addSector","decreaseClusterLevel","_expandClusterNode","_updateDynamicEdges","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","_collapseSector","_formClusters","_openClusters","_openClustersBySize","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","openAll","containedNodeId","childNode","_expelChildFromParent","_unselectAll","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","correction","edgeToId","edgeFromId","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","overlappingNodes","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","overlappingEdges","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","_removeFromSelection","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","nodeIds","getSelectedNodes","edgeIds","getSelectedEdges","idArray","RangeError","selectNodes","selectEdges","_clearManipulatorBar","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","getElementById","boundFunction","edgeBeingEdited","selectedControlNode","addNodeButton","_createAddNodeToolbar","addEdgeButton","_createAddEdgeToolbar","editButton","_editNode","_createEditEdgeToolbar","editModeButton","backButton","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","smooth","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","wrapper","navigationDivActions","_stopMovement","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","maxCount","_setLevel","parentId","parentLevel","nodeMoved","_restoreNodes","graphToggleSmoothCurves","graph_toggleSmooth","graphRepositionNodes","showValueOfRange","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","nameArray","webpackContext","req","webpackContextResolve","resolve","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","children","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","centerX","centerY","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_drawTree","_drawBranch","branch","webpackPolyfill","paths"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","i","len","arguments","length","other","prop","hasOwnProperty","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","className","classes","split","push","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","__WEBPACK_AMD_DEFINE_RESULT__","global","dfl","defaultParsingFlags","empty","unusedTokens","unusedInput","overflow","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","deprecate","msg","fn","printMsg","suppressDeprecationWarnings","warn","firstTime","apply","padToken","func","count","leftZeroFill","ordinalizeToken","period","lang","ordinal","Language","Moment","config","checkOverflow","Duration","duration","normalizedInput","normalizeObjectUnits","years","year","quarters","quarter","months","month","weeks","week","days","day","hours","hour","minutes","minute","seconds","second","milliseconds","millisecond","_milliseconds","_days","_months","_data","_bubble","cloneMoment","result","momentProperties","absRound","number","ceil","targetLength","forceSign","output","abs","sign","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","_d","setTime","rawSetter","rawGetter","rawMonthSetter","input","prototype","compareArrays","array1","array2","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","toLowerCase","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","format","getter","method","_lang","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","_pf","MONTH","DATE","YEAR","HOUR","MINUTE","SECOND","MILLISECOND","_overflowDayOfYear","isValid","_isValid","getTime","_strict","normalizeLanguage","makeAs","model","_isUTC","zone","_offset","local","loadLang","values","abbr","languages","unloadLang","getLangDefinition","j","next","get","k","hasModule","slice","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","Function","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","token","strict","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_l","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","parseInt","_dayOfYear","parseTwoDigitYear","_isPm","isPM","parseFloat","_useUTC","_tzm","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","w","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","date","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","_i","now","getUTCFullYear","getFullYear","getMonth","getDate","makeDateFromStringAndFormat","_f","ISO_8601","parseISO","parsedInput","tokens","skipped","stringLength","totalParsedInputLength","matched","p1","p2","p3","p4","makeDateFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","NaN","score","l","isoRegex","isoDates","isoTimes","makeDateFromString","createFromInputFallback","makeDateFromInput","aspNetJsonRegex","y","M","ms","setFullYear","setUTCFullYear","parseWeekday","language","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","round","args","relativeTimeThresholds","dd","dm","dy","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","end","daysToDayOfWeek","add","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","res","dayOfMonth","unit","makeAccessor","keepTime","makeDurationGetter","name","makeDurationAsGetter","factor","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","VERSION","_isAMomentObject","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","weekdaysMin","ddd","weekdaysShort","dddd","weekdays","isoWeek","YY","YYYY","YYYYY","YYYYYY","gggg","ggggg","isoWeekYear","GGGG","GGGGG","isoWeekday","meridiem","A","H","S","SS","SSS","SSSS","Z","ZZ","z","zoneAbbr","zz","zoneName","X","unix","lists","pop","DDDD","_monthsShort","monthName","regex","_monthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LT","L","LL","LLL","LLLL","val","charAt","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","diff","_ordinal","postformat","_invalidDate","ret","parseIso","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","_abbr","langData","obj","flags","parseZone","clone","isDSTShifted","parsingFlags","invalidAt","inputString","dur","subtract","asFloat","that","zoneDiff","startOf","from","time","humanize","fromNow","sod","isDST","getDay","endOf","isAfter","isBefore","isSame","offset","getTimezoneOffset","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","data","withSuffix","difference","as","toIsoString","asSeconds","asMonths","require","noGlobal","webpackContext","req","webpackContextResolve","map","keys","resolve","webpackPolyfill","paths","children","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","createElement","drawPoint","x","group","point","drawPoints","style","setAttributeNS","size","drawBar","width","height","rect","_options","_fieldId","fieldId","_type","_subscribers","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","item","col","cols","getValue","update","updatedIds","addOrUpdate","_updateItem","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","getIds","getDataSet","mappedItems","filteredItem","sort","av","bv","remove","removedId","removedIds","_remove","clear","maxField","itemField","minField","distinct","fieldType","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","setData","viewOptions","getArguments","defaultFilter","dataSet","added","updated","removed","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","eye","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","colorAxis","colorGrid","colorDot","colorDotBorder","setOptions","Emitter","_setScale","scale","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","fill","stroke","strokeWidth","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","hasChildNodes","firstChild","position","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","setCameraPosition","pos","horizontal","vertical","setArmRotation","distance","setArmLength","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","getCurrent","textAlign","textBaseline","fillText","label","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","to","prettyStep","text","xText","yText","zText","xOffset","yOffset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","V","R","G","B","C","Hi","cross","topSideVisible","zAvg","transBottom","dist","sortDepth","aDiff","bDiff","crossproduct","crossProduct","radius","arc","PI","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","getMouseX","startMouseY","getMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","parameters","emit","delay","mouseX","mouseY","tooltipTimeout","clearTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","setTimeout","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","content","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","clientX","targetTouches","clientY","mixin","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","listeners","hasListeners","sub","sum","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","dataView","progress","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","LN10","step1","pow","step2","step5","toPrecision","getStep","coreProp","Core","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","snap","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","timeAxis","currentTime","customTime","itemSet","itemsData","groupsData","setItems","_initAutoResize","component","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","getSelection","getItemRange","dataset","minItem","maxStartItem","maxEndItem","setup","Hammer","READY","Event","determineEventTypes","Utils","each","gestures","gesture","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","defaults","behavior","userSelect","touchAction","touchCallout","contentZooming","userDrag","tapHighlightColor","HAS_POINTEREVENTS","pointerEnabled","msPointerEnabled","HAS_TOUCHEVENTS","IS_MOBILE","NO_MOUSEEVENTS","CALCULATE_INTERVAL","EVENT_TYPES","DIRECTION_DOWN","DIRECTION_LEFT","DIRECTION_UP","DIRECTION_RIGHT","POINTER_MOUSE","POINTER_TOUCH","POINTER_PEN","EVENT_START","EVENT_RELEASE","EVENT_TOUCH","plugins","utils","dest","src","merge","handler","iterator","context","inStr","find","inArray","hasParent","node","parent","getCenter","touches","pageX","pageY","touch","getVelocity","deltaTime","deltaX","deltaY","getAngle","touch1","touch2","atan2","getDirection","getDistance","getScale","getRotation","isVertical","direction","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","eventType","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","reset","touchList","getTouchList","touchListLength","triggerChange","trigger","changedLength","changedTouches","evData","collectEventData","identifiers","identifier","pointerType","timeStamp","srcEvent","preventManipulation","stopPropagation","stopDetect","pointers","touchlist","pointer","pointerEvent","pointerId","pt","MSPOINTER_TYPE_MOUSE","MSPOINTER_TYPE_TOUCH","MSPOINTER_TYPE_PEN","detection","current","previous","stopped","startDetect","inst","eventData","startEvent","lastEvent","lastCalcEvent","futureCalcEvent","lastCalcData","extendEventData","instOptions","getCalculatedData","cur","recalc","calcEv","calcData","velocity","angle","velocityX","velocityY","interimAngle","interimDirection","startEv","lastEv","rotation","eventStartHandler","eventHandlers","createEvent","initEvent","dispatchEvent","enable","state","dispose","eh","dragGesture","dragMaxTouches","triggered","dragMinDistance","startCenter","dragDistanceCorrection","dragLockToAxis","dragLockMinDistance","lastDirection","dragBlockVertical","dragBlockHorizontal","Drag","Gesture","holdGesture","timer","holdTimeout","holdThreshold","Hold","Release","Infinity","Swipe","swipeMinTouches","swipeMaxTouches","swipeVelocityX","swipeVelocityY","tapGesture","sincePrev","didDoubleTap","hasMoved","tapMaxDistance","tapMaxTime","doubleTapInterval","doubleTapDistance","tapAlways","Tap","Touch","preventMouse","transformGesture","scaleThreshold","rotationThreshold","transformMinScale","transformMinRotation","Transform","moveable","zoomable","zoomMin","zoomMax","_onDragStart","_onDrag","_onDragEnd","_onHold","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","hammerUtil","changed","_applyRange","newStart","newEnd","getRange","conversion","allowDragging","diffRange","fakeGesture","pointerDate","_pointerToDate","zoom","initDate","move","destroy","_isResized","resized","_previousWidth","_previousHeight","backgroundVertical","backgroundHorizontal","centerContainer","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","prevent_default","events","scrollTop","scrollTopMin","_stopAutoResize","setCustomTime","getCustomTime","getVisibleItems","what","dataRange","getWindow","borderRootHeight","borderRootWidth","autoHeight","containerHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","visibility","repaint","_startAutoResize","_onResize","lastWidth","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","foreground","majorLines","majorTexts","minorLines","minorTexts","minimumStep","lineTop","showMinorLabels","showMajorLabels","parentChanged","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineHeight","minorLineWidth","majorLineHeight","majorLineWidth","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","insertBefore","minorCharWidth","first","xFirstMajorLabel","hasNext","isMajor","_repaintMinorText","getLabelMinor","_repaintMajorText","getLabelMajor","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","majorCharWidth","arr","createTextNode","childNodes","nodeValue","measureCharMinor","measureCharMajor","autoScale","SCALE","DAY","WEEKDAY","setMinimumStep","roundToMinor","setMonth","setDate","setHours","setMinutes","setSeconds","setMilliseconds","getMilliseconds","getSeconds","getMinutes","getHours","setScale","newScale","newStep","setAutoScale","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","showCurrentTime","title","currentTimeTimer","showCustomTime","eventParams","drag","dragging","align","groupOrder","selectable","editable","updateTime","updateGroup","onAdd","onUpdate","onMove","onRemove","axis","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","selection","stackDirty","touchParams","_moveToGroup","groupId","oldGroup","UNGROUPED","box","labelSet","_updateUngrouped","_onSelectItem","_onMultiSelectItem","_onAddItem","show","addCallback","markDirty","hide","ii","unselect","select","rawVisibleItems","visibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","restack","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","offsetTop","offsetLeft","firstGroupIndex","firstGroupId","ungrouped","getLabelSet","oldItemsData","getItems","_order","getGroups","removeItem","itemData","_removeItem","groupData","groupOptions","oldGroupId","displayed","_constructByEndArray","endArray","itemFromTarget","selected","dragLeftItem","dragRightItem","itemProps","groupFromTarget","changes","ctrlKey","shiftKey","oldSelection","newSelection","xAbs","newItem","itemSetFromTarget","byStart","byEnd","inner","marker","Element","getLabelWidth","_updateVisibleItems","markerHeight","lastMarkerHeight","dirty","nostack","repositionY","setParent","_checkIfVisible","removeFromDataSet","orderByStart","orderByEnd","initialPosByStart","newVisibleItems","initialPosByEnd","_checkIfInvisible","repositionX","EPSILON","aTime","bTime","force","iMax","collidingItem","jj","collision","baseClassName","getComputedStyle","_repaintDeleteButton","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","dragLeft","dragRight","anchor","deleteButton","itemSetHeight","marginLeft","linegraph","getLegend","isGroupVisible","yAxisOrientation","defaultGroup","sampling","graphHeight","shaded","barChart","allowOverlap","catmullRom","parametrization","alpha","dataAxis","icons","legend","lastStart","svgElements","groupsUsingDefaultStyles","rangePerPixelInv","svg","_updateGraph","display","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","removeGroup","addGroup","groupsContent","ungroupedCounter","preprocessedGroup","preprocessedGroupData","processedGroupData","groupRanges","changeCalled","minDate","maxDate","_preprocessData","_updateYAxis","_convertYvalues","_drawLineGraph","_drawBarGraph","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","master","lineOffset","stepPixelsForced","stepPixels","axisUsed","coreDistance","minWidth","intersections","amount","resolved","drawData","_getSafeDrawData","nextKey","prevKey","zeroPosition","slots","total","slot","path","svgHeight","_catmullRom","_linear","dFill","fillPath","_drawPoints","datapoints","xValue","yValue","extractedData","increment","amountOfPoints","xDistance","pointsPerPixel","convertValue","setZeroPosition","_catmullRomUniform","p0","bp1","bp2","normalization","d1","d2","d3","N","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","lines","labels","conversionFactor","amountOfGroups","graphOptions","lineContainer","_redrawGroupIcons","iconHeight","iconOffset","drawIcon","activeGroups","_redrawLabels","marginRange","amountOfSteps","stepDifference","valueAtZero","marginEnd","marginStartPos","maxLabelSize","_redrawLabel","_redrawLine","characterHeight","largestWidth","invertedValue","convertedValue","textMinor","textMajor","customRange","stepIndex","marginStart","majorSteps","minorSteps","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","niceStart","niceEnd","rounded","usingDefaultStyle","SVGcontainer","fillHeight","outline","barWidth","bar1Height","bar2Height","icon","side","iconSize","iconSpacing","textArea","drawLegendIcons","paddingTop","_initializeMixinLoaders","renderRefreshRate","renderTimestep","renderTime","maxPhysicsTicksPerRender","physicsDiscreteStepsize","initializing","triggerFunctions","edit","editEdge","connect","del","nodes","mass","radiusMin","radiusMax","shape","image","fixed","fontColor","fontSize","fontFace","level","highlightColor","edges","widthSelectionMultiplier","hoverWidth","fontFill","arrowScaleFactor","dash","gap","altLength","inheritColor","configurePhysics","physics","barnesHut","theta","gravitationalConstant","centralGravity","springLength","springConstant","damping","repulsion","nodeDistance","hierarchicalRepulsion","clustering","initialMaxNodes","clusterThreshold","reduceToNodes","chainThreshold","clusterEdgeThreshold","sectorThreshold","screenSizeThreshold","fontSizeMultiplier","maxFontSize","forceAmplification","distanceAmplification","edgeGrowth","nodeScaling","maxNodeSizeIncrements","activeAreaBoxSize","clusterLevelDifference","navigation","keyboard","speed","dataManipulation","initiallyVisible","hierarchicalLayout","levelSeparation","nodeSpacing","freezeForStabilization","smoothCurves","dynamic","roundness","dynamicSmoothCurves","maxVelocity","minVelocity","stabilize","stabilizationIterations","link","editNode","back","addDescription","linkDescription","editEdgeDescription","addError","linkError","editError","editBoundError","deleteError","deleteClusterError","dragNetwork","dragNodes","hideEdgesOnDrag","hideNodesOnDrag","constants","hoverObj","controlNodesActive","images","setOnloadCallback","_redraw","xIncrement","yIncrement","zoomIncrement","_loadPhysicsSystem","_loadSectorSystem","_loadClusterSystem","_loadSelectionSystem","_loadHierarchySystem","_setTranslation","freezeSimulation","cachedFunctions","calculationNodes","calculationNodeIndices","nodeIndices","canvasTopLeft","canvasBottomRight","pointerPosition","areaCenter","previousScale","nodesData","edgesData","nodesListeners","_addNodes","_updateNodes","_removeNodes","edgesListeners","_addEdges","_updateEdges","_removeEdges","moving","_setupHierarchicalLayout","zoomExtent","startWithClustering","mousetrap","MixinLoader","_getScriptPath","scripts","getElementsByTagName","_getRange","minY","maxY","minX","maxX","nodeId","_findCenter","_centerNetwork","initialZoom","disableStart","zoomLevel","numberOfNodes","yDistance","xZoomLevel","yZoomLevel","_updateNodeIndexList","_clearNodeIndexList","idx","dotData","DOTToGraph","gephi","gephiData","parseGephi","_setNodes","_setEdges","_putDataInSector","_stabilize","onEdit","onEditEdge","onConnect","onDelete","editMode","newColorObj","groupname","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","_createKeyBinds","pinch","_onTap","_onDoubleTap","_onRelease","_onMouseMoveTitle","_moveUp","_yStopMoving","_moveDown","_moveLeft","_xStopMoving","_moveRight","_zoomIn","_stopZoom","_zoomOut","_createManipulatorBar","_deleteSelected","_getPointer","pinched","_getScale","_handleTouch","_handleDragStart","_getNodeAt","_getTranslation","isSelected","_selectObject","objectId","selectionObj","xFixed","yFixed","_handleOnDrag","_XconvertDOMtoCanvas","_XconvertCanvasToDOM","_YconvertDOMtoCanvas","_YconvertCanvasToDOM","_handleTap","_handleDoubleTap","_handleOnHold","_handleOnRelease","_zoom","scaleOld","preScaleDragPointer","DOMtoCanvas","scaleFrac","tx","ty","updateClustersDefault","postScaleDragPointer","canvasToDOM","popupObj","_checkHidePopup","checkShow","_checkShowPopup","popupTimer","edgeId","_getEdgeAt","_hoverObject","_blurObject","lastPopupNode","getTitle","isOverlappingWith","edge","connected","popup","setPosition","setText","manipulationDiv","navigationDivs","oldNodesData","_updateSelection","_resetLevels","_updateCalculationNodes","_reconnectEdges","_updateValueRange","updateLabels","setProperties","properties","oldEdgesData","oldEdge","disconnect","showInternalIds","_createBezierNodes","via","sectors","setValueRange","save","translate","_doInAllSectors","restore","offsetX","offsetY","_drawNodes","alwaysShow","setScaleAndPos","inArea","draw","sMax","_drawEdges","_drawControlNodes","_freezeDefinedNodes","_physicsTick","_restoreFrozenNodes","iterations","fixedData","_isMoving","vmin","isMoving","_discreteStepNodes","checkMovement","nodesPresent","discreteStepLimited","discreteStep","vminCorrected","_doInAllActiveSectors","_doInSupportSector","_animationStep","_handleNavigation","calculationTime","maxSteps","timeRequired","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","ua","requiresTimeout","toggleFreeze","parentEdgeId","internalMultiplier","positionBezierNode","storePosition","dataArray","allowedToMoveX","allowedToMoveY","focusOnNode","nodePosition","requiredScale","canvasCenter","distanceFromCenter","_addEvent","_characterFromEvent","fromCharCode","_MAP","_KEYCODE_MAP","_stop","tag_name","tagName","contentEditable","_modifiersMatch","modifiers1","modifiers2","_resetSequences","do_not_reset","active_sequences","_sequence_levels","_inside_sequence","_getMatches","character","modifiers","combination","matches","_isModifier","seq","combo","_eventModifiers","altKey","metaKey","_fireCallback","cancelBubble","_handleCharacter","processed_sequence_callback","_handleKey","keyCode","_ignore_next_keyup","_resetSequenceTimer","_reset_timer","_getReverseMap","_REVERSE_MAP","_pickBestAction","_bindSequence","_increaseSequence","_callbackAndReset","_bindSingle","sequence_name","sequence","_SPECIAL_ALIASES","_SHIFT_MAP","_bindMultiple","combinations",8,9,13,16,17,18,20,27,32,33,34,35,36,37,38,39,40,45,46,91,93,224,106,107,109,110,111,186,187,188,189,190,191,192,219,220,221,222,"~","!","@","#","$","%","^","&","*","(",")","_","+",":","\"","<",">","?","|","command","return","escape","_direct_map","unbind","parseDOT","parseGraph","nextPreview","isAlphaNumeric","regexAlphaNumeric","o","addNode","graphs","attr","addEdge","createEdge","getToken","tokenType","TOKENTYPE","NULL","isComment","DELIMITER","c2","DELIMITERS","IDENTIFIER","newSyntaxError","UNKNOWN","chop","parseStatements","parseStatement","subgraph","parseSubgraph","parseEdge","parseAttributeStatement","parseNodeStatement","subgraphs","parseAttributeList","message","maxLength","forEach2","elem1","elem2","convertEdge","dotEdge","graphEdge","graphData","dotNode","graphNode","subEdge","{","}","[","]",";","=",",","->","--","gephiJSON","allowedToMove","gEdges","gNodes","gEdge","source","attributes","gNode","defaultIndex","DEFAULT","load","url","img","Image","onload","imagelist","grouplist","networkConstants","dynamicEdges","reroutedEdges","fontDrawThreshold","horizontalAlignLeft","verticalAlignTop","baseRadiusValue","radiusFixed","preassignedLevel","fx","fy","vx","vy","resetCluster","dynamicEdgesLength","clusterSession","clusterSizeWidthFactor","clusterSizeHeightFactor","clusterSizeRadiusFactor","growthIndicator","networkScaleInv","networkScale","formationScale","clusterSize","containedNodes","containedEdges","clusterSessions","attachEdge","detachEdge","originalLabel","triggerFunction","groupObj","imageObj","_drawDatabase","resize","_resizeDatabase","_drawBox","_resizeBox","_drawCircle","_resizeCircle","_drawEllipse","_resizeEllipse","_drawImage","_resizeImage","_drawText","_resizeText","_drawDot","_resizeShape","_drawSquare","_drawTriangle","_drawTriangleDown","_drawStar","_reset","clearSizeCache","distanceToBorder","_setForce","_addForce","isFixed","globalAlpha","drawImage","_label","textSize","getTextSize","clusterLineWidth","selectionLineWidth","borderWidthSelected","roundRect","database","diameter","circle","defaultSize","ellipse","_drawShape","radiusMultiplier","baseline","labelUnderNode","lineCount","yLine","measureText","inView","clearVelocity","updateVelocity","massBeforeClustering","energyBefore","fromId","toId","widthSelected","originalFromId","originalToId","widthFixed","lengthFixed","controlNodesEnabled","controlNodes","positions","connectedNode","_drawLine","_drawArrow","_drawArrowCenter","_drawDashLine","xFrom","yFrom","xTo","yTo","xObj","yObj","_getDistanceToEdge","_getColor","colorObj","_getLineWidth","_line","midpointX","midpointY","_pointOnLine","_circle","_pointOnCircle","_getViaCoordinates","xVia","yVia","quadraticCurveTo","fillRect","mozDash","setLineDash","pattern","lineDashOffset","mozDashOffset","lineCap","dashedLine","percentage","arrow","edgeSegmentLength","fromBorderDist","fromBorderPoint","toBorderDist","toBorderPoint","x1","y1","x2","y2","x3","y3","lastX","lastY","minDistance","_getDistanceToLine","px","py","something","u","nodeIdFrom","nodeIdTo","getControlNodePositions","_enableControlNodes","_disableControlNodes","_getSelectedControlNode","fromDistance","toDistance","_restoreControlNodes","styleAttr","fontFamily","WebkitBorderRadius","whiteSpace","maxWidth","PhysicsMixin","ClusterMixin","SectorsMixin","SelectionMixin","ManipulationMixin","NavigationMixin","HierarchicalLayoutMixin","_loadMixin","sourceVariable","mixinFunction","_clearMixin","_loadSelectedForceSolver","_loadPhysicsConfiguration","hubThreshold","activeSector","drawingNode","blockConnectingEdgeSelection","forceAppendSelection","editModeDiv","closeDiv","_cleanNavigation","_loadNavigationElements","graphToggleSmoothCurves","graph_toggleSmooth","getElementById","graphRepositionNodes","showValueOfRange","repositionNodes","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","_restoreNodes","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","clusterToFit","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","_sector","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","nameArray","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","centerX","centerY","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_drawTree","_drawBranch","branch","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_addSector","decreaseClusterLevel","_expandClusterNode","_updateDynamicEdges","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","_collapseSector","_formClusters","_openClusters","_openClustersBySize","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","openAll","containedNodeId","childNode","_expelChildFromParent","_unselectAll","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","correction","edgeToId","edgeFromId","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","overlappingNodes","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","overlappingEdges","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","_removeFromSelection","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","nodeIds","getSelectedNodes","edgeIds","getSelectedEdges","idArray","RangeError","selectNodes","selectEdges","_clearManipulatorBar","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","boundFunction","edgeBeingEdited","selectedControlNode","addNodeButton","_createAddNodeToolbar","addEdgeButton","_createAddEdgeToolbar","editButton","_editNode","_createEditEdgeToolbar","editModeButton","backButton","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","smooth","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","wrapper","navigationDivActions","_stopMovement","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","maxCount","_setLevel","parentId","parentLevel","nodeMoved","CanvasRenderingContext2D","square","s2","ir","triangleDown","star","n","r2d","kappa","ox","oy","xe","ye","xm","ym","bezierCurveTo","wEllipse","hEllipse","ymb","yeb","xt","yt","xi","yi","xl","yl","xr","yr","dashArray","dashLength","dashCount","slope","distRemaining","dashIndex"],"mappings":"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"} \ No newline at end of file diff --git a/dist/vis.min.js b/dist/vis.min.js index 7918d34c..555696f2 100644 --- a/dist/vis.min.js +++ b/dist/vis.min.js @@ -22,16 +22,16 @@ * License for the specific language governing permissions and limitations under * the License. */ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(s){if(i[s])return i[s].exports;var o=i[s]={exports:{},id:s,loaded:!1};return t[s].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(2),e.DataSet=i(3),e.DataView=i(4),e.Graph3d=i(5),e.graph3d={Camera:i(6),Filter:i(7),Point2d:i(8),Point3d:i(9),Slider:i(10),StepNumber:i(11)},e.Timeline=i(12),e.Graph2d=i(13),e.timeline={DataStep:i(14),Range:i(15),stack:i(16),TimeStep:i(17),components:{items:{Item:i(28),ItemBox:i(29),ItemPoint:i(30),ItemRange:i(31)},Component:i(18),CurrentTime:i(19),CustomTime:i(20),DataAxis:i(21),GraphGroup:i(22),Group:i(23),ItemSet:i(24),Legend:i(25),LineGraph:i(26),TimeAxis:i(27)}},e.Network=i(32),e.network={Edge:i(33),Groups:i(34),Images:i(35),Node:i(36),Popup:i(37),dotparser:i(38),gephiParser:i(39)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(40),e.hammer=i(41)},function(module,exports,__webpack_require__){var moment=__webpack_require__(40);exports.isNumber=function(t){return t instanceof Number||"number"==typeof t},exports.isString=function(t){return t instanceof String||"string"==typeof t},exports.isDate=function(t){if(t instanceof Date)return!0;if(exports.isString(t)){var e=ASPDateRegex.exec(t);if(e)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},exports.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},exports.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},exports.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var s=arguments[e];for(var o in s)s.hasOwnProperty(o)&&(t[o]=s[o])}return t},exports.selectiveExtend=function(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=2;ii;i++)if(t[i]!=e[i])return!1;return!0},exports.convert=function(t,e){var i;if(void 0===t)return void 0;if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(moment.isMoment(t))return new Date(t.valueOf());if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])):moment(t).toDate();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"Moment":if(exports.isNumber(t))return moment(t);if(t instanceof Date)return moment(t.valueOf());if(moment.isMoment(t))return moment(t);if(exports.isString(t))return i=ASPDateRegex.exec(t),moment(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"ISODate":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(moment.isMoment(t))return t.toDate().toISOString();if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ISODate");case"ASPDate":if(exports.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(exports.isString(t)){i=ASPDateRegex.exec(t);var s;return s=i?new Date(Number(i[1])).valueOf():new Date(t).valueOf(),"/Date("+s+")/"}throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+e+'"')}};var ASPDateRegex=/^\/?Date\((\-?\d+)/i;exports.getType=function(t){var e=typeof t;return"object"==e?null==t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":t instanceof Array?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},exports.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},exports.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},exports.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},exports.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},exports.forEach=function(t,e){var i,s;if(t instanceof Array)for(i=0,s=t.length;s>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},exports.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},exports.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},exports.addEventListener=function(t,e,i,s){t.addEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,s)):t.attachEvent("on"+e,i)},exports.removeEventListener=function(t,e,i,s){t.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,s)):t.detachEvent("on"+e,i)},exports.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},exports.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},exports.option={},exports.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},exports.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},exports.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},exports.option.asSize=function(t,e){return"function"==typeof t&&(t=t()),exports.isString(t)?t:exports.isNumber(t)?t+"px":e||null},exports.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},exports.GiveDec=function(Hex){var Value;return Value="A"==Hex?10:"B"==Hex?11:"C"==Hex?12:"D"==Hex?13:"E"==Hex?14:"F"==Hex?15:eval(Hex)},exports.GiveHex=function(t){var e;return e=10==t?"A":11==t?"B":12==t?"C":13==t?"D":14==t?"E":15==t?"F":""+t},exports.parseColor=function(t){var e;if(exports.isString(t)){if(exports.isValidRGB(t)){var i=t.substr(4).substr(0,t.length-5).split(",");t=exports.RGBToHex(i[0],i[1],i[2])}if(exports.isValidHex(t)){var s=exports.hexToHSV(t),o={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},n={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},r=exports.HSVToHex(n.h,n.h,n.v),a=exports.HSVToHex(o.h,o.s,o.v);e={background:t,border:r,highlight:{background:a,border:r},hover:{background:a,border:r}}}else e={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else e={},e.background=t.background||"white",e.border=t.border||e.background,exports.isString(t.highlight)?e.highlight={border:t.highlight,background:t.highlight}:(e.highlight={},e.highlight.background=t.highlight&&t.highlight.background||e.background,e.highlight.border=t.highlight&&t.highlight.border||e.border),exports.isString(t.hover)?e.hover={border:t.hover,background:t.hover}:(e.hover={},e.hover.background=t.hover&&t.hover.background||e.background,e.hover.border=t.hover&&t.hover.border||e.border);return e},exports.hexToRGB=function(t){t=t.replace("#","").toUpperCase();var e=exports.GiveDec(t.substring(0,1)),i=exports.GiveDec(t.substring(1,2)),s=exports.GiveDec(t.substring(2,3)),o=exports.GiveDec(t.substring(3,4)),n=exports.GiveDec(t.substring(4,5)),r=exports.GiveDec(t.substring(5,6)),a=16*e+i,h=16*s+o,i=16*n+r;return{r:a,g:h,b:i}},exports.RGBToHex=function(t,e,i){var s=exports.GiveHex(Math.floor(t/16)),o=exports.GiveHex(t%16),n=exports.GiveHex(Math.floor(e/16)),r=exports.GiveHex(e%16),a=exports.GiveHex(Math.floor(i/16)),h=exports.GiveHex(i%16),d=s+o+n+r+a+h;return"#"+d},exports.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var s=Math.min(t,Math.min(e,i)),o=Math.max(t,Math.max(e,i));if(s==o)return{h:0,s:0,v:s};var n=t==s?e-i:i==s?t-e:i-t,r=t==s?3:i==s?1:5,a=60*(r-n/(o-s))/360,h=(o-s)/o,d=o;return{h:a,s:h,v:d}},exports.HSVToRGB=function(t,e,i){var s,o,n,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:s=i,o=l,n=h;break;case 1:s=d,o=i,n=h;break;case 2:s=h,o=i,n=l;break;case 3:s=h,o=d,n=i;break;case 4:s=l,o=h,n=i;break;case 5:s=i,o=h,n=d}return{r:Math.floor(255*s),g:Math.floor(255*o),b:Math.floor(255*n)}},exports.HSVToHex=function(t,e,i){var s=exports.HSVToRGB(t,e,i);return exports.RGBToHex(s.r,s.g,s.b)},exports.hexToHSV=function(t){var e=exports.hexToRGB(t);return exports.RGBToHSV(e.r,e.g,e.b)},exports.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},exports.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},exports.selectiveBridgeObject=function(t,e){if("object"==typeof e){for(var i=Object.create(e),s=0;sa;)o=void 0===s?n[u][i]:n[u][i][s],n[u].isVisible(e)?h=!0:(o=r&&console.log("BinarySearch too many iterations. Aborting.")}return u},exports.binarySearchGeneric=function(t,e,i,s){var o,n,r,a,h=1e4,d=0,l=t,c=!1,p=0,u=l.length,f=p,m=u,g=Math.floor(.5*(u+p));if(0==u)g=-1;else if(1==u)r=l[g][i],g=r==e?0:-1;else{for(u-=1;0==c&&h>d;)n=l[Math.max(0,g-1)][i],r=l[g][i],a=l[Math.min(l.length-1,g+1)][i],r==e||e>n&&r>e||e>r&&a>e?(c=!0,r!=e&&("before"==s?e>n&&r>e&&(g=Math.max(0,g-1)):e>r&&a>e&&(g=Math.min(l.length-1,g+1)))):(e>r?f=Math.floor(.5*(u+p)):m=Math.floor(.5*(u+p)),o=Math.floor(.5*(u+p)),p==f&&u==m?(g=-1,c=!0):(u=m,p=f,g=Math.floor(.5*(u+p)))),d++;d>=h&&console.log("BinarySearch too many iterations. Aborting.")}return g}},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(s)):(s=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.getDOMElement=function(t,e,i){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.drawPoint=function(t,i,s,o,n){var r;return"circle"==s.options.drawPoints.style?(r=e.getSVGElement("circle",o,n),r.setAttributeNS(null,"cx",t),r.setAttributeNS(null,"cy",i),r.setAttributeNS(null,"r",.5*s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")):(r=e.getSVGElement("rect",o,n),r.setAttributeNS(null,"x",t-.5*s.options.drawPoints.size),r.setAttributeNS(null,"y",i-.5*s.options.drawPoints.size),r.setAttributeNS(null,"width",s.options.drawPoints.size),r.setAttributeNS(null,"height",s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")),r},e.drawBar=function(t,i,s,o,n,r,a){var h=e.getSVGElement("rect",r,a);h.setAttributeNS(null,"x",t-.5*s),h.setAttributeNS(null,"y",i),h.setAttributeNS(null,"width",s),h.setAttributeNS(null,"height",o),h.setAttributeNS(null,"class",n)}},function(t,e,i){function s(t,e){if(!t||Array.isArray(t)||o.isDataTable(t)||(e=t,t=null),this._options=e||{},this._data={},this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i in this._options.type)if(this._options.type.hasOwnProperty(i)){var s=this._options.type[i];this._type[i]="Date"==s||"ISODate"==s||"ASPDate"==s?"Date":s}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t)}var o=i(1);s.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},s.prototype.subscribe=s.prototype.on,s.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},s.prototype.unsubscribe=s.prototype.off,s.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var s=[];t in this._subscribers&&(s=s.concat(this._subscribers[t])),"*"in this._subscribers&&(s=s.concat(this._subscribers["*"]));for(var o=0;or;r++)i=n._addItem(t[r]),s.push(i);else if(o.isDataTable(t))for(var h=this._getColumnNames(t),d=0,l=t.getNumberOfRows();l>d;d++){for(var c={},p=0,u=h.length;u>p;p++){var f=h[p];c[f]=t.getValue(d,p)}i=n._addItem(c),s.push(i)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),s.push(i)}return s.length&&this._trigger("add",{items:s},e),s},s.prototype.update=function(t,e){var i=[],s=[],n=this,r=n._fieldId,a=function(t){var e=t[r];n._data[e]?(e=n._updateItem(t),s.push(e)):(e=n._addItem(t),i.push(e))};if(Array.isArray(t))for(var h=0,d=t.length;d>h;h++)a(t[h]);else if(o.isDataTable(t))for(var l=this._getColumnNames(t),c=0,p=t.getNumberOfRows();p>c;c++){for(var u={},f=0,m=l.length;m>f;f++){var g=l[f];u[g]=t.getValue(c,f)}a(u)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");a(t)}return i.length&&this._trigger("add",{items:i},e),s.length&&this._trigger("update",{items:s},e),i.concat(s)},s.prototype.get=function(){var t,e,i,s,n=this,r=o.getType(arguments[0]);"String"==r||"Number"==r?(t=arguments[0],i=arguments[1],s=arguments[2]):"Array"==r?(e=arguments[0],i=arguments[1],s=arguments[2]):(i=arguments[0],s=arguments[1]);var a;if(i&&i.returnType){var h=["DataTable","Array","Object"];if(a=-1==h.indexOf(i.returnType)?"Array":i.returnType,s&&a!=o.getType(s))throw new Error('Type of parameter "data" ('+o.getType(s)+") does not correspond with specified options.type ("+i.type+")");if("DataTable"==a&&!o.isDataTable(s))throw new Error('Parameter "data" must be a DataTable when options.type is "DataTable"')}else a=s&&"DataTable"==o.getType(s)?"DataTable":"Array";var d,l,c,p,u=i&&i.type||this._options.type,f=i&&i.filter,m=[];if(void 0!=t)d=n._getItem(t,u),f&&!f(d)&&(d=null);else if(void 0!=e)for(c=0,p=e.length;p>c;c++)d=n._getItem(e[c],u),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!f||f(d))&&m.push(d));if(i&&i.order&&void 0==t&&this._sort(m,i.order),i&&i.fields){var g=i.fields;if(void 0!=t)d=this._filterFields(d,g);else for(c=0,p=m.length;p>c;c++)m[c]=this._filterFields(m[c],g)}if("DataTable"==a){var v=this._getColumnNames(s);if(void 0!=t)n._appendRow(s,v,d);else for(c=0;cc;c++)s.push(m[c]);return s}return m},s.prototype.getIds=function(t){var e,i,s,o,n,r=this._data,a=t&&t.filter,h=t&&t.order,d=t&&t.type||this._options.type,l=[];if(a)if(h){n=[];for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&n.push(o));for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&l.push(o[this._fieldId]));else if(h){n=[];for(s in r)r.hasOwnProperty(s)&&n.push(r[s]);for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=r[s],l.push(o[this._fieldId]));return l},s.prototype.getDataSet=function(){return this},s.prototype.forEach=function(t,e){var i,s,o=e&&e.filter,n=e&&e.type||this._options.type,r=this._data;if(e&&e.order)for(var a=this.get(e),h=0,d=a.length;d>h;h++)i=a[h],s=i[this._fieldId],t(i,s);else for(s in r)r.hasOwnProperty(s)&&(i=this._getItem(s,n),(!o||o(i))&&t(i,s))},s.prototype.map=function(t,e){var i,s=e&&e.filter,o=e&&e.type||this._options.type,n=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,o),(!s||s(i))&&n.push(t(i,a)));return e&&e.order&&this._sort(n,e.order),n},s.prototype._filterFields=function(t,e){var i={};for(var s in t)t.hasOwnProperty(s)&&-1!=e.indexOf(s)&&(i[s]=t[s]);return i},s.prototype._sort=function(t,e){if(o.isString(e)){var i=e;t.sort(function(t,e){var s=t[i],o=e[i];return s>o?1:o>s?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},s.prototype.remove=function(t,e){var i,s,o,n=[];if(Array.isArray(t))for(i=0,s=t.length;s>i;i++)o=this._remove(t[i]),null!=o&&n.push(o);else o=this._remove(t),null!=o&&n.push(o);return n.length&&this._trigger("remove",{items:n},e),n},s.prototype._remove=function(t){if(o.isNumber(t)||o.isString(t)){if(this._data[t])return delete this._data[t],t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],e}return null},s.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this._trigger("remove",{items:e},t),e},s.prototype.max=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||r>s)&&(i=n,s=r)}return i},s.prototype.min=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||s>r)&&(i=n,s=r)}return i},s.prototype.distinct=function(t){var e,i=this._data,s=[],n=this._options.type&&this._options.type[t]||null,r=0;for(var a in i)if(i.hasOwnProperty(a)){var h=i[a],d=h[t],l=!1;for(e=0;r>e;e++)if(s[e]==d){l=!0;break}l||void 0===d||(s[r]=d,r++)}if(n)for(e=0;ei;i++)e[i]=t.getColumnId(i)||t.getColumnLabel(i);return e},s.prototype._appendRow=function(t,e,i){for(var s=t.addRow(),o=0,n=e.length;n>o;o++){var r=e[o];t.setValue(s,o,i[r])}},t.exports=s},function(t,e,i){function s(t,e){this._data=null,this._ids={},this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var o=i(1),n=i(3);s.prototype.setData=function(t){var e,i,s;if(this._data){this._data.unsubscribe&&this._data.unsubscribe("*",this.listener),e=[];for(var o in this._ids)this._ids.hasOwnProperty(o)&&e.push(o);this._ids={},this._trigger("remove",{items:e})}if(this._data=t,this._data){for(this._fieldId=this._options.fieldId||this._data&&this._data.options&&this._data.options.fieldId||"id",e=this._data.getIds({filter:this._options&&this._options.filter}),i=0,s=e.length;s>i;i++)o=e[i],this._ids[o]=!0;this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},s.prototype.get=function(){var t,e,i,s=this,n=o.getType(arguments[0]);"String"==n||"Number"==n||"Array"==n?(t=arguments[0],e=arguments[1],i=arguments[2]):(e=arguments[0],i=arguments[1]);var r=o.extend({},this._options,e);this._options.filter&&e&&e.filter&&(r.filter=function(t){return s._options.filter(t)&&e.filter(t)});var a=[];return void 0!=t&&a.push(t),a.push(r),a.push(i),this._data&&this._data.get.apply(this._data,a)},s.prototype.getIds=function(t){var e;if(this._data){var i,s=this._options.filter;i=t&&t.filter?s?function(e){return s(e)&&t.filter(e)}:t.filter:s,e=this._data.getIds({filter:i,order:t&&t.order})}else e=[];return e},s.prototype.getDataSet=function(){for(var t=this;t instanceof s;)t=t._data;return t||null},s.prototype._onEvent=function(t,e,i){var s,o,n,r,a=e&&e.items,h=this._data,d=[],l=[],c=[];if(a&&h){switch(t){case"add":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r&&(this._ids[n]=!0,d.push(n));break;case"update":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r?this._ids[n]?l.push(n):(this._ids[n]=!0,d.push(n)):this._ids[n]&&(delete this._ids[n],c.push(n));break;case"remove":for(s=0,o=a.length;o>s;s++)n=a[s],this._ids[n]&&(delete this._ids[n],c.push(n))}d.length&&this._trigger("add",{items:d},i),l.length&&this._trigger("update",{items:l},i),c.length&&this._trigger("remove",{items:c},i)}},s.prototype.on=n.prototype.on,s.prototype.off=n.prototype.off,s.prototype._trigger=n.prototype._trigger,s.prototype.subscribe=s.prototype.on,s.prototype.unsubscribe=s.prototype.off,t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this.containerElement=t,this.width="400px",this.height="400px",this.margin=10,this.defaultXCenter="55%",this.defaultYCenter="50%",this.xLabel="x",this.yLabel="y",this.zLabel="z",this.filterLabel="time",this.legendLabel="value",this.style=s.STYLE.DOT,this.showPerspective=!0,this.showGrid=!0,this.keepAspectRatio=!0,this.showShadow=!1,this.showGrayBottom=!1,this.showTooltip=!1,this.verticalRatio=.5,this.animationInterval=1e3,this.animationPreload=!1,this.camera=new l,this.eye=new h(0,0,-1),this.dataTable=null,this.dataPoints=null,this.colX=void 0,this.colY=void 0,this.colZ=void 0,this.colValue=void 0,this.colFilter=void 0,this.xMin=0,this.xStep=void 0,this.xMax=1,this.yMin=0,this.yStep=void 0,this.yMax=1,this.zMin=0,this.zStep=void 0,this.zMax=1,this.valueMin=0,this.valueMax=1,this.xBarWidth=1,this.yBarWidth=1,this.colorAxis="#4D4D4D",this.colorGrid="#D3D3D3",this.colorDot="#7DC1FF",this.colorDotBorder="#3267D2",this.create(),this.setOptions(i),e&&this.setData(e)}var o=i(46),n=i(3),r=i(4),a=i(1),h=i(9),d=i(8),l=i(6),c=i(7),p=i(10),u=i(11);o(s.prototype),s.prototype._setScale=function(){this.scale=new h(1/(this.xMax-this.xMin),1/(this.yMax-this.yMin),1/(this.zMax-this.zMin)),this.keepAspectRatio&&(this.scale.x3&&(this.colFilter=3);else{if(this.style!==s.STYLE.DOTCOLOR&&this.style!==s.STYLE.DOTSIZE&&this.style!==s.STYLE.BARCOLOR&&this.style!==s.STYLE.BARSIZE)throw'Unknown style "'+this.style+'"';this.colX=0,this.colY=1,this.colZ=2,this.colValue=3,t.getNumberOfColumns()>4&&(this.colFilter=4)}},s.prototype.getNumberOfRows=function(t){return t.length},s.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},s.prototype.getDistinctValues=function(t,e){for(var i=[],s=0;st[s][e]&&(i.min=t[s][e]),i.maxt;t++){var m=(t-p)/(f-p),g=240*m,v=this._hsv2rgb(g,1,1);c.strokeStyle=v,c.beginPath(),c.moveTo(h,r+t),c.lineTo(a,r+t),c.stroke()}c.strokeStyle=this.colorAxis,c.strokeRect(h,r,i,n)}if(this.style===s.STYLE.DOTSIZE&&(c.strokeStyle=this.colorAxis,c.fillStyle=this.colorDot,c.beginPath(),c.moveTo(h,r),c.lineTo(a,r),c.lineTo(a-i+e,d),c.lineTo(h,d),c.closePath(),c.fill(),c.stroke()),this.style===s.STYLE.DOTCOLOR||this.style===s.STYLE.DOTSIZE){var y=5,b=new u(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,o=this._convert3Dto2D(new h(x,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next()}for(g.lineWidth=1,s=void 0===this.defaultYStep,i=new u(this.yMin,this.yMax,this.yStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,o=this._convert3Dto2D(new h(n,i.getCurrent(),this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next();for(g.lineWidth=1,s=void 0===this.defaultZStep,i=new u(this.zMin,this.zMax,this.zStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax;!i.end();)t=this._convert3Dto2D(new h(n,r,i.getCurrent())),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(t.x-b,t.y),g.stroke(),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(i.getCurrent()+" ",t.x-5,t.y),i.next();g.lineWidth=1,t=this._convert3Dto2D(new h(n,r,this.zMin)),e=this._convert3Dto2D(new h(n,r,this.zMax)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),g.lineWidth=1,p=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),p=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),g.lineWidth=1,t=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),t=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke();var w=this.xLabel;w.length>0&&(c=.1/this.scale.y,n=(this.xMin+this.xMax)/2,r=Math.cos(_)>0?this.yMin-c:this.yMax+c,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(w,o.x,o.y));var S=this.yLabel;S.length>0&&(l=.1/this.scale.x,n=Math.sin(_)>0?this.xMin-l:this.xMax+l,r=(this.yMin+this.yMax)/2,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(S,o.x,o.y));var M=this.zLabel;M.length>0&&(d=30,n=Math.cos(_)>0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax,a=(this.zMin+this.zMax)/2,o=this._convert3Dto2D(new h(n,r,a)),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(M,o.x-d,o.y))},s.prototype._hsv2rgb=function(t,e,i){var s,o,n,r,a,h;switch(r=i*e,a=Math.floor(t/60),h=r*(1-Math.abs(t/60%2-1)),a){case 0:s=r,o=h,n=0;break;case 1:s=h,o=r,n=0;break;case 2:s=0,o=r,n=h;break;case 3:s=0,o=h,n=r;break;case 4:s=h,o=0,n=r;break;case 5:s=r,o=0,n=h;break;default:s=0,o=0,n=0}return"RGB("+parseInt(255*s)+","+parseInt(255*o)+","+parseInt(255*n)+")"},s.prototype._redrawDataGrid=function(){var t,e,i,o,n,r,a,d,l,c,p,u,f,m=this.frame.canvas,g=m.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(n=0;n0}else r=!0;r?(f=(t.point.z+e.point.z+i.point.z+o.point.z)/4,c=240*(1-(f-this.zMin)*this.scale.z/this.verticalRatio),p=1,this.showShadow?(u=Math.min(1+S.x/M/2,1),a=this._hsv2rgb(c,p,u),d=a):(u=1,a=this._hsv2rgb(c,p,u),d=this.colorAxis)):(a="gray",d=this.colorAxis),l=.5,g.lineWidth=l,g.fillStyle=a,g.strokeStyle=d,g.beginPath(),g.moveTo(t.screen.x,t.screen.y),g.lineTo(e.screen.x,e.screen.y),g.lineTo(o.screen.x,o.screen.y),g.lineTo(i.screen.x,i.screen.y),g.closePath(),g.fill(),g.stroke()}}else for(n=0;np&&(p=0);var u,f,m;this.style===s.STYLE.DOTCOLOR?(u=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)):this.style===s.STYLE.DOTSIZE?(f=this.colorDot,m=this.colorDotBorder):(u=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)),i.lineWidth=1,i.strokeStyle=m,i.fillStyle=f,i.beginPath(),i.arc(d.screen.x,d.screen.y,p,0,2*Math.PI,!0),i.fill(),i.stroke()}}},s.prototype._redrawDataBar=function(){var t,e,i,o,n=this.frame.canvas,r=n.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(t=0;t0&&(t=this.dataPoints[0],s.lineWidth=1,s.strokeStyle="blue",s.beginPath(),s.moveTo(t.screen.x,t.screen.y)),e=1;e0&&s.stroke()}},s.prototype._onMouseDown=function(t){if(t=t||window.event,this.leftButtonDown&&this._onMouseUp(t),this.leftButtonDown=t.which?1===t.which:1===t.button,this.leftButtonDown||this.touchDown){this.startMouseX=getMouseX(t),this.startMouseY=getMouseY(t),this.startStart=new Date(this.start),this.startEnd=new Date(this.end),this.startArmRotation=this.camera.getArmRotation(),this.frame.style.cursor="move";var e=this;this.onmousemove=function(t){e._onMouseMove(t)},this.onmouseup=function(t){e._onMouseUp(t)},a.addEventListener(document,"mousemove",e.onmousemove),a.addEventListener(document,"mouseup",e.onmouseup),a.preventDefault(t)}},s.prototype._onMouseMove=function(t){t=t||window.event;var e=parseFloat(getMouseX(t))-this.startMouseX,i=parseFloat(getMouseY(t))-this.startMouseY,s=this.startArmRotation.horizontal+e/200,o=this.startArmRotation.vertical+i/200,n=4,r=Math.sin(n/360*2*Math.PI);Math.abs(Math.sin(s))0?1:0>t?-1:0}var s=e[0],o=e[1],n=e[2],r=i((o.x-s.x)*(t.y-s.y)-(o.y-s.y)*(t.x-s.x)),a=i((n.x-o.x)*(t.y-o.y)-(n.y-o.y)*(t.x-o.x)),h=i((s.x-n.x)*(t.y-n.y)-(s.y-n.y)*(t.x-n.x));return!(0!=r&&0!=a&&r!=a||0!=a&&0!=h&&a!=h||0!=r&&0!=h&&r!=h)},s.prototype._dataPointFromXY=function(t,e){var i,o=100,n=null,r=null,a=null,h=new d(t,e);if(this.style===s.STYLE.BAR||this.style===s.STYLE.BARCOLOR||this.style===s.STYLE.BARSIZE)for(i=this.dataPoints.length-1;i>=0;i--){n=this.dataPoints[i];var l=n.surfaces;if(l)for(var c=l.length-1;c>=0;c--){var p=l[c],u=p.corners,f=[u[0].screen,u[1].screen,u[2].screen],m=[u[2].screen,u[3].screen,u[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,m))return n}}else for(i=0;ib)&&o>b&&(a=b,r=n)}}return r},s.prototype._showTooltip=function(t){var e,i,s;this.tooltip?(e=this.tooltip.dom.content,i=this.tooltip.dom.line,s=this.tooltip.dom.dot):(e=document.createElement("div"),e.style.position="absolute",e.style.padding="10px",e.style.border="1px solid #4d4d4d",e.style.color="#1a1a1a",e.style.background="rgba(255,255,255,0.7)",e.style.borderRadius="2px",e.style.boxShadow="5px 5px 10px rgba(128,128,128,0.5)",i=document.createElement("div"),i.style.position="absolute",i.style.height="40px",i.style.width="0",i.style.borderLeft="1px solid #4d4d4d",s=document.createElement("div"),s.style.position="absolute",s.style.height="0",s.style.width="0",s.style.border="5px solid #4d4d4d",s.style.borderRadius="5px",this.tooltip={dataPoint:null,dom:{content:e,line:i,dot:s}}),this._hideTooltip(),this.tooltip.dataPoint=t,e.innerHTML="function"==typeof this.showTooltip?this.showTooltip(t.point):"
x:"+t.point.x+"
y:"+t.point.y+"
z:"+t.point.z+"
",e.style.left="0",e.style.top="0",this.frame.appendChild(e),this.frame.appendChild(i),this.frame.appendChild(s);var o=e.offsetWidth,n=e.offsetHeight,r=i.offsetHeight,a=s.offsetWidth,h=s.offsetHeight,d=t.screen.x-o/2;d=Math.min(Math.max(d,10),this.frame.clientWidth-10-o),i.style.left=t.screen.x+"px",i.style.top=t.screen.y-r+"px",e.style.left=d+"px",e.style.top=t.screen.y-r-n+"px",s.style.left=t.screen.x-a/2+"px",s.style.top=t.screen.y-h/2+"px"},s.prototype._hideTooltip=function(){if(this.tooltip){this.tooltip.dataPoint=null;for(var t in this.tooltip.dom)if(this.tooltip.dom.hasOwnProperty(t)){var e=this.tooltip.dom[t];e&&e.parentNode&&e.parentNode.removeChild(e)}}},getMouseX=function(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0},getMouseY=function(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0},t.exports=s},function(t,e,i){var s=i(9);Camera=function(){this.armLocation=new s,this.armRotation={},this.armRotation.horizontal=0,this.armRotation.vertical=0,this.armLength=1.7,this.cameraLocation=new s,this.cameraRotation=new s(.5*Math.PI,0,0),this.calculateCameraOrientation()},Camera.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},Camera.prototype.setArmRotation=function(t,e){void 0!==t&&(this.armRotation.horizontal=t),void 0!==e&&(this.armRotation.vertical=e,this.armRotation.vertical<0&&(this.armRotation.vertical=0),this.armRotation.vertical>.5*Math.PI&&(this.armRotation.vertical=.5*Math.PI)),(void 0!==t||void 0!==e)&&this.calculateCameraOrientation()},Camera.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},Camera.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},Camera.prototype.getArmLength=function(){return this.armLength},Camera.prototype.getCameraLocation=function(){return this.cameraLocation},Camera.prototype.getCameraRotation=function(){return this.cameraRotation},Camera.prototype.calculateCameraOrientation=function(){this.cameraLocation.x=this.armLocation.x-this.armLength*Math.sin(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.y=this.armLocation.y-this.armLength*Math.cos(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.z=this.armLocation.z+this.armLength*Math.sin(this.armRotation.vertical),this.cameraRotation.x=Math.PI/2-this.armRotation.vertical,this.cameraRotation.y=0,this.cameraRotation.z=-this.armRotation.horizontal},t.exports=Camera},function(t,e,i){function s(t,e,i){this.data=t,this.column=e,this.graph=i,this.index=void 0,this.value=void 0,this.values=i.getDistinctValues(t.get(),this.column),this.values.sort(function(t,e){return t>e?1:e>t?-1:0}),this.values.length>0&&this.selectValue(0),this.dataPoints=[],this.loaded=!1,this.onLoadCallback=void 0,i.animationPreload?(this.loaded=!1,this.loadInBackground()):this.loaded=!0}var o=i(4);s.prototype.isLoaded=function(){return this.loaded},s.prototype.getLoadedProgress=function(){for(var t=this.values.length,e=0;this.dataPoints[e];)e++;return Math.round(e/t*100)},s.prototype.getLabel=function(){return this.graph.filterLabel},s.prototype.getColumn=function(){return this.column},s.prototype.getSelectedValue=function(){return void 0===this.index?void 0:this.values[this.index]},s.prototype.getValues=function(){return this.values},s.prototype.getValue=function(t){if(t>=this.values.length)throw"Error: index out of range";return this.values[t]},s.prototype._getDataPoints=function(t){if(void 0===t&&(t=this.index),void 0===t)return[];var e;if(this.dataPoints[t])e=this.dataPoints[t];else{var i={};i.column=this.column,i.value=this.values[t];var s=new o(this.data,{filter:function(t){return t[i.column]==i.value}}).get();e=this.graph._getDataPoints(s),this.dataPoints[t]=e}return e},s.prototype.setOnLoadCallback=function(t){this.onLoadCallback=t},s.prototype.selectValue=function(t){if(t>=this.values.length)throw"Error: index out of range";this.index=t,this.value=this.values[t]},s.prototype.loadInBackground=function(t){void 0===t&&(t=0);var e=this.graph.frame;if(t0&&(t--,this.setIndex(t))},s.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},s.prototype.setIndex=function(t){if(!(ts&&(s=0),s>this.values.length-1&&(s=this.values.length-1),s},s.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,s=i+3;return s},s.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,s=this.leftToIndex(i);this.setIndex(s),o.preventDefault()},s.prototype._onMouseUp=function(){this.frame.style.cursor="auto",o.removeEventListener(document,"mousemove",this.onmousemove),o.removeEventListener(document,"mouseup",this.onmouseup),o.preventDefault()},t.exports=s},function(t){function e(t,e,i,s){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,s)}e.prototype.setRange=function(t,e,i,s){this._start=t?t:0,this._end=e?e:0,this.setStep(i,s)},e.prototype.setStep=function(t,i){void 0===t||0>=t||(void 0!==i&&(this.prettyStep=i),this._step=this.prettyStep===!0?e.calculatePrettyStep(t):t)},e.calculatePrettyStep=function(t){var e=function(t){return Math.log(t)/Math.LN10},i=Math.pow(10,Math.round(e(t))),s=2*Math.pow(10,Math.round(e(t/2))),o=5*Math.pow(10,Math.round(e(t/5))),n=i;return Math.abs(s-t)<=Math.abs(n-t)&&(n=s),Math.abs(o-t)<=Math.abs(n-t)&&(n=o),0>=n&&(n=1),n},e.prototype.getCurrent=function(){return parseFloat(this._current.toPrecision(this.precision))},e.prototype.getStep=function(){return this._step},e.prototype.start=function(){this._current=this._start-this._start%this._step},e.prototype.next=function(){this._current+=this._step},e.prototype.end=function(){return this._current>this._end},t.exports=e},function(t,e,i){function s(t,e,i){for(var n in h.prototype)h.prototype.hasOwnProperty(n)&&!s.prototype.hasOwnProperty(n)&&(s.prototype[n]=h.prototype[n]);if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");var r=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:r._toScreen.bind(r),toGlobalScreen:r._toGlobalScreen.bind(r),toTime:r._toTime.bind(r),toGlobalTime:r._toGlobalTime.bind(r)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.itemSet=new p(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),e?this.setItems(e):this.redraw()}var o=(i(46),i(41),i(1)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(19),c=i(20),p=i(24);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.itemSet&&this.itemSet.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.itemSet.setGroups(e)},s.prototype.setSelection=function(t){this.itemSet&&this.itemSet.setSelection(t)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.getItemRange=function(){var t=this.itemsData.getDataSet(),e=null,i=null;if(t){var s=t.min("start");e=s?o.convert(s.start,"Date").valueOf():null;var n=t.max("start");n&&(i=o.convert(n.start,"Date").valueOf());var r=t.max("end");r&&(i=null==i?o.convert(r.end,"Date").valueOf():Math.max(i,o.convert(r.end,"Date").valueOf()))}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},t.exports=s},function(t,e,i){function s(t,e,i,n){for(var r in h.prototype)h.prototype.hasOwnProperty(r)&&!s.prototype.hasOwnProperty(r)&&(s.prototype[r]=h.prototype[r]);var u=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:u._toScreen.bind(u),toGlobalScreen:u._toGlobalScreen.bind(u),toTime:u._toTime.bind(u),toGlobalTime:u._toGlobalTime.bind(u)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.linegraph=new p(this.body),this.components.push(this.linegraph),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),n&&this.setGroups(n),e?this.setItems(e):this.redraw()}var o=(i(46),i(41),i(1)),n=i(3),r=i(4),a=i(15),h=i(42),d=i(27),l=i(19),c=i(20),p=i(26);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.linegraph&&this.linegraph.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.linegraph.setGroups(e)},s.prototype.getLegend=function(t,e,i){return void 0===e&&(e=15),void 0===i&&(i=15),void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].getLegend(e,i):"cannot find group:"+t},s.prototype.isGroupVisible=function(t){return void 0!==this.linegraph.groups[t]?this.linegraph.groups[t].visible:!1},s.prototype.getItemRange=function(){var t=null,e=null;for(var i in this.linegraph.groups)if(this.linegraph.groups.hasOwnProperty(i)&&1==this.linegraph.groups[i].visible)for(var s=0;sr?r:t,e=null==e?r:r>e?r:e}return{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},t.exports=s},function(t){function e(t,e,i,s,o){this.current=0,this.autoScale=!0,this.stepIndex=0,this.step=1,this.scale=1,this.marginStart,this.marginEnd,this.majorSteps=[1,2,5,10],this.minorSteps=[.25,.5,1,2],this.setRange(t,e,i,s,o)}e.prototype.setRange=function(t,e,i,s,o){this._start=t,this._end=e,t==e&&(this._start=t-.75,this._end=e+1),this.autoScale&&this.setMinimumStep(i,s,o),this.setFirst()},e.prototype.setMinimumStep=function(t,e){var i=this._end-this._start,s=1.1*i,o=t*(s/e),n=Math.round(Math.log(s)/Math.LN10),r=-1,a=Math.pow(10,n),h=0;0>n&&(h=n);for(var d=!1,l=h;Math.abs(l)<=Math.abs(n);l++){a=Math.pow(10,l);for(var c=0;c=o){d=!0,r=c;break}}if(1==d)break}this.stepIndex=r,this.scale=a,this.step=a*this.minorSteps[r]},e.prototype.first=function(){this.setFirst()},e.prototype.setFirst=function(){var t=this._start-this.scale*this.minorSteps[this.stepIndex],e=this._end+this.scale*this.minorSteps[this.stepIndex];this.marginEnd=this.roundToMinor(e),this.marginStart=this.roundToMinor(t),this.marginRange=this.marginEnd-this.marginStart,this.current=this.marginEnd},e.prototype.roundToMinor=function(t){var e=t-t%(this.scale*this.minorSteps[this.stepIndex]);return t%(this.scale*this.minorSteps[this.stepIndex])>.5*this.scale*this.minorSteps[this.stepIndex]?e+this.scale*this.minorSteps[this.stepIndex]:e},e.prototype.hasNext=function(){return this.current>=this.marginStart},e.prototype.next=function(){var t=this.current;this.current-=this.step,this.current==t&&(this.current=this._end)},e.prototype.previous=function(){this.current+=this.step,this.marginEnd+=this.step,this.marginRange=this.marginEnd-this.marginStart},e.prototype.getCurrent=function(){for(var t=""+Number(this.current).toPrecision(5),e=t.length-1;e>0;e--){if("0"!=t[e]){if("."==t[e]||","==t[e]){t=t.slice(0,e);break}break}t=t.slice(0,e)}return t},e.prototype.snap=function(){},e.prototype.isMajor=function(){return this.current%(this.scale*this.majorSteps[this.stepIndex])==0},t.exports=e},function(t,e,i){function s(t,e){var i=h().hours(0).minutes(0).seconds(0).milliseconds(0);this.start=i.clone().add("days",-3).valueOf(),this.end=i.clone().add("days",4).valueOf(),this.body=t,this.defaultOptions={start:null,end:null,direction:"horizontal",moveable:!0,zoomable:!0,min:null,max:null,zoomMin:10,zoomMax:31536e10},this.options=r.extend({},this.defaultOptions),this.props={touch:{}},this.body.emitter.on("dragstart",this._onDragStart.bind(this)),this.body.emitter.on("drag",this._onDrag.bind(this)),this.body.emitter.on("dragend",this._onDragEnd.bind(this)),this.body.emitter.on("hold",this._onHold.bind(this)),this.body.emitter.on("mousewheel",this._onMouseWheel.bind(this)),this.body.emitter.on("DOMMouseScroll",this._onMouseWheel.bind(this)),this.body.emitter.on("touch",this._onTouch.bind(this)),this.body.emitter.on("pinch",this._onPinch.bind(this)),this.setOptions(e)}function o(t){if("horizontal"!=t&&"vertical"!=t)throw new TypeError('Unknown direction "'+t+'". Choose "horizontal" or "vertical".')}function n(t,e){return{x:t.pageX-r.getAbsoluteLeft(e),y:t.pageY-r.getAbsoluteTop(e)}}var r=i(1),a=i(43),h=i(40),d=i(18);s.prototype=new d,s.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},s.prototype.setRange=function(t,e){var i=this._applyRange(t,e);if(i){var s={start:new Date(this.start),end:new Date(this.end)};this.body.emitter.emit("rangechange",s),this.body.emitter.emit("rangechanged",s)}},s.prototype._applyRange=function(t,e){var i,s=null!=t?r.convert(t,"Date").valueOf():this.start,o=null!=e?r.convert(e,"Date").valueOf():this.end,n=null!=this.options.max?r.convert(this.options.max,"Date").valueOf():null,a=null!=this.options.min?r.convert(this.options.min,"Date").valueOf():null;if(isNaN(s)||null===s)throw new Error('Invalid start "'+t+'"');if(isNaN(o)||null===o)throw new Error('Invalid end "'+e+'"');if(s>o&&(o=s),null!==a&&a>s&&(i=a-s,s+=i,o+=i,null!=n&&o>n&&(o=n)),null!==n&&o>n&&(i=o-n,s-=i,o-=i,null!=a&&a>s&&(s=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>o-s&&(this.end-this.start===h?(s=this.start,o=this.end):(i=h-(o-s),s-=i/2,o+=i/2))}if(null!==this.options.zoomMax){var d=parseFloat(this.options.zoomMax);0>d&&(d=0),o-s>d&&(this.end-this.start===d?(s=this.start,o=this.end):(i=o-s-d,s+=i/2,o-=i/2))}var l=this.start!=s||this.end!=o;return this.start=s,this.end=o,l},s.prototype.getRange=function(){return{start:this.start,end:this.end}},s.prototype.conversion=function(t){return s.conversion(this.start,this.end,t)},s.conversion=function(t,e,i){return 0!=i&&e-t!=0?{offset:t,scale:i/(e-t)}:{offset:0,scale:1}},s.prototype._onDragStart=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},s.prototype._onDrag=function(t){if(this.options.moveable){var e=this.options.direction;if(o(e),this.props.touch.allowDragging){var i="horizontal"==e?t.gesture.deltaX:t.gesture.deltaY,s=this.props.touch.end-this.props.touch.start,n="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,r=-i/n*s;this._applyRange(this.props.touch.start+r,this.props.touch.end+r),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end)})}}},s.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end)}))},s.prototype._onMouseWheel=function(t){if(this.options.zoomable&&this.options.moveable){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i;i=0>e?1-e/5:1/(1+e/5);var s=a.fakeGesture(this,t),o=n(s.center,this.body.dom.center),r=this._pointerToDate(o);this.zoom(i,r)}t.preventDefault()}},s.prototype._onTouch=function(){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null},s.prototype._onHold=function(){this.props.touch.allowDragging=!1},s.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable&&(this.props.touch.allowDragging=!1,t.gesture.touches.length>1)){this.props.touch.center||(this.props.touch.center=n(t.gesture.center,this.body.dom.center));var e=1/t.gesture.scale,i=this._pointerToDate(this.props.touch.center),s=parseInt(i+(this.props.touch.start-i)*e),o=parseInt(i+(this.props.touch.end-i)*e);this.setRange(s,o)}},s.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(o(i),"horizontal"==i){var s=this.body.domProps.center.width;return e=this.conversion(s),t.x/e.scale+e.offset}var n=this.body.domProps.center.height;return e=this.conversion(n),t.y/e.scale+e.offset},s.prototype.zoom=function(t,e){null==e&&(e=(this.start+this.end)/2);var i=e+(this.start-e)*t,s=e+(this.end-e)*t;this.setRange(i,s)},s.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,s=this.end+e*t;this.start=i,this.end=s},s.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,s=this.start-i,o=this.end-i;this.setRange(s,o)},t.exports=s},function(t,e){var i=.001;e.orderByStart=function(t){t.sort(function(t,e){return t.data.start-e.data.start})},e.orderByEnd=function(t){t.sort(function(t,e){var i="end"in t.data?t.data.end:t.data.start,s="end"in e.data?e.data.end:e.data.start;return i-s})},e.stack=function(t,i,s){var o,n;if(s)for(o=0,n=t.length;n>o;o++)t[o].top=null;for(o=0,n=t.length;n>o;o++){var r=t[o];if(null===r.top){r.top=i.axis;do{for(var a=null,h=0,d=t.length;d>h;h++){var l=t[h];if(null!==l.top&&l!==r&&e.collision(r,l,i.item)){a=l;break}}null!=a&&(r.top=a.top+a.height+i.item.vertical)}while(a)}}},e.nostack=function(t,e){var i,s;for(i=0,s=t.length;s>i;i++)t[i].top=e.axis},e.collision=function(t,e,s){return t.left-s.horizontal+ie.left&&t.top-s.vertical+ie.top}},function(t,e,i){function s(t,e,i){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale=s.SCALE.DAY,this.step=1,this.setRange(t,e,i)}var o=i(40);s.SCALE={MILLISECOND:1,SECOND:2,MINUTE:3,HOUR:4,DAY:5,WEEKDAY:6,MONTH:7,YEAR:8},s.prototype.setRange=function(t,e,i){if(!(t instanceof Date&&e instanceof Date))throw"No legal start or end date in method setRange";this._start=void 0!=t?new Date(t.valueOf()):new Date,this._end=void 0!=e?new Date(e.valueOf()):new Date,this.autoScale&&this.setMinimumStep(i)},s.prototype.first=function(){this.current=new Date(this._start.valueOf()),this.roundToMinor()},s.prototype.roundToMinor=function(){switch(this.scale){case s.SCALE.YEAR:this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case s.SCALE.MONTH:this.current.setDate(1);case s.SCALE.DAY:case s.SCALE.WEEKDAY:this.current.setHours(0);case s.SCALE.HOUR:this.current.setMinutes(0);case s.SCALE.MINUTE:this.current.setSeconds(0);case s.SCALE.SECOND:this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},s.prototype.hasNext=function(){return this.current.valueOf()<=this._end.valueOf()},s.prototype.next=function(){var t=this.current.valueOf();if(this.current.getMonth()<6)switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current=new Date(this.current.valueOf()+1e3*this.step);break;case s.SCALE.MINUTE:this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case s.SCALE.HOUR:this.current=new Date(this.current.valueOf()+1e3*this.step*60*60);var e=this.current.getHours();this.current.setHours(e-e%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()+this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()+this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()+this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.getMilliseconds()0&&(this.step=e),this.autoScale=!1},s.prototype.setAutoScale=function(t){this.autoScale=t},s.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,r=6e4,a=1e3,h=1;1e3*e>t&&(this.scale=s.SCALE.YEAR,this.step=1e3),500*e>t&&(this.scale=s.SCALE.YEAR,this.step=500),100*e>t&&(this.scale=s.SCALE.YEAR,this.step=100),50*e>t&&(this.scale=s.SCALE.YEAR,this.step=50),10*e>t&&(this.scale=s.SCALE.YEAR,this.step=10),5*e>t&&(this.scale=s.SCALE.YEAR,this.step=5),e>t&&(this.scale=s.SCALE.YEAR,this.step=1),3*i>t&&(this.scale=s.SCALE.MONTH,this.step=3),i>t&&(this.scale=s.SCALE.MONTH,this.step=1),5*o>t&&(this.scale=s.SCALE.DAY,this.step=5),2*o>t&&(this.scale=s.SCALE.DAY,this.step=2),o>t&&(this.scale=s.SCALE.DAY,this.step=1),o/2>t&&(this.scale=s.SCALE.WEEKDAY,this.step=1),4*n>t&&(this.scale=s.SCALE.HOUR,this.step=4),n>t&&(this.scale=s.SCALE.HOUR,this.step=1),15*r>t&&(this.scale=s.SCALE.MINUTE,this.step=15),10*r>t&&(this.scale=s.SCALE.MINUTE,this.step=10),5*r>t&&(this.scale=s.SCALE.MINUTE,this.step=5),r>t&&(this.scale=s.SCALE.MINUTE,this.step=1),15*a>t&&(this.scale=s.SCALE.SECOND,this.step=15),10*a>t&&(this.scale=s.SCALE.SECOND,this.step=10),5*a>t&&(this.scale=s.SCALE.SECOND,this.step=5),a>t&&(this.scale=s.SCALE.SECOND,this.step=1),200*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=200),100*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=100),50*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=50),10*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=10),5*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=5),h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=1)}},s.prototype.snap=function(t){var e=new Date(t.valueOf());if(this.scale==s.SCALE.YEAR){var i=e.getFullYear()+Math.round(e.getMonth()/12);e.setFullYear(Math.round(i/this.step)*this.step),e.setMonth(0),e.setDate(0),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MONTH)e.getDate()>15?(e.setDate(1),e.setMonth(e.getMonth()+1)):e.setDate(1),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0);else if(this.scale==s.SCALE.DAY){switch(this.step){case 5:case 2:e.setHours(24*Math.round(e.getHours()/24));break;default:e.setHours(12*Math.round(e.getHours()/12))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.WEEKDAY){switch(this.step){case 5:case 2:e.setHours(12*Math.round(e.getHours()/12));break;default:e.setHours(6*Math.round(e.getHours()/6))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.HOUR){switch(this.step){case 4:e.setMinutes(60*Math.round(e.getMinutes()/60));break;default:e.setMinutes(30*Math.round(e.getMinutes()/30))}e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MINUTE){switch(this.step){case 15:case 10:e.setMinutes(5*Math.round(e.getMinutes()/5)),e.setSeconds(0);break;case 5:e.setSeconds(60*Math.round(e.getSeconds()/60));break;default:e.setSeconds(30*Math.round(e.getSeconds()/30))}e.setMilliseconds(0)}else if(this.scale==s.SCALE.SECOND)switch(this.step){case 15:case 10:e.setSeconds(5*Math.round(e.getSeconds()/5)),e.setMilliseconds(0);break;case 5:e.setMilliseconds(1e3*Math.round(e.getMilliseconds()/1e3));break;default:e.setMilliseconds(500*Math.round(e.getMilliseconds()/500))}else if(this.scale==s.SCALE.MILLISECOND){var o=this.step>5?this.step/2:1;e.setMilliseconds(Math.round(e.getMilliseconds()/o)*o)}return e},s.prototype.isMajor=function(){switch(this.scale){case s.SCALE.MILLISECOND:return 0==this.current.getMilliseconds();case s.SCALE.SECOND:return 0==this.current.getSeconds();case s.SCALE.MINUTE:return 0==this.current.getHours()&&0==this.current.getMinutes();case s.SCALE.HOUR:return 0==this.current.getHours();case s.SCALE.WEEKDAY:case s.SCALE.DAY:return 1==this.current.getDate();case s.SCALE.MONTH:return 0==this.current.getMonth();case s.SCALE.YEAR:return!1;default:return!1}},s.prototype.getLabelMinor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("SSS");case s.SCALE.SECOND:return o(t).format("s");case s.SCALE.MINUTE:return o(t).format("HH:mm");case s.SCALE.HOUR:return o(t).format("HH:mm");case s.SCALE.WEEKDAY:return o(t).format("ddd D");case s.SCALE.DAY:return o(t).format("D");case s.SCALE.MONTH:return o(t).format("MMM");case s.SCALE.YEAR:return o(t).format("YYYY");default:return""}},s.prototype.getLabelMajor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("HH:mm:ss");case s.SCALE.SECOND:return o(t).format("D MMMM HH:mm");case s.SCALE.MINUTE:case s.SCALE.HOUR:return o(t).format("ddd D MMMM");case s.SCALE.WEEKDAY:case s.SCALE.DAY:return o(t).format("MMMM YYYY");case s.SCALE.MONTH:return o(t).format("YYYY");case s.SCALE.YEAR:return"";default:return""}},t.exports=s},function(t){function e(){this.options=null,this.props=null}e.prototype.setOptions=function(t){t&&util.extend(this.options,t)},e.prototype.redraw=function(){return!1},e.prototype.destroy=function(){},e.prototype._isResized=function(){var t=this.props._previousWidth!==this.props.width||this.props._previousHeight!==this.props.height;return this.props._previousWidth=this.props.width,this.props._previousHeight=this.props.height,t},t.exports=e},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCurrentTime:!0},this.options=o.extend({},this.defaultOptions),this._create(),this.setOptions(e)}var o=i(1),n=i(18);s.prototype=new n,s.prototype._create=function(){var t=document.createElement("div");t.className="currenttime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t},s.prototype.destroy=function(){this.options.showCurrentTime=!1,this.redraw(),this.body=null},s.prototype.setOptions=function(t){t&&o.selectiveExtend(["showCurrentTime"],this.options,t)},s.prototype.redraw=function(){if(this.options.showCurrentTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar),this.start());var e=new Date,i=this.body.util.toScreen(e);this.bar.style.left=i+"px",this.bar.title="Current time: "+e}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),this.stop();return!1},s.prototype.start=function(){function t(){e.stop();var i=e.body.range.conversion(e.body.domProps.center.width).scale,s=1/i/10;30>s&&(s=30),s>1e3&&(s=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,s)}var e=this;t()},s.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCustomTime:!1},this.options=n.extend({},this.defaultOptions),this.customTime=new Date,this.eventParams={},this._create(),this.setOptions(e)}var o=i(41),n=i(1),r=i(18);s.prototype=new r,s.prototype.setOptions=function(t){t&&n.selectiveExtend(["showCustomTime"],this.options,t)},s.prototype._create=function(){var t=document.createElement("div");t.className="customtime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t;var e=document.createElement("div");e.style.position="relative",e.style.top="0px",e.style.left="-10px",e.style.height="100%",e.style.width="20px",t.appendChild(e),this.hammer=o(t,{prevent_default:!0}),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this))},s.prototype.destroy=function(){this.options.showCustomTime=!1,this.redraw(),this.hammer.enable(!1),this.hammer=null,this.body=null},s.prototype.redraw=function(){if(this.options.showCustomTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar));var e=this.body.util.toScreen(this.customTime);this.bar.style.left=e+"px",this.bar.title="Time: "+this.customTime}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar);return!1},s.prototype.setCustomTime=function(t){this.customTime=new Date(t.valueOf()),this.redraw()},s.prototype.getCustomTime=function(){return new Date(this.customTime.valueOf())},s.prototype._onDragStart=function(t){this.eventParams.dragging=!0,this.eventParams.customTime=this.customTime,t.stopPropagation(),t.preventDefault()},s.prototype._onDrag=function(t){if(this.eventParams.dragging){var e=t.gesture.deltaX,i=this.body.util.toScreen(this.eventParams.customTime)+e,s=this.body.util.toTime(i);this.setCustomTime(s),this.body.emitter.emit("timechange",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},s.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=s},function(t,e,i){function s(t,e,i){this.id=o.randomUUID(),this.body=t,this.defaultOptions={orientation:"left",showMinorLabels:!0,showMajorLabels:!0,icons:!0,majorLinesOffset:7,minorLinesOffset:4,labelOffsetX:10,labelOffsetY:2,iconWidth:20,width:"40px",visible:!0},this.linegraphSVG=i,this.props={},this.DOMelements={lines:{},labels:{}},this.dom={},this.range={start:0,end:0},this.options=o.extend({},this.defaultOptions),this.conversionFactor=1,this.setOptions(e),this.width=Number((""+this.options.width).replace("px","")),this.minWidth=this.width,this.height=this.linegraphSVG.offsetHeight,this.stepPixels=25,this.stepPixelsForced=25,this.lineOffset=0,this.master=!0,this.svgElements={},this.groups={},this.amountOfGroups=0,this._create() -}var o=i(1),n=i(2),r=i(18),a=i(14);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype.setOptions=function(t){if(t){var e=!1;this.options.orientation!=t.orientation&&void 0!==t.orientation&&(e=!0);var i=["orientation","showMinorLabels","showMajorLabels","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","width","visible"];o.selectiveExtend(i,this.options,t),this.minWidth=Number((""+this.options.width).replace("px","")),1==e&&this.dom.frame&&(this.hide(),this.show())}},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.style.width=this.options.width,this.dom.frame.style.height=this.height,this.dom.lineContainer=document.createElement("div"),this.dom.lineContainer.style.width="100%",this.dom.lineContainer.style.height=this.height,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.height="100%",this.svg.style.width="100%",this.svg.style.display="block",this.dom.frame.appendChild(this.svg)},s.prototype._redrawGroupIcons=function(){n.prepareElements(this.svgElements);var t,e=this.options.iconWidth,i=15,s=4,o=s+.5*i;t="left"==this.options.orientation?s:this.width-e-s;for(var r in this.groups)this.groups.hasOwnProperty(r)&&1==this.groups[r].visible&&(this.groups[r].drawIcon(t,o,this.svgElements,this.svg,e,i),o+=i+s);n.cleanupElements(this.svgElements)},s.prototype.show=function(){this.dom.frame.parentNode||("left"==this.options.orientation?this.body.dom.left.appendChild(this.dom.frame):this.body.dom.right.appendChild(this.dom.frame)),this.dom.lineContainer.parentNode||this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.lineContainer.parentNode&&this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer)},s.prototype.setRange=function(t,e){this.range.start=t,this.range.end=e},s.prototype.redraw=function(){var t=!1,e=0;for(var i in this.groups)this.groups.hasOwnProperty(i)&&1==this.groups[i].visible&&e++;if(0==this.amountOfGroups||0==e)this.hide();else{this.show(),this.height=Number(this.linegraphSVG.style.height.replace("px","")),this.dom.lineContainer.style.height=this.height+"px",this.width=1==this.options.visible?Number((""+this.options.width).replace("px","")):0;var s=this.props,o=this.dom.frame;o.className="dataaxis",this._calculateCharSize();var n=this.options.orientation,r=this.options.showMinorLabels,a=this.options.showMajorLabels;s.minorLabelHeight=r?s.minorCharHeight:0,s.majorLabelHeight=a?s.majorCharHeight:0,s.minorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.minorLinesOffset,s.minorLineHeight=1,s.majorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.majorLinesOffset,s.majorLineHeight=1,"left"==n?(o.style.top="0",o.style.left="0",o.style.bottom="",o.style.width=this.width+"px",o.style.height=this.height+"px"):(o.style.top="",o.style.bottom="0",o.style.left="0",o.style.width=this.width+"px",o.style.height=this.height+"px"),t=this._redrawLabels(),1==this.options.icons&&this._redrawGroupIcons()}return t},s.prototype._redrawLabels=function(){n.prepareElements(this.DOMelements.lines),n.prepareElements(this.DOMelements.labels);var t=this.options.orientation,e=this.master?this.props.majorCharHeight||10:this.stepPixelsForced,i=new a(this.range.start,this.range.end,e,this.dom.frame.offsetHeight);this.step=i,i.first();var s=this.dom.frame.offsetHeight/(i.marginRange/i.step+1);this.stepPixels=s;var o=this.height/s,r=0;if(0==this.master){s=this.stepPixelsForced,r=Math.round(this.height/s-o);for(var h=0;.5*r>h;h++)i.previous();o=this.height/s}this.valueAtZero=i.marginEnd;var d=0,l=1;i.next(),this.maxLabelSize=0;for(var c=0;l=0&&this._redrawLabel(c-2,i.getCurrent(),t,"yAxis major",this.props.majorCharHeight),this._redrawLine(c,t,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(c,t,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),i.next(),l++}this.conversionFactor=d/((o-1)*i.step);var u=1==this.options.icons?this.options.iconWidth+this.options.labelOffsetX+15:this.options.labelOffsetX+15;return this.maxLabelSize>this.width-u&&1==this.options.visible?(this.width=this.maxLabelSize+u,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+u),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),!1)},s.prototype._redrawLabel=function(t,e,i,s,o){var r=n.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=s,r.innerHTML=e,"left"==i?(r.style.left="-"+this.options.labelOffsetX+"px",r.style.textAlign="right"):(r.style.right="-"+this.options.labelOffsetX+"px",r.style.textAlign="left"),r.style.top=t-.5*o+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSizee.axis){var c=d-e.axis;l-=c,o.forEach(h,function(t){t.top-=c})}a=l+e.item.vertical/2}else a=e.axis+e.item.vertical;a=Math.max(a,this.props.label.height);var p=this.dom.foreground;this.top=p.offsetTop,this.left=p.offsetLeft,this.width=p.offsetWidth,s=o.updateProperty(this,"height",a)||s,s=o.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||s,s=o.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||s,this.dom.background.style.height=a+"px",this.dom.foreground.style.height=a+"px",this.dom.label.style.height=a+"px";for(var u=0,f=this.visibleItems.length;f>u;u++){var m=this.visibleItems[u];m.repositionY()}return s},s.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},s.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var s=this.dom.axis;s.parentNode&&s.parentNode.removeChild(s)},s.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},s.prototype.remove=function(t){delete this.items[t.id],t.setParent(this.itemSet);var e=this.visibleItems.indexOf(t);-1!=e&&this.visibleItems.splice(e,1)},s.prototype.removeFromDataSet=function(t){this.itemSet.removeItem(t.id)},s.prototype.order=function(){var t=o.toArray(this.items);this.orderedItems.byStart=t,this.orderedItems.byEnd=this._constructByEndArray(t),n.orderByStart(this.orderedItems.byStart),n.orderByEnd(this.orderedItems.byEnd)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0)for(n=0;n=0&&!this._checkIfInvisible(t.byStart[n],r,i);n--);for(n=s+1;n=0&&!this._checkIfInvisible(t.byEnd[n],r,i);n--);for(n=a+1;ne;e++)s=this.selection[e],o=this.items[s],o&&o.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)s=t[e],o=this.items[s],o&&(this.selection.push(s),o.select())}},s.prototype.getSelection=function(){return this.selection.concat([])},s.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),s=[];for(var o in this.groups)if(this.groups.hasOwnProperty(o))for(var n=this.groups[o],r=n.visibleItems,a=0;ae&&s.push(h.id)}return s},s.prototype._deselect=function(t){for(var e=this.selection,i=0,s=e.length;s>i;i++)if(e[i]==t){e.splice(i,1);break}},s.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=r.option.asSize,s=this.options,o=s.orientation,n=!1,a=this.dom.frame,h=s.editable.updateTime||s.editable.updateGroup;a.className="itemset"+(h?" editable":""),n=this._orderGroups()||n;var d=e.end-e.start,l=d!=this.lastVisibleInterval||this.props.width!=this.props.lastWidth;l&&(this.stackDirty=!0),this.lastVisibleInterval=d,this.props.lastWidth=this.props.width;var c=this.stackDirty,p=this._firstGroup(),u={item:t.item,axis:t.axis},f={item:t.item,axis:t.item.vertical/2},m=0,g=t.axis+t.item.vertical;return r.forEach(this.groups,function(t){var i=t==p?u:f,s=t.redraw(e,i,c);n=s||n,m+=t.height}),m=Math.max(m,g),this.stackDirty=!1,a.style.height=i(m),this.props.top=a.offsetTop,this.props.left=a.offsetLeft,this.props.width=a.offsetWidth,this.props.height=m,this.dom.axis.style.top=i("top"==o?this.body.domProps.top.height+this.body.domProps.border.top:this.body.domProps.top.height+this.body.domProps.centerContainer.height),this.dom.axis.style.left=this.body.domProps.border.left+"px",n=this._isResized()||n},s.prototype._firstGroup=function(){var t="top"==this.options.orientation?0:this.groupIds.length-1,e=this.groupIds[t],i=this.groups[e]||this.groups[f];return i||null},s.prototype._updateUngrouped=function(){var t=this.groups[f];if(this.groupsData)t&&(t.hide(),delete this.groups[f]);else if(!t){var e=null,i=null;t=new l(e,i,this),this.groups[f]=t;for(var s in this.items)this.items.hasOwnProperty(s)&&t.add(this.items[s]);t.show()}},s.prototype.getLabelSet=function(){return this.dom.labelSet},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(r.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var o=this.id;r.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,o)}),e=this.itemsData.getIds(),this._onAdd(e),this._updateUngrouped()}},s.prototype.getItems=function(){return this.itemsData},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(r.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;r.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._updateUngrouped(),this._order(),this.body.emitter.emit("change")},s.prototype.getGroups=function(){return this.groupsData},s.prototype.removeItem=function(t){var e=this.itemsData.get(t),i=this.itemsData.getDataSet();e&&this.options.onRemove(e,function(e){e&&i.remove(t)})},s.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i=e.itemsData.get(t,e.itemOptions),o=e.items[t],n=i.type||e.options.type||(i.end?"range":"box"),r=s.types[n];if(o&&(r&&o instanceof r?e._updateItem(o,i):(e._removeItem(o),o=null)),!o){if(!r)throw new TypeError("rangeoverflow"==n?'Item type "rangeoverflow" is deprecated. Use css styling instead: .vis.timeline .item.range .content {overflow: visible;}':'Unknown item type "'+n+'"');o=new r(i,e.conversion,e.options),o.id=t,e._addItem(o)}}),this._order(),this.stackDirty=!0,this.body.emitter.emit("change")},s.prototype._onAdd=s.prototype._onUpdate,s.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var s=i.items[t];s&&(e++,i._removeItem(s))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change"))},s.prototype._order=function(){r.forEach(this.groups,function(t){t.order()})},s.prototype._onUpdateGroups=function(t){this._onAddGroups(t)},s.prototype._onAddGroups=function(t){var e=this;t.forEach(function(t){var i=e.groupsData.get(t),s=e.groups[t];if(s)s.setData(i);else{if(t==f)throw new Error("Illegal group id. "+t+" is a reserved id.");var o=Object.create(e.options);r.extend(o,{height:null}),s=new l(t,i,e),e.groups[t]=s;for(var n in e.items)if(e.items.hasOwnProperty(n)){var a=e.items[n];a.data.group==t&&s.add(a)}s.order(),s.show()}}),this.body.emitter.emit("change")},s.prototype._onRemoveGroups=function(t){var e=this.groups;t.forEach(function(t){var i=e[t];i&&(i.hide(),delete e[t])}),this.markDirty(),this.body.emitter.emit("change")},s.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!r.equalArray(t,this.groupIds);if(e){var i=this.groups;t.forEach(function(t){i[t].hide()}),t.forEach(function(t){i[t].show()}),this.groupIds=t}return e}return!1},s.prototype._addItem=function(t){this.items[t.id]=t;var e=this.groupsData?t.data.group:f,i=this.groups[e];i&&i.add(t)},s.prototype._updateItem=function(t,e){var i=t.data.group;if(t.data=e,t.displayed&&t.redraw(),i!=t.data.group){var s=this.groups[i];s&&s.remove(t);var o=this.groupsData?t.data.group:f,n=this.groups[o];n&&n.add(t)}},s.prototype._removeItem=function(t){t.hide(),delete this.items[t.id];var e=this.selection.indexOf(t.id);-1!=e&&this.selection.splice(e,1);var i=this.groupsData?t.data.group:f,s=this.groups[i];s&&s.remove(t)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||o.length>0)&&this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}},s.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.body.util.snap||null,o=s.itemFromTarget(t);if(o){var n=e.itemsData.get(o.id);this.options.onUpdate(n,function(t){t&&e.itemsData.update(t)})}else{var a=r.getAbsoluteLeft(this.dom.frame),h=t.gesture.center.pageX-a,d=this.body.util.toTime(h),l={start:i?i(d):d,content:"new item"};if("range"===this.options.type){var c=this.body.util.toTime(h+this.props.width/5);l.end=i?i(c):c}l[this.itemsData.fieldId]=r.randomUUID();var p=s.groupFromTarget(t);p&&(l.group=p.groupId),this.options.onAdd(l,function(t){t&&e.itemsData.add(l)})}}},s.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=s.itemFromTarget(t);if(i){e=this.getSelection();var o=e.indexOf(i.id);-1==o?e.push(i.id):e.splice(o,1),this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}}},s.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},s.groupFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-group"))return e["timeline-group"];e=e.parentNode}return null},s.itemSetFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-itemset"))return e["timeline-itemset"];e=e.parentNode}return null},t.exports=s},function(t,e,i){function s(t,e,i){this.body=t,this.defaultOptions={enabled:!0,icons:!0,iconSize:20,iconSpacing:6,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-left"}},this.side=i,this.options=o.extend({},this.defaultOptions),this.svgElements={},this.dom={},this.groups={},this.amountOfGroups=0,this._create(),this.setOptions(e)}var o=i(1),n=i(2),r=i(18);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.className="legend",this.dom.frame.style.position="absolute",this.dom.frame.style.top="10px",this.dom.frame.style.display="block",this.dom.textArea=document.createElement("div"),this.dom.textArea.className="legendText",this.dom.textArea.style.position="relative",this.dom.textArea.style.top="0px",this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.width=this.options.iconSize+5+"px",this.dom.frame.appendChild(this.svg),this.dom.frame.appendChild(this.dom.textArea)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setOptions=function(t){var e=["enabled","orientation","icons","left","right"];o.selectiveDeepExtend(e,this.options,t)},s.prototype.redraw=function(){var t=0;for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&t++;if(0==this.options[this.side].visible||0==this.amountOfGroups||0==this.options.enabled||0==t)this.hide();else{this.show(),"top-left"==this.options[this.side].position||"bottom-left"==this.options[this.side].position?(this.dom.frame.style.left="4px",this.dom.frame.style.textAlign="left",this.dom.textArea.style.textAlign="left",this.dom.textArea.style.left=this.options.iconSize+15+"px",this.dom.textArea.style.right="",this.svg.style.left="0px",this.svg.style.right=""):(this.dom.frame.style.right="4px",this.dom.frame.style.textAlign="right",this.dom.textArea.style.textAlign="right",this.dom.textArea.style.right=this.options.iconSize+15+"px",this.dom.textArea.style.left="",this.svg.style.right="0px",this.svg.style.left=""),"top-left"==this.options[this.side].position||"top-right"==this.options[this.side].position?(this.dom.frame.style.top=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.bottom=""):(this.dom.frame.style.bottom=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.top=""),0==this.options.icons?(this.dom.frame.style.width=this.dom.textArea.offsetWidth+10+"px",this.dom.textArea.style.right="",this.dom.textArea.style.left="",this.svg.style.width="0px"):(this.dom.frame.style.width=this.options.iconSize+15+this.dom.textArea.offsetWidth+10+"px",this.drawLegendIcons()); -var i="";for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&(i+=this.groups[e].content+"
");this.dom.textArea.innerHTML=i,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},s.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){n.prepareElements(this.svgElements);var t=window.getComputedStyle(this.dom.frame).paddingTop,e=Number(t.replace("px","")),i=e,s=this.options.iconSize,o=.75*this.options.iconSize,r=e+.5*o+3;this.svg.style.width=s+5+e+"px";for(var a in this.groups)this.groups.hasOwnProperty(a)&&1==this.groups[a].visible&&(this.groups[a].drawIcon(i,r,this.svgElements,this.svg,s,o),r+=o+this.options.iconSpacing);n.cleanupElements(this.svgElements)}},t.exports=s},function(t,e,i){function s(t,e){this.id=o.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,allowOverlap:!0,align:"center"},catmullRom:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{showMinorLabels:!0,showMajorLabels:!0,icons:!1,width:"40px",visible:!0},legend:{enabled:!1,icons:!0,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-right"}}},this.options=o.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={};var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.body.emitter.on("rangechange",function(){if(0!=i.lastStart){var t=i.body.range.start-i.lastStart,e=i.body.range.end-i.body.range.start;if(0!=i.width){var s=i.width/e,o=t*s;i.svg.style.left=-i.width-o+"px"}}}),this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=o.option.asSize(-i.width),i._updateGraph.apply(i)}),this._create(),this.body.emitter.emit("change")}var o=i(1),n=i(2),r=i(3),a=i(4),h=i(18),d=i(21),l=i(22),c=i(25),p="__ungrouped__";s.prototype=new h,s.prototype._create=function(){var t=document.createElement("div");t.className="LineGraph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new d(this.body,this.options.dataAxis,this.svg),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left"),this.legendRight=new c(this.body,this.options.legend,"right"),this.show()},s.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort"];o.selectiveDeepExtend(e,this.options,t),o.mergeOptions(this.options,t,"catmullRom"),o.mergeOptions(this.options,t,"drawPoints"),o.mergeOptions(this.options,t,"shaded"),o.mergeOptions(this.options,t,"legend"),t.catmullRom&&"object"==typeof t.catmullRom&&t.catmullRom.parametrization&&("uniform"==t.catmullRom.parametrization?this.options.catmullRom.alpha=0:"chordal"==t.catmullRom.parametrization?this.options.catmullRom.alpha=1:(this.options.catmullRom.parametrization="centripetal",this.options.catmullRom.alpha=.5)),this.yAxisLeft&&void 0!==t.dataAxis&&(this.yAxisLeft.setOptions(this.options.dataAxis),this.yAxisRight.setOptions(this.options.dataAxis)),this.legendLeft&&void 0!==t.legend&&(this.legendLeft.setOptions(this.options.legend),this.legendRight.setOptions(this.options.legend)),this.groups.hasOwnProperty(p)&&this.groups[p].setOptions(t)}this.dom.frame&&this._updateGraph()},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(o.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var n=this.id;o.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,n)}),e=this.itemsData.getIds(),this._onAdd(e)}this._updateUngrouped(),this._updateGraph(),this.redraw()},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(o.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;o.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._onUpdate()},s.prototype._onUpdate=function(){this._updateUngrouped(),this._updateAllGroupData(),this._updateGraph(),this.redraw()},s.prototype._onAdd=function(t){this._onUpdate(t)},s.prototype._onRemove=function(t){this._onUpdate(t)},s.prototype._onUpdateGroups=function(t){for(var e=0;e0){for(s=0;su){e.push(g);break}e.push(g)}}else for(var m=0;mp&&g.x0?(i=this._preprocessData(e,t),h.push({min:i.min,max:i.max}),r.push(i.data)):(h.push({}),r.push([]))}else h.push({}),r.push([]);if(d=this._updateYAxis(l,h),1==d)return n.cleanupElements(this.svgElements),void this.body.emitter.emit("change");for(s=0;s0){for(var p=0;pi?i:a,d=s>d?s:d):(r=!0,h=h>i?i:h,l=s>l?s:l))}1==n&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}return o=this._toggleAxisVisiblity(n,this.yAxisLeft)||o,o=this._toggleAxisVisiblity(r,this.yAxisRight)||o,1==r&&1==n?(this.yAxisLeft.drawIcons=!0,this.yAxisRight.drawIcons=!0):(this.yAxisLeft.drawIcons=!1,this.yAxisRight.drawIcons=!1),this.yAxisRight.master=!n,0==this.yAxisRight.master?(this.yAxisLeft.lineOffset=1==r?this.yAxisRight.width:0,o=this.yAxisLeft.redraw()||o,this.yAxisRight.stepPixelsForced=this.yAxisLeft.stepPixels,o=this.yAxisRight.redraw()||o):o=this.yAxisRight.redraw()||o,o},s.prototype._toggleAxisVisiblity=function(t,e){var i=!1;return 0==t?e.dom.frame.parentNode&&(e.hide(),i=!0):e.dom.frame.parentNode||(e.show(),i=!0),i},s.prototype._drawBarGraph=function(t,e){if(null!=t&&t.length>0){for(var i,s=.1*e.options.barChart.width,o=0,r={},a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-t[a].x))),0==i&&(void 0===r[t[a].x]&&(r[t[a].x]={amount:0,resolved:0}),r[t[a].x].amount+=1);for(var h,a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-h)));var d=this._getSafeDrawData(i,e,s)}else{var l=a+(r[h].amount-r[h].resolved),c=a-(r[h].resolved+1);l0&&(i=Math.min(i,Math.abs(t[c].x-h)));var d=this._getSafeDrawData(i,e,s);r[h].resolved+=1,0==e.options.barChart.allowOverlap&&(d.width=d.width/r[h].amount,d.offset+=r[h].resolved*d.width-.5*d.width*(r[h].amount+1),"left"==e.options.barChart.align?o-=.5*d.width:"right"==e.options.barChart.align&&(o+=.5*d.width))}n.drawBar(t[a].x+d.offset,t[a].y,d.width,e.zeroPosition-t[a].y,e.className+" bar",this.svgElements,this.svg),1==e.options.drawPoints.enabled&&n.drawPoint(t[a].x+d.offset,t[a].y,e,this.svgElements,this.svg)}}},s.prototype._getSafeDrawData=function(t,e,i){var s,o;return t0?(s=i>t?i:t,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*t:"right"==e.options.barChart.align&&(o+=.5*t)):(s=e.options.barChart.width,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*e.options.barChart.width:"right"==e.options.barChart.align&&(o+=.5*e.options.barChart.width)),{width:s,offset:o}},s.prototype._drawLineGraph=function(t,e){if(null!=t&&t.length>0){var i,s,o=Number(this.svg.style.height.replace("px",""));if(i=n.getSVGElement("path",this.svgElements,this.svg),i.setAttributeNS(null,"class",e.className),s=1==e.options.catmullRom.enabled?this._catmullRom(t,e):this._linear(t),1==e.options.shaded.enabled){var r,a=n.getSVGElement("path",this.svgElements,this.svg);r="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+s+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+o+" "+s+"L"+t[t.length-1].x+","+o,a.setAttributeNS(null,"class",e.className+" fill"),a.setAttributeNS(null,"d",r)}i.setAttributeNS(null,"d","M"+s),1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg)}},s.prototype._drawPoints=function(t,e,i,s,o){void 0===o&&(o=0);for(var r=0;rp;p+=r)i=n(t[p].x)+this.width-1,s=t[p].y,o.push({x:i,y:s}),h=h>s?s:h,d=s>d?s:d;return{min:h,max:d,data:o}},s.prototype._convertYvalues=function(t,e){var i,s,o=[],n=this.yAxisLeft,r=Number(this.svg.style.height.replace("px",""));"right"==e.options.yAxisOrientation&&(n=this.yAxisRight);for(var a=0;al;l++)e=0==l?t[0]:t[l-1],i=t[l],s=t[l+1],o=d>l+2?t[l+2]:s,n={x:(-e.x+6*i.x+s.x)*h,y:(-e.y+6*i.y+s.y)*h},r={x:(i.x+6*s.x-o.x)*h,y:(i.y+6*s.y-o.y)*h},a+="C"+n.x+","+n.y+" "+r.x+","+r.y+" "+s.x+","+s.y+" ";return a},s.prototype._catmullRom=function(t,e){var i=e.options.catmullRom.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var s,o,n,r,a,h,d,l,c,p,u,f,m,g,v,y,b,_,x,w=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",S=t.length,M=0;S-1>M;M++)s=0==M?t[0]:t[M-1],o=t[M],n=t[M+1],r=S>M+2?t[M+2]:n,d=Math.sqrt(Math.pow(s.x-o.x,2)+Math.pow(s.y-o.y,2)),l=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),c=Math.sqrt(Math.pow(n.x-r.x,2)+Math.pow(n.y-r.y,2)),g=Math.pow(c,i),y=Math.pow(c,2*i),v=Math.pow(l,i),b=Math.pow(l,2*i),x=Math.pow(d,i),_=Math.pow(d,2*i),p=2*_+3*x*v+b,u=2*y+3*g*v+b,f=3*x*(x+v),f>0&&(f=1/f),m=3*g*(g+v),m>0&&(m=1/m),a={x:(-b*s.x+p*o.x+_*n.x)*f,y:(-b*s.y+p*o.y+_*n.y)*f},h={x:(y*o.x+u*n.x-b*r.x)*m,y:(y*o.y+u*n.y-b*r.y)*m},0==a.x&&0==a.y&&(a=o),0==h.x&&0==h.y&&(h=n),w+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+n.x+","+n.y+" ";return w},s.prototype._linear=function(t){for(var e="",i=0;id;){d++;var l=n.getCurrent(),c=this.body.util.toScreen(l),p=n.isMajor();this.options.showMinorLabels&&this._repaintMinorText(c,n.getLabelMinor(),t),p&&this.options.showMajorLabels?(c>0&&(void 0==h&&(h=c),this._repaintMajorText(c,n.getLabelMajor(),t)),this._repaintMajorLine(c,t)):this._repaintMinorLine(c,t),n.next()}if(this.options.showMajorLabels){var u=this.body.util.toTime(0),f=n.getLabelMajor(u),m=f.length*(this.props.majorCharWidth||10)+10;(void 0==h||h>m)&&this._repaintMajorText(0,f,t)}o.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},s.prototype._repaintMinorText=function(t,e,i){var s=this.dom.redundant.minorTexts.shift();if(!s){var o=document.createTextNode("");s=document.createElement("div"),s.appendChild(o),s.className="text minor",this.dom.foreground.appendChild(s)}this.dom.minorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?this.props.majorLabelHeight+"px":"0",s.style.left=t+"px"},s.prototype._repaintMajorText=function(t,e,i){var s=this.dom.redundant.majorTexts.shift();if(!s){var o=document.createTextNode(e);s=document.createElement("div"),s.className="text major",s.appendChild(o),this.dom.foreground.appendChild(s)}this.dom.majorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?"0":this.props.minorLabelHeight+"px",s.style.left=t+"px"},s.prototype._repaintMinorLine=function(t,e){var i=this.dom.redundant.minorLines.shift();i||(i=document.createElement("div"),i.className="grid vertical minor",this.dom.background.appendChild(i)),this.dom.minorLines.push(i);var s=this.props;i.style.top="top"==e?s.majorLabelHeight+"px":this.body.domProps.top.height+"px",i.style.height=s.minorLineHeight+"px",i.style.left=t-s.minorLineWidth/2+"px"},s.prototype._repaintMajorLine=function(t,e){var i=this.dom.redundant.majorLines.shift();i||(i=document.createElement("DIV"),i.className="grid vertical major",this.dom.background.appendChild(i)),this.dom.majorLines.push(i);var s=this.props;i.style.top="top"==e?"0":this.body.domProps.top.height+"px",i.style.left=t-s.majorLineWidth/2+"px",i.style.height=s.majorLineHeight+"px"},s.prototype._calculateCharSize=function(){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,this.dom.measureCharMajor||(this.dom.measureCharMajor=document.createElement("DIV"),this.dom.measureCharMajor.className="text minor 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},s.prototype.snap=function(t){return this.step.snap(t)},t.exports=s},function(t,e,i){function s(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.dirty=!0,this.top=null,this.left=null,this.width=null,this.height=null}var o=i(41);s.prototype.select=function(){this.selected=!0,this.displayed&&this.redraw()},s.prototype.unselect=function(){this.selected=!1,this.displayed&&this.redraw()},s.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},s.prototype.isVisible=function(){return!1},s.prototype.show=function(){return!1},s.prototype.hide=function(){return!1},s.prototype.redraw=function(){},s.prototype.repositionX=function(){},s.prototype.repositionY=function(){},s.prototype._repaintDeleteButton=function(t){if(this.selected&&this.options.editable.remove&&!this.dom.deleteButton){var e=this,i=document.createElement("div");i.className="delete",i.title="Delete this item",o(i,{preventDefault:!0}).on("tap",function(t){e.parent.removeFromDataSet(e),t.stopPropagation()}),t.appendChild(i),this.dom.deleteButton=i}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},t.exports=s},function(t,e,i){function s(t,e,i){if(this.props={dot:{width:0,height:0},line:{width:0,height:0}},t&&void 0==t.start)throw new Error('Property "start" missing in item '+t);o.call(this,t,e,i)}var o=i(28);s.prototype=new o(null,null,null),s.prototype.isVisible=function(t){var e=(t.end-t.start)/4;return this.data.start>t.start-e&&this.data.startt.start-e&&this.data.startt.start},s.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.content=document.createElement("div"),t.content.className="content",t.box.appendChild(t.content),t.box["timeline-item"]=this),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw time axis: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.data.content!=this.content){if(this.content=this.data.content,this.content instanceof Element)t.content.innerHTML="",t.content.appendChild(this.content);else{if(void 0==this.data.content)throw new Error('Property "content" missing in item '+this.data.id);t.content.innerHTML=this.content}this.dirty=!0}this.data.title!=this.title&&(t.box.title=this.data.title,this.title=this.data.title);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");this.className!=i&&(this.className=i,t.box.className=this.baseClassName+i,this.dirty=!0),this.dirty&&(this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dirty=!1),this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},s.prototype.show=function(){this.displayed||this.redraw()},s.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.top=null,this.left=null,this.displayed=!1}},s.prototype.repositionX=function(){var t,e=this.props,i=this.parent.width,s=this.conversion.toScreen(this.data.start),o=this.conversion.toScreen(this.data.end),n=this.options.padding;-i>s&&(s=-i),o>2*i&&(o=2*i);var r=Math.max(o-s,1);this.overflow?(t=Math.max(-s,0),this.left=s,this.width=r+this.props.content.width):(t=0>s?Math.min(-s,o-s-e.content.width-2*n):0,this.left=s,this.width=r),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.dom.content.style.left=t+"px"},s.prototype.repositionY=function(){var t=this.options.orientation,e=this.dom.box;e.style.top="top"==t?this.top+"px":this.parent.height-this.top-this.height+"px"},s.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="drag-left",t.dragLeftItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},s.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="drag-right",t.dragRightItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null) -},t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this._initializeMixinLoaders(),this.containerElement=t,this.renderRefreshRate=60,this.renderTimestep=1e3/this.renderRefreshRate,this.renderTime=.5*this.renderTimestep,this.maxPhysicsTicksPerRender=3,this.physicsDiscreteStepsize=.5,this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null},this.defaultOptions={nodes:{mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fixed:!1,fontColor:"black",fontSize:14,fontFace:"verdana",level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},borderColor:"#2B7CE9",backgroundColor:"#97C2FC",highlightColor:"#D2E5FF",group:void 0,borderWidth:1},edges:{widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from"},configurePhysics:!1,physics:{barnesHut:{enabled:!0,theta:1/.6,gravitationalConstant:-2e3,centralGravity:.3,springLength:95,springConstant:.04,damping:.09},repulsion:{centralGravity:0,springLength:200,springConstant:.05,nodeDistance:100,damping:.09},hierarchicalRepulsion:{enabled:!1,centralGravity:0,springLength:100,springConstant:.01,nodeDistance:150,damping:.09},damping:null,centralGravity:null,springLength:null,springConstant:null},clustering:{enabled:!1,initialMaxNodes:100,clusterThreshold:500,reduceToNodes:300,chainThreshold:.4,clusterEdgeThreshold:20,sectorThreshold:100,screenSizeThreshold:.2,fontSizeMultiplier:4,maxFontSize:1e3,forceAmplification:.1,distanceAmplification:.1,edgeGrowth:20,nodeScaling:{width:1,height:1,radius:1},maxNodeSizeIncrements:600,activeAreaBoxSize:80,clusterLevelDifference:2},navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02}},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD"},freezeForStabilization:!1,smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},dynamicSmoothCurves:!0,maxVelocity:30,minVelocity:.1,stabilize:!0,stabilizationIterations:1e3,labels:{add:"Add Node",edit:"Edit",link:"Add Link",del:"Delete selected",editNode:"Edit Node",editEdge:"Edit Edge",back:"Back",addDescription:"Click in an empty space to place a new node.",linkDescription:"Click on a node and drag the edge to another node to connect them.",editEdgeDescription:"Click on the control points and drag them to a node to connect to it.",addError:"The function for add does not support two arguments (data,callback).",linkError:"The function for connect does not support two arguments (data,callback).",editError:"The function for edit does not support two arguments (data, callback).",editBoundError:"No edit function has been bound to this button.",deleteError:"The function for delete does not support two arguments (data, callback).",deleteClusterError:"Clusters cannot be deleted."},tooltip:{delay:300,fontColor:"black",fontSize:14,fontFace:"verdana",color:{border:"#666",background:"#FFFFC6"}},dragNetwork:!0,dragNodes:!0,zoomable:!0,hover:!1,hideEdgesOnDrag:!1,hideNodesOnDrag:!1,width:"100%",height:"100%",selectable:!0},this.constants=a.extend({},this.defaultOptions),this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1;var o=this;this.groups=new u,this.images=new f,this.images.setOnloadCallback(function(){o._redraw()}),this.xIncrement=0,this.yIncrement=0,this.zoomIncrement=0,this._loadPhysicsSystem(),this._create(),this._loadSectorSystem(),this._loadClusterSystem(),this._loadSelectionSystem(),this._loadHierarchySystem(),this._setTranslation(this.frame.clientWidth/2,this.frame.clientHeight/2),this._setScale(1),this.setOptions(i),this.freezeSimulation=!1,this.cachedFunctions={},this.calculationNodes={},this.calculationNodeIndices=[],this.nodeIndices=[],this.nodes={},this.edges={},this.canvasTopLeft={x:0,y:0},this.canvasBottomRight={x:0,y:0},this.pointerPosition={x:0,y:0},this.areaCenter={},this.scale=1,this.previousScale=this.scale,this.nodesData=null,this.edgesData=null,this.nodesListeners={add:function(t,e){o._addNodes(e.items),o.start()},update:function(t,e){o._updateNodes(e.items),o.start()},remove:function(t,e){o._removeNodes(e.items),o.start()}},this.edgesListeners={add:function(t,e){o._addEdges(e.items),o.start()},update:function(t,e){o._updateEdges(e.items),o.start()},remove:function(t,e){o._removeEdges(e.items),o.start()}},this.moving=!0,this.timer=void 0,this.setData(e,this.constants.clustering.enabled||this.constants.hierarchicalLayout.enabled),this.initializing=!1,1==this.constants.hierarchicalLayout.enabled?this._setupHierarchicalLayout():0==this.constants.stabilize&&this.zoomExtent(!0,this.constants.clustering.enabled),this.constants.clustering.enabled&&this.startWithClustering()}var o=i(46),n=i(41),r=i(49),a=i(1),h=i(43),d=i(3),l=i(4),c=i(38),p=i(39),u=i(34),f=i(35),m=i(36),g=i(33),v=i(37),y=i(45);i(44),o(s.prototype),s.prototype._getScriptPath=function(){for(var t=document.getElementsByTagName("script"),e=0;et.x&&(s=t.x),ot.y&&(e=t.y),i=this.constants.clustering.initialMaxNodes?49.07548/(o+142.05338)+91444e-8:12.662/(o+7.4147)+.0964822:1==this.constants.clustering.enabled&&o>=this.constants.clustering.initialMaxNodes?77.5271985/(o+187.266146)+476710517e-13:30.5062972/(o+19.93597763)+.08413486;var n=Math.min(this.frame.canvas.clientWidth/600,this.frame.canvas.clientHeight/600);i*=n}else{var r=1.1*(Math.abs(s.minX)+Math.abs(s.maxX)),a=1.1*(Math.abs(s.minY)+Math.abs(s.maxY)),h=this.frame.canvas.clientWidth/r,d=this.frame.canvas.clientHeight/a;i=d>=h?h:d}i>1&&(i=1),this._setScale(i),this._centerNetwork(s),0==e&&(this.moving=!0,this.start())},s.prototype._updateNodeIndexList=function(){this._clearNodeIndexList();for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodeIndices.push(t)},s.prototype.setData=function(t,e){if(void 0===e&&(e=!1),t&&t.dot&&(t.nodes||t.edges))throw new SyntaxError('Data must contain either parameter "dot" or parameter pair "nodes" and "edges", but not both.');if(this.setOptions(t&&t.options),t&&t.dot){if(t&&t.dot){var i=c.DOTToGraph(t.dot);return void this.setData(i)}}else if(t&&t.gephi){if(t&&t.gephi){var s=p.parseGephi(t.gephi);return void this.setData(s)}}else this._setNodes(t&&t.nodes),this._setEdges(t&&t.edges);if(this._putDataInSector(),!e)if(this.constants.stabilize){var o=this;setTimeout(function(){o._stabilize(),o.start()},0)}else this.start()},s.prototype.setOptions=function(t){if(t){var e,i=["nodes","edges","smoothCurves","hierarchicalLayout","clustering","navigation","keyboard","dataManipulation","onAdd","onEdit","onEditEdge","onConnect","onDelete"];if(a.selectiveNotDeepExtend(i,this.constants,t),a.selectiveNotDeepExtend(["color"],this.constants.nodes,t.nodes),a.selectiveNotDeepExtend(["color","length"],this.constants.edges,t.edges),t.physics&&(a.mergeOptions(this.constants.physics,t.physics,"barnesHut"),a.mergeOptions(this.constants.physics,t.physics,"repulsion"),t.physics.hierarchicalRepulsion)){this.constants.hierarchicalLayout.enabled=!0,this.constants.physics.hierarchicalRepulsion.enabled=!0,this.constants.physics.barnesHut.enabled=!1;for(e in t.physics.hierarchicalRepulsion)t.physics.hierarchicalRepulsion.hasOwnProperty(e)&&(this.constants.physics.hierarchicalRepulsion[e]=t.physics.hierarchicalRepulsion[e])}if(t.onAdd&&(this.triggerFunctions.add=t.onAdd),t.onEdit&&(this.triggerFunctions.edit=t.onEdit),t.onEditEdge&&(this.triggerFunctions.editEdge=t.onEditEdge),t.onConnect&&(this.triggerFunctions.connect=t.onConnect),t.onDelete&&(this.triggerFunctions.del=t.onDelete),a.mergeOptions(this.constants,t,"smoothCurves"),a.mergeOptions(this.constants,t,"hierarchicalLayout"),a.mergeOptions(this.constants,t,"clustering"),a.mergeOptions(this.constants,t,"navigation"),a.mergeOptions(this.constants,t,"keyboard"),a.mergeOptions(this.constants,t,"dataManipulation"),t.dataManipulation&&(this.editMode=this.constants.dataManipulation.initiallyVisible),t.edges&&(void 0!==t.edges.color&&(a.isString(t.edges.color)?(this.constants.edges.color={},this.constants.edges.color.color=t.edges.color,this.constants.edges.color.highlight=t.edges.color,this.constants.edges.color.hover=t.edges.color):(void 0!==t.edges.color.color&&(this.constants.edges.color.color=t.edges.color.color),void 0!==t.edges.color.highlight&&(this.constants.edges.color.highlight=t.edges.color.highlight),void 0!==t.edges.color.hover&&(this.constants.edges.color.hover=t.edges.color.hover))),t.edges.fontColor||void 0!==t.edges.color&&(a.isString(t.edges.color)?this.constants.edges.fontColor=t.edges.color:void 0!==t.edges.color.color&&(this.constants.edges.fontColor=t.edges.color.color))),t.nodes&&t.nodes.color){var s=a.parseColor(t.nodes.color);this.constants.nodes.color.background=s.background,this.constants.nodes.color.border=s.border,this.constants.nodes.color.highlight.background=s.highlight.background,this.constants.nodes.color.highlight.border=s.highlight.border,this.constants.nodes.color.hover.background=s.hover.background,this.constants.nodes.color.hover.border=s.hover.border}if(t.groups)for(var o in t.groups)if(t.groups.hasOwnProperty(o)){var n=t.groups[o];this.groups.add(o,n)}if(t.tooltip){for(e in t.tooltip)t.tooltip.hasOwnProperty(e)&&(this.constants.tooltip[e]=t.tooltip[e]);t.tooltip.color&&(this.constants.tooltip.color=a.parseColor(t.tooltip.color))}}this._loadPhysicsSystem(),this._loadNavigationControls(),this._loadManipulationSystem(),this._configureSmoothCurves(),this._createKeyBinds(),this.setSize(this.constants.width,this.constants.height),this.moving=!0,this.start()},s.prototype._create=function(){for(;this.containerElement.hasChildNodes();)this.containerElement.removeChild(this.containerElement.firstChild);if(this.frame=document.createElement("div"),this.frame.className="network-frame",this.frame.style.position="relative",this.frame.style.overflow="hidden",this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),!this.frame.canvas.getContext){var t=document.createElement("DIV");t.style.color="red",t.style.fontWeight="bold",t.style.padding="10px",t.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(t)}var e=this;this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",e._onTap.bind(e)),this.hammer.on("doubletap",e._onDoubleTap.bind(e)),this.hammer.on("hold",e._onHold.bind(e)),this.hammer.on("pinch",e._onPinch.bind(e)),this.hammer.on("touch",e._onTouch.bind(e)),this.hammer.on("dragstart",e._onDragStart.bind(e)),this.hammer.on("drag",e._onDrag.bind(e)),this.hammer.on("dragend",e._onDragEnd.bind(e)),this.hammer.on("release",e._onRelease.bind(e)),this.hammer.on("mousewheel",e._onMouseWheel.bind(e)),this.hammer.on("DOMMouseScroll",e._onMouseWheel.bind(e)),this.hammer.on("mousemove",e._onMouseMoveTitle.bind(e)),this.containerElement.appendChild(this.frame)},s.prototype._createKeyBinds=function(){var t=this;this.mousetrap=r,this.mousetrap.reset(),1==this.constants.keyboard.enabled&&(this.mousetrap.bind("up",this._moveUp.bind(t),"keydown"),this.mousetrap.bind("up",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("down",this._moveDown.bind(t),"keydown"),this.mousetrap.bind("down",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("left",this._moveLeft.bind(t),"keydown"),this.mousetrap.bind("left",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("right",this._moveRight.bind(t),"keydown"),this.mousetrap.bind("right",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("=",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("=",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("-",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("-",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("[",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("[",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("]",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("]",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pageup",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("pageup",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pagedown",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("pagedown",this._stopZoom.bind(t),"keyup")),1==this.constants.dataManipulation.enabled&&(this.mousetrap.bind("escape",this._createManipulatorBar.bind(t)),this.mousetrap.bind("del",this._deleteSelected.bind(t)))},s.prototype._getPointer=function(t){return{x:t.pageX-a.getAbsoluteLeft(this.frame.canvas),y:t.pageY-a.getAbsoluteTop(this.frame.canvas)}},s.prototype._onTouch=function(t){this.drag.pointer=this._getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this._getScale(),this._handleTouch(this.drag.pointer)},s.prototype._onDragStart=function(){this._handleDragStart()},s.prototype._handleDragStart=function(){var t=this.drag,e=this._getNodeAt(t.pointer);if(t.dragging=!0,t.selection=[],t.translation=this._getTranslation(),t.nodeId=null,null!=e){t.nodeId=e.id,e.isSelected()||this._selectObject(e,!1);for(var i in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(i)){var s=this.selectionObj.nodes[i],o={id:s.id,node:s,x:s.x,y:s.y,xFixed:s.xFixed,yFixed:s.yFixed};s.xFixed=!0,s.yFixed=!0,t.selection.push(o)}}},s.prototype._onDrag=function(t){this._handleOnDrag(t)},s.prototype._handleOnDrag=function(t){if(!this.drag.pinched){var e=this._getPointer(t.gesture.center),i=this,s=this.drag,o=s.selection;if(o&&o.length&&1==this.constants.dragNodes){var n=e.x-s.pointer.x,r=e.y-s.pointer.y;o.forEach(function(t){var e=t.node;t.xFixed||(e.x=i._XconvertDOMtoCanvas(i._XconvertCanvasToDOM(t.x)+n)),t.yFixed||(e.y=i._YconvertDOMtoCanvas(i._YconvertCanvasToDOM(t.y)+r))}),this.moving||(this.moving=!0,this.start())}else if(1==this.constants.dragNetwork){var a=e.x-this.drag.pointer.x,h=e.y-this.drag.pointer.y;this._setTranslation(this.drag.translation.x+a,this.drag.translation.y+h),this._redraw()}}},s.prototype._onDragEnd=function(){this.drag.dragging=!1;var t=this.drag.selection;t&&t.length?(t.forEach(function(t){t.node.xFixed=t.xFixed,t.node.yFixed=t.yFixed}),this.moving=!0,this.start()):this._redraw()},s.prototype._onTap=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleTap(e)},s.prototype._onDoubleTap=function(t){var e=this._getPointer(t.gesture.center);this._handleDoubleTap(e)},s.prototype._onHold=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleOnHold(e)},s.prototype._onRelease=function(t){var e=this._getPointer(t.gesture.center);this._handleOnRelease(e)},s.prototype._onPinch=function(t){var e=this._getPointer(t.gesture.center);this.drag.pinched=!0,"scale"in this.pinch||(this.pinch.scale=1);var i=this.pinch.scale*t.gesture.scale;this._zoom(i,e)},s.prototype._zoom=function(t,e){if(1==this.constants.zoomable){var i=this._getScale();1e-5>t&&(t=1e-5),t>10&&(t=10);var s=null;void 0!==this.drag&&1==this.drag.dragging&&(s=this.DOMtoCanvas(this.drag.pointer));var o=this._getTranslation(),n=t/i,r=(1-n)*e.x+o.x*n,a=(1-n)*e.y+o.y*n;if(this.areaCenter={x:this._XconvertDOMtoCanvas(e.x),y:this._YconvertDOMtoCanvas(e.y)},this._setScale(t),this._setTranslation(r,a),this.updateClustersDefault(),null!=s){var h=this.canvasToDOM(s);this.drag.pointer.x=h.x,this.drag.pointer.y=h.y}return this._redraw(),t>i?this.emit("zoom",{direction:"+"}):this.emit("zoom",{direction:"-"}),t}},s.prototype._onMouseWheel=function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i=this._getScale(),s=e/10;0>e&&(s/=1-s),i*=1+s;var o=h.fakeGesture(this,t),n=this._getPointer(o.center);this._zoom(i,n)}t.preventDefault()},s.prototype._onMouseMoveTitle=function(t){var e=h.fakeGesture(this,t),i=this._getPointer(e.center);this.popupObj&&this._checkHidePopup(i);var s=this,o=function(){s._checkShowPopup(i)};if(this.popupTimer&&clearInterval(this.popupTimer),this.drag.dragging||(this.popupTimer=setTimeout(o,this.constants.tooltip.delay)),1==this.constants.hover){for(var n in this.hoverObj.edges)this.hoverObj.edges.hasOwnProperty(n)&&(this.hoverObj.edges[n].hover=!1,delete this.hoverObj.edges[n]);var r=this._getNodeAt(i);null==r&&(r=this._getEdgeAt(i)),null!=r&&this._hoverObject(r);for(var a in this.hoverObj.nodes)this.hoverObj.nodes.hasOwnProperty(a)&&(r instanceof m&&r.id!=a||r instanceof g||null==r)&&(this._blurObject(this.hoverObj.nodes[a]),delete this.hoverObj.nodes[a]);this.redraw()}},s.prototype._checkShowPopup=function(t){var e,i={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},s=this.popupObj;if(void 0==this.popupObj){var o=this.nodes;for(e in o)if(o.hasOwnProperty(e)){var n=o[e];if(void 0!==n.getTitle()&&n.isOverlappingWith(i)){this.popupObj=n;break}}}if(void 0===this.popupObj){var r=this.edges;for(e in r)if(r.hasOwnProperty(e)){var a=r[e];if(a.connected&&void 0!==a.getTitle()&&a.isOverlappingWith(i)){this.popupObj=a;break}}}if(this.popupObj){if(this.popupObj!=s){var h=this;h.popup||(h.popup=new v(h.frame,h.constants.tooltip)),h.popup.setPosition(t.x-3,t.y-3),h.popup.setText(h.popupObj.getTitle()),h.popup.show()}}else this.popup&&this.popup.hide()},s.prototype._checkHidePopup=function(t){this.popupObj&&this._getNodeAt(t)||(this.popupObj=void 0,this.popup&&this.popup.hide())},s.prototype.setSize=function(t,e){this.frame.style.width=t,this.frame.style.height=e,this.frame.canvas.style.width="100%",this.frame.canvas.style.height="100%",this.frame.canvas.width=this.frame.canvas.clientWidth,this.frame.canvas.height=this.frame.canvas.clientHeight,void 0!==this.manipulationDiv&&(this.manipulationDiv.style.width=this.frame.canvas.clientWidth+"px"),void 0!==this.navigationDivs&&void 0!==this.navigationDivs.wrapper&&(this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px"),this.emit("resize",{width:this.frame.canvas.width,height:this.frame.canvas.height})},s.prototype._setNodes=function(t){var e=this.nodesData;if(t instanceof d||t instanceof l)this.nodesData=t;else if(t instanceof Array)this.nodesData=new d,this.nodesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.nodesData=new d}if(e&&a.forEach(this.nodesListeners,function(t,i){e.off(i,t)}),this.nodes={},this.nodesData){var i=this;a.forEach(this.nodesListeners,function(t,e){i.nodesData.on(e,t)});var s=this.nodesData.getIds();this._addNodes(s)}this._updateSelection()},s.prototype._addNodes=function(t){for(var e,i=0,s=t.length;s>i;i++){e=t[i];var o=this.nodesData.get(e),n=new m(o,this.images,this.groups,this.constants);if(this.nodes[e]=n,!(0!=n.xFixed&&0!=n.yFixed||null!==n.x&&null!==n.y)){var r=1*t.length+10,a=2*Math.PI*Math.random();0==n.xFixed&&(n.x=r*Math.cos(a)),0==n.yFixed&&(n.y=r*Math.sin(a))}this.moving=!0}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateValueRange(this.nodes),this.updateLabels()},s.prototype._updateNodes=function(t){for(var e=this.nodes,i=this.nodesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n],a=i.get(n);r?r.setProperties(a,this.constants):(r=new m(properties,this.images,this.groups,this.constants),e[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._reconnectEdges(),this._updateValueRange(e)},s.prototype._removeNodes=function(t){for(var e=this.nodes,i=0,s=t.length;s>i;i++){var o=t[i];delete e[o]}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateSelection(),this._updateValueRange(e)},s.prototype._setEdges=function(t){var e=this.edgesData;if(t instanceof d||t instanceof l)this.edgesData=t;else if(t instanceof Array)this.edgesData=new d,this.edgesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.edgesData=new d}if(e&&a.forEach(this.edgesListeners,function(t,i){e.off(i,t)}),this.edges={},this.edgesData){var i=this;a.forEach(this.edgesListeners,function(t,e){i.edgesData.on(e,t)});var s=this.edgesData.getIds();this._addEdges(s)}this._reconnectEdges()},s.prototype._addEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n];r&&r.disconnect();var a=i.get(n,{showInternalIds:!0});e[n]=new g(a,this,this.constants)}this.moving=!0,this._updateValueRange(e),this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._updateEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=i.get(n),a=e[n];a?(a.disconnect(),a.setProperties(r,this.constants),a.connect()):(a=new g(r,this,this.constants),this.edges[n]=a)}this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.moving=!0,this._updateValueRange(e)},s.prototype._removeEdges=function(t){for(var e=this.edges,i=0,s=t.length;s>i;i++){var o=t[i],n=e[o];n&&(null!=n.via&&delete this.sectors.support.nodes[n.via.id],n.disconnect(),delete e[o])}this.moving=!0,this._updateValueRange(e),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._reconnectEdges=function(){var t,e=this.nodes,i=this.edges;for(t in e)e.hasOwnProperty(t)&&(e[t].edges=[]);for(t in i)if(i.hasOwnProperty(t)){var s=i[t];s.from=null,s.to=null,s.connect()}},s.prototype._updateValueRange=function(t){var e,i=void 0,s=void 0;for(e in t)if(t.hasOwnProperty(e)){var o=t[e].getValue();void 0!==o&&(i=void 0===i?o:Math.min(o,i),s=void 0===s?o:Math.max(o,s))}if(void 0!==i&&void 0!==s)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,s)},s.prototype.redraw=function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},s.prototype._redraw=function(){var t=this.frame.canvas.getContext("2d"),e=this.frame.canvas.width,i=this.frame.canvas.height;t.clearRect(0,0,e,i),t.save(),t.translate(this.translation.x,this.translation.y),t.scale(this.scale,this.scale),this.canvasTopLeft={x:this._XconvertDOMtoCanvas(0),y:this._YconvertDOMtoCanvas(0)},this.canvasBottomRight={x:this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth),y:this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight)},this._doInAllSectors("_drawAllSectorNodes",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideEdgesOnDrag)&&this._doInAllSectors("_drawEdges",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideNodesOnDrag)&&this._doInAllSectors("_drawNodes",t,!1),1==this.controlNodesActive&&this._doInAllSectors("_drawControlNodes",t),t.restore()},s.prototype._setTranslation=function(t,e){void 0===this.translation&&(this.translation={x:0,y:0}),void 0!==t&&(this.translation.x=t),void 0!==e&&(this.translation.y=e),this.emit("viewChanged")},s.prototype._getTranslation=function(){return{x:this.translation.x,y:this.translation.y}},s.prototype._setScale=function(t){this.scale=t},s.prototype._getScale=function(){return this.scale},s.prototype._XconvertDOMtoCanvas=function(t){return(t-this.translation.x)/this.scale},s.prototype._XconvertCanvasToDOM=function(t){return t*this.scale+this.translation.x},s.prototype._YconvertDOMtoCanvas=function(t){return(t-this.translation.y)/this.scale},s.prototype._YconvertCanvasToDOM=function(t){return t*this.scale+this.translation.y},s.prototype.canvasToDOM=function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}},s.prototype.DOMtoCanvas=function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}},s.prototype._drawNodes=function(t,e){void 0===e&&(e=!1);var i=this.nodes,s=[];for(var o in i)i.hasOwnProperty(o)&&(i[o].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight),i[o].isSelected()?s.push(o):(i[o].inArea()||e)&&i[o].draw(t));for(var n=0,r=s.length;r>n;n++)(i[s[n]].inArea()||e)&&i[s[n]].draw(t)},s.prototype._drawEdges=function(t){var e=this.edges;for(var i in e)if(e.hasOwnProperty(i)){var s=e[i];s.setScale(this.scale),s.connected&&e[i].draw(t)}},s.prototype._drawControlNodes=function(t){var e=this.edges;for(var i in e)e.hasOwnProperty(i)&&e[i]._drawControlNodes(t)},s.prototype._stabilize=function(){1==this.constants.freezeForStabilization&&this._freezeDefinedNodes();for(var t=0;this.moving&&t0)for(e in s)s.hasOwnProperty(e)&&(s[e].discreteStepLimited(i,this.constants.maxVelocity),o=!0);else for(e in s)s.hasOwnProperty(e)&&(s[e].discreteStep(i),o=!0);if(1==o&&(void 0===t||1==t)){var n=this.constants.minVelocity/Math.max(this.scale,.05);n>.5*this.constants.maxVelocity?this.moving=!0:(this.moving=this._isMoving(n),0==this.moving&&this.emit("stabilized",{iterations:null}),this.moving=this.moving||this.configurePhysics)}},s.prototype._physicsTick=function(){this.freezeSimulation||1==this.moving&&(this._doInAllActiveSectors("_initializeForceCalculation"),this._doInAllActiveSectors("_discreteStepNodes"),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&this._doInSupportSector("_discreteStepNodes",!1),this._findCenter(this._getRange()))},s.prototype._animationStep=function(){this.timer=void 0,this._handleNavigation(),this.start();var t=Date.now(),e=1;this._physicsTick();for(var i=Date.now()-t;i<.9*(this.renderTimestep-this.renderTime)&&eh}return!1},s.prototype._getColor=function(){var t=this.options.color;return"to"==this.options.inheritColor?t={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:this.to.options.color.border}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(t={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:this.from.options.color.border}),1==this.selected?t.highlight:1==this.hover?t.hover:t.color},s.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(),t.lineWidth=this._getLineWidth(),this.from!=this.to){var e,i=this._line(t);if(this.label){if(1==this.options.smoothCurves.enabled&&null!=i){var s=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),o=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:s,y:o}}else e=this._pointOnLine(.5);this._label(t,this.label,e.x,e.y)}}else{var n,r,a=this.physics.springLength/4,h=this.from;h.width||h.resize(t),h.width>h.height?(n=h.x+h.width/2,r=h.y-a):(n=h.x+a,r=h.y-h.height/2),this._circle(t,n,r,a),e=this._pointOnCircle(n,r,a,.5),this._label(t,this.label,e.x,e.y)}},s.prototype._getLineWidth=function(){return 1==this.selected?Math.min(this.widthSelected,this.options.widthMax)*this.networkScaleInv:1==this.hover?Math.min(this.options.hoverWidth,this.options.widthMax)*this.networkScaleInv:this.options.width*this.networkScaleInv},s.prototype._getViaCoordinates=function(){var t=null,e=null,i=this.options.smoothCurves.roundness,s=this.options.smoothCurves.type,o=Math.abs(this.from.x-this.to.x),n=Math.abs(this.from.y-this.to.y);return"discrete"==s||"diagonalCross"==s?Math.abs(this.from.x-this.to.x)this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n)),"discrete"==s&&(t=i*n>o?this.from.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o)),"discrete"==s&&(e=i*o>n?this.from.y:e)):"straightCross"==s?Math.abs(this.from.x-this.to.x)Math.abs(this.from.y-this.to.y)&&(t=this.from.xthis.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n,t=this.to.x>t?this.to.x:t):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n,t=this.to.x>t?this.to.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xe?this.to.y:e):this.from.x>this.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o,e=this.to.yl.height?(a=l.x+.5*l.width,h=l.y-d):(a=l.x+d,h=l.y-.5*l.height),this._circle(t,a,h,d);var s=.2*Math.PI,o=(10+5*this.options.width)*this.options.arrowScaleFactor;e=this._pointOnCircle(a,h,d,.5),t.arrow(e.x,e.y,s,o),t.fill(),t.stroke(),this.label&&(e=this._pointOnCircle(a,h,d,.5),this._label(t,this.label,e.x,e.y))}},s.prototype._drawArrow=function(t){1==this.selected?(t.strokeStyle=this.options.color.highlight,t.fillStyle=this.options.color.highlight):1==this.hover?(t.strokeStyle=this.options.color.hover,t.fillStyle=this.options.color.hover):(t.strokeStyle=this.options.color.color,t.fillStyle=this.options.color.color),t.lineWidth=this._getLineWidth();var e,i;if(this.from!=this.to){e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var s,o=this.to.x-this.from.x,n=this.to.y-this.from.y,r=Math.sqrt(o*o+n*n),a=this.from.distanceToBorder(t,e+Math.PI),h=(r-a)/r,d=h*this.from.x+(1-h)*this.to.x,l=h*this.from.y+(1-h)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?s=this.via:1==this.options.smoothCurves.enabled&&(s=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=s.x&&(e=Math.atan2(this.to.y-s.y,this.to.x-s.x),o=this.to.x-s.x,n=this.to.y-s.y,r=Math.sqrt(o*o+n*n));var c,p,u=this.to.distanceToBorder(t,e),f=(r-u)/r;if(1==this.options.smoothCurves.enabled&&null!=s.x?(c=(1-f)*s.x+f*this.to.x,p=(1-f)*s.y+f*this.to.y):(c=(1-f)*this.from.x+f*this.to.x,p=(1-f)*this.from.y+f*this.to.y),t.beginPath(),t.moveTo(d,l),1==this.options.smoothCurves.enabled&&null!=s.x?t.quadraticCurveTo(s.x,s.y,c,p):t.lineTo(c,p),t.stroke(),i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(c,p,e,i),t.fill(),t.stroke(),this.label){var m;if(1==this.options.smoothCurves.enabled&&null!=s){var g=.5*(.5*(this.from.x+s.x)+.5*(this.to.x+s.x)),v=.5*(.5*(this.from.y+s.y)+.5*(this.to.y+s.y));m={x:g,y:v}}else m=this._pointOnLine(.5);this._label(t,this.label,m.x,m.y)}}else{var y,b,_,x=this.from,w=.25*Math.max(100,this.physics.springLength);x.width||x.resize(t),x.width>x.height?(y=x.x+.5*x.width,b=x.y-w,_={x:y,y:x.y,angle:.9*Math.PI}):(y=x.x+w,b=x.y-.5*x.height,_={x:x.x,y:b,angle:.6*Math.PI}),t.beginPath(),t.arc(y,b,w,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(_.x,_.y,_.angle,i),t.fill(),t.stroke(),this.label&&(m=this._pointOnCircle(y,b,w,.5),this._label(t,this.label,m.x,m.y))}},s.prototype._getDistanceToEdge=function(t,e,i,s,o,n){if(this.from!=this.to){if(1==this.options.smoothCurves.enabled){var r,a;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)r=this.via.x,a=this.via.y;else{var h=this._getViaCoordinates();r=h.x,a=h.y}var d,l,c,p,u,f,m,g=1e9;for(l=0;10>l;l++)c=.1*l,p=Math.pow(1-c,2)*t+2*c*(1-c)*r+Math.pow(c,2)*i,u=Math.pow(1-c,2)*e+2*c*(1-c)*a+Math.pow(c,2)*s,l>0&&(d=this._getDistanceToLine(f,m,p,u,o,n),g=g>d?d:g),f=p,m=u;return g}return this._getDistanceToLine(t,e,i,s,o,n)}var p,u,v,y,b=this.physics.springLength/4,_=this.from;return _.width||_.resize(ctx),_.width>_.height?(p=_.x+_.width/2,u=_.y-b):(p=_.x+b,u=_.y-_.height/2),v=p-o,y=u-n,Math.abs(Math.sqrt(v*v+y*y)-b)},s.prototype._getDistanceToLine=function(t,e,i,s,o,n){var r=i-t,a=s-e,h=r*r+a*a,d=((o-t)*r+(n-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,c=e+d*a,p=l-o,u=c-n;return Math.sqrt(p*p+u*u)},s.prototype.setScale=function(t){this.networkScaleInv=1/t},s.prototype.select=function(){this.selected=!0},s.prototype.unselect=function(){this.selected=!1},s.prototype.positionBezierNode=function(){null!==this.via&&null!==this.from&&null!==this.to&&(this.via.x=.5*(this.from.x+this.to.x),this.via.y=.5*(this.from.y+this.to.y))},s.prototype._drawControlNodes=function(t){if(1==this.controlNodesEnabled){if(null===this.controlNodes.from&&null===this.controlNodes.to){var e="edgeIdFrom:".concat(this.id),i="edgeIdTo:".concat(this.id),s={nodes:{group:"",radius:8},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s)}0==this.controlNodes.from.selected&&0==this.controlNodes.to.selected&&(this.controlNodes.positions=this.getControlNodePositions(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y,this.controlNodes.to.x=this.controlNodes.positions.to.x,this.controlNodes.to.y=this.controlNodes.positions.to.y),this.controlNodes.from.draw(t),this.controlNodes.to.draw(t)}else this.controlNodes={from:null,to:null,positions:{}}},s.prototype._enableControlNodes=function(){this.controlNodesEnabled=!0},s.prototype._disableControlNodes=function(){this.controlNodesEnabled=!1},s.prototype._getSelectedControlNode=function(t,e){var i=this.controlNodes.positions,s=Math.sqrt(Math.pow(t-i.from.x,2)+Math.pow(e-i.from.y,2)),o=Math.sqrt(Math.pow(t-i.to.x,2)+Math.pow(e-i.to.y,2));return 15>s?(this.connectedNode=this.from,this.from=this.controlNodes.from,this.controlNodes.from):15>o?(this.connectedNode=this.to,this.to=this.controlNodes.to,this.controlNodes.to):null},s.prototype._restoreControlNodes=function(){1==this.controlNodes.from.selected&&(this.from=this.connectedNode,this.connectedNode=null,this.controlNodes.from.unselect()),1==this.controlNodes.to.selected&&(this.to=this.connectedNode,this.connectedNode=null,this.controlNodes.to.unselect())},s.prototype.getControlNodePositions=function(t){var e,i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),s=this.to.x-this.from.x,o=this.to.y-this.from.y,n=Math.sqrt(s*s+o*o),r=this.from.distanceToBorder(t,i+Math.PI),a=(n-r)/n,h=a*this.from.x+(1-a)*this.to.x,d=a*this.from.y+(1-a)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?e=this.via:1==this.options.smoothCurves.enabled&&(e=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=e.x&&(i=Math.atan2(this.to.y-e.y,this.to.x-e.x),s=this.to.x-e.x,o=this.to.y-e.y,n=Math.sqrt(s*s+o*o));var l,c,p=this.to.distanceToBorder(t,i),u=(n-p)/n;return 1==this.options.smoothCurves.enabled&&null!=e.x?(l=(1-u)*e.x+u*this.to.x,c=(1-u)*e.y+u*this.to.y):(l=(1-u)*this.from.x+u*this.to.x,c=(1-u)*this.from.y+u*this.to.y),{from:{x:h,y:d},to:{x:l,y:c}}},t.exports=s},function(t,e,i){function s(){this.clear(),this.defaultIndex=0}var o=i(1);s.DEFAULT=[{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},{border:"#FFA500",background:"#FFFF00",highlight:{border:"#FFA500",background:"#FFFFA3"},hover:{border:"#FFA500",background:"#FFFFA3"}},{border:"#FA0A10",background:"#FB7E81",highlight:{border:"#FA0A10",background:"#FFAFB1"},hover:{border:"#FA0A10",background:"#FFAFB1"}},{border:"#41A906",background:"#7BE141",highlight:{border:"#41A906",background:"#A1EC76"},hover:{border:"#41A906",background:"#A1EC76"}},{border:"#E129F0",background:"#EB7DF4",highlight:{border:"#E129F0",background:"#F0B3F5"},hover:{border:"#E129F0",background:"#F0B3F5"}},{border:"#7C29F0",background:"#AD85E4",highlight:{border:"#7C29F0",background:"#D3BDF0"},hover:{border:"#7C29F0",background:"#D3BDF0"}},{border:"#C37F00",background:"#FFA807",highlight:{border:"#C37F00",background:"#FFCA66"},hover:{border:"#C37F00",background:"#FFCA66"}},{border:"#4220FB",background:"#6E6EFD",highlight:{border:"#4220FB",background:"#9B9BFD"},hover:{border:"#4220FB",background:"#9B9BFD"}},{border:"#FD5A77",background:"#FFC0CB",highlight:{border:"#FD5A77",background:"#FFD1D9"},hover:{border:"#FD5A77",background:"#FFD1D9"}},{border:"#4AD63A",background:"#C2FABC",highlight:{border:"#4AD63A",background:"#E6FFE3"},hover:{border:"#4AD63A",background:"#E6FFE3"}}],s.prototype.clear=function(){this.groups={},this.groups.length=function(){var t=0;for(var e in this)this.hasOwnProperty(e)&&t++;return t}},s.prototype.get=function(t){var e=this.groups[t];if(void 0==e){var i=this.defaultIndex%s.DEFAULT.length;this.defaultIndex++,e={},e.color=s.DEFAULT[i],this.groups[t]=e}return e},s.prototype.add=function(t,e){return this.groups[t]=e,e.color&&(e.color=o.parseColor(e.color)),e},t.exports=s},function(t){function e(){this.images={},this.callback=void 0}e.prototype.setOnloadCallback=function(t){this.callback=t},e.prototype.load=function(t){var e=this.images[t];if(void 0==e){var i=this;e=new Image,this.images[t]=e,e.onload=function(){i.callback&&i.callback(this)},e.src=t}return e},t.exports=e},function(t,e,i){function s(t,e,i,s){var n=o.selectiveBridgeObject(["nodes"],s);this.options=n.nodes,this.selected=!1,this.hover=!1,this.edges=[],this.dynamicEdges=[],this.reroutedEdges={},this.fontDrawThreshold=3,this.id=void 0,this.x=null,this.y=null,this.xFixed=!1,this.yFixed=!1,this.horizontalAlignLeft=!0,this.verticalAlignTop=!0,this.baseRadiusValue=s.nodes.radius,this.radiusFixed=!1,this.level=-1,this.preassignedLevel=!1,this.imagelist=e,this.grouplist=i,this.fx=0,this.fy=0,this.vx=0,this.vy=0,this.damping=s.physics.damping,this.fixedData={x:null,y:null},this.setProperties(t,n),this.resetCluster(),this.dynamicEdgesLength=0,this.clusterSession=0,this.clusterSizeWidthFactor=s.clustering.nodeScaling.width,this.clusterSizeHeightFactor=s.clustering.nodeScaling.height,this.clusterSizeRadiusFactor=s.clustering.nodeScaling.radius,this.maxNodeSizeIncrements=s.clustering.maxNodeSizeIncrements,this.growthIndicator=0,this.networkScaleInv=1,this.networkScale=1,this.canvasTopLeft={x:-300,y:-300},this.canvasBottomRight={x:300,y:300},this.parentEdgeId=null}var o=i(1);s.prototype.resetCluster=function(){this.formationScale=void 0,this.clusterSize=1,this.containedNodes={},this.containedEdges={},this.clusterSessions=[]},s.prototype.attachEdge=function(t){-1==this.edges.indexOf(t)&&this.edges.push(t),-1==this.dynamicEdges.indexOf(t)&&this.dynamicEdges.push(t),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.detachEdge=function(t){var e=this.edges.indexOf(t);-1!=e&&(this.edges.splice(e,1),this.dynamicEdges.splice(e,1)),this.dynamicEdgesLength=this.dynamicEdges.length},s.prototype.setProperties=function(t,e){if(t){var i=["borderWidth","borderWidthSelected","shape","image","radius","fontColor","fontSize","fontFace","group","mass"];if(o.selectiveDeepExtend(i,this.options,t),this.originalLabel=void 0,void 0!==t.id&&(this.id=t.id),void 0!==t.label&&(this.label=t.label,this.originalLabel=t.label),void 0!==t.title&&(this.title=t.title),void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.value&&(this.value=t.value),void 0!==t.level&&(this.level=t.level,this.preassignedLevel=!0),void 0!==t.horizontalAlignLeft&&(this.horizontalAlignLeft=t.horizontalAlignLeft),void 0!==t.verticalAlignTop&&(this.verticalAlignTop=t.verticalAlignTop),void 0!==t.triggerFunction&&(this.triggerFunction=t.triggerFunction),void 0===this.id)throw"Node must have an id";if("number"==typeof this.options.group||"string"==typeof this.options.group&&""!=this.options.group){var s=this.grouplist.get(this.options.group);for(var n in s)s.hasOwnProperty(n)&&(this.options[n]=s[n])}if(void 0!==t.radius&&(this.baseRadiusValue=this.options.radius),void 0!==t.color&&(this.options.color=o.parseColor(t.color)),void 0!==this.options.image&&""!=this.options.image){if(!this.imagelist)throw"No imagelist provided";this.imageObj=this.imagelist.load(this.options.image)}switch(this.xFixed=this.xFixed||void 0!==t.x&&!t.allowedToMoveX,this.yFixed=this.yFixed||void 0!==t.y&&!t.allowedToMoveY,this.radiusFixed=this.radiusFixed||void 0!==t.radius,"image"==this.options.shape&&(this.options.radiusMin=e.nodes.widthMin,this.options.radiusMax=e.nodes.widthMax),this.options.shape){case"database":this.draw=this._drawDatabase,this.resize=this._resizeDatabase;break;case"box":this.draw=this._drawBox,this.resize=this._resizeBox;break;case"circle":this.draw=this._drawCircle,this.resize=this._resizeCircle;break;case"ellipse":this.draw=this._drawEllipse,this.resize=this._resizeEllipse;break;case"image":this.draw=this._drawImage,this.resize=this._resizeImage;break;case"text":this.draw=this._drawText,this.resize=this._resizeText;break;case"dot":this.draw=this._drawDot,this.resize=this._resizeShape;break;case"square":this.draw=this._drawSquare,this.resize=this._resizeShape;break;case"triangle":this.draw=this._drawTriangle,this.resize=this._resizeShape;break;case"triangleDown":this.draw=this._drawTriangleDown,this.resize=this._resizeShape;break;case"star":this.draw=this._drawStar,this.resize=this._resizeShape;break;default:this.draw=this._drawEllipse,this.resize=this._resizeEllipse}this._reset()}},s.prototype.select=function(){this.selected=!0,this._reset()},s.prototype.unselect=function(){this.selected=!1,this._reset()},s.prototype.clearSizeCache=function(){this._reset()},s.prototype._reset=function(){this.width=void 0,this.height=void 0},s.prototype.getTitle=function(){return"function"==typeof this.title?this.title():this.title},s.prototype.distanceToBorder=function(t,e){var i=1;switch(this.width||this.resize(t),this.options.shape){case"circle":case"dot":return this.options.radius+i;case"ellipse":var s=this.width/2,o=this.height/2,n=Math.sin(e)*s,r=Math.cos(e)*o;return s*o/Math.sqrt(n*n+r*r);case"box":case"image":case"text":default:return this.width?Math.min(Math.abs(this.width/2/Math.cos(e)),Math.abs(this.height/2/Math.sin(e)))+i:0}},s.prototype._setForce=function(t,e){this.fx=t,this.fy=e},s.prototype._addForce=function(t,e){this.fx+=t,this.fy+=e},s.prototype.discreteStep=function(t){if(!this.xFixed){var e=this.damping*this.vx,i=(this.fx-e)/this.options.mass;this.vx+=i*t,this.x+=this.vx*t}if(!this.yFixed){var s=this.damping*this.vy,o=(this.fy-s)/this.options.mass;this.vy+=o*t,this.y+=this.vy*t}},s.prototype.discreteStepLimited=function(t,e){if(this.xFixed)this.fx=0;else{var i=this.damping*this.vx,s=(this.fx-i)/this.options.mass;this.vx+=s*t,this.vx=Math.abs(this.vx)>e?this.vx>0?e:-e:this.vx,this.x+=this.vx*t}if(this.yFixed)this.fy=0;else{var o=this.damping*this.vy,n=(this.fy-o)/this.options.mass;this.vy+=n*t,this.vy=Math.abs(this.vy)>e?this.vy>0?e:-e:this.vy,this.y+=this.vy*t}},s.prototype.isFixed=function(){return this.xFixed&&this.yFixed},s.prototype.isMoving=function(t){var e=Math.sqrt(Math.pow(this.vx,2)+Math.pow(this.vy,2));return e>t},s.prototype.isSelected=function(){return this.selected},s.prototype.getValue=function(){return this.value},s.prototype.getDistance=function(t,e){var i=this.x-t,s=this.y-e;return Math.sqrt(i*i+s*s)},s.prototype.setValueRange=function(t,e){if(!this.radiusFixed&&void 0!==this.value)if(e==t)this.options.radius=(this.options.radiusMin+this.options.radiusMax)/2;else{var i=(this.options.radiusMax-this.options.radiusMin)/(e-t);this.options.radius=(this.value-t)*i+this.options.radiusMin}this.baseRadiusValue=this.options.radius},s.prototype.draw=function(){throw"Draw method not initialized for node"},s.prototype.resize=function(){throw"Resize method not initialized for node"},s.prototype.isOverlappingWith=function(t){return this.leftt.left&&this.topt.top},s.prototype._resizeImage=function(){if(!this.width||!this.height){var t,e;if(this.value){this.options.radius=this.baseRadiusValue;var i=this.imageObj.height/this.imageObj.width;void 0!==i?(t=this.options.radius||this.imageObj.width,e=this.options.radius*i||this.imageObj.height):(t=0,e=0)}else t=this.imageObj.width,e=this.imageObj.height;this.width=t,this.height=e,this.growthIndicator=0,this.width>0&&this.height>0&&(this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t)}},s.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e;if(0!=this.imageObj.width){if(this.clusterSize>1){var i=this.clusterSize>1?10:0;i*=this.networkScaleInv,i=Math.min(.2*this.width,i),t.globalAlpha=.5,t.drawImage(this.imageObj,this.left-i,this.top-i,this.width+2*i,this.height+2*i)}t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height),e=this.y+this.height/2}else e=this.y;this._label(t,this.label,this.x,e,void 0,"top")},s.prototype._resizeBox=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawBox=function(t){this._resizeBox(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.roundRect(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth,this.options.radius),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.options.color.background,t.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeDatabase=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=i.width+2*e;this.width=s,this.height=s,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-s}},s.prototype._drawDatabase=function(t){this._resizeDatabase(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.database(this.x-this.width/2-2*t.lineWidth,this.y-.5*this.height-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.database(this.x-this.width/2,this.y-.5*this.height,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeCircle=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=Math.max(i.width,i.height)+2*e;this.options.radius=s/2,this.width=s,this.height=s,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.options.radius-.5*s}},s.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.circle(this.x,this.y,this.options.radius+2*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.circle(this.x,this.y,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeEllipse=function(t){if(!this.width){var e=this.getTextSize(t);this.width=1.5*e.width,this.height=2*e.height,this.width1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.ellipse(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.ellipse(this.left,this.top,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._drawDot=function(t){this._drawShape(t,"circle")},s.prototype._drawTriangle=function(t){this._drawShape(t,"triangle")},s.prototype._drawTriangleDown=function(t){this._drawShape(t,"triangleDown")},s.prototype._drawSquare=function(t){this._drawShape(t,"square")},s.prototype._drawStar=function(t){this._drawShape(t,"star")},s.prototype._resizeShape=function(){if(!this.width){this.options.radius=this.baseRadiusValue;var t=2*this.options.radius;this.width=t,this.height=t,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t}},s.prototype._drawShape=function(t,e){this._resizeShape(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var i=2.5,s=this.options.borderWidth,o=this.options.borderWidthSelected||2*this.options.borderWidth,n=2;switch(e){case"dot":n=2;break;case"square":n=2;break;case"triangle":n=3;break;case"triangleDown":n=3;break;case"star":n=4}t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t[e](this.x,this.y,this.options.radius+n*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t[e](this.x,this.y,this.options.radius),t.fill(),t.stroke(),this.label&&this._label(t,this.label,this.x,this.y+this.height/2,void 0,"top",!0) -},s.prototype._resizeText=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawText=function(t){this._resizeText(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._label(t,this.label,this.x,this.y)},s.prototype._label=function(t,e,i,s,o,n,r){if(e&&Number(this.options.fontSize)*this.networkScale>this.fontDrawThreshold){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace,t.fillStyle=this.options.fontColor||"black",t.textAlign=o||"center",t.textBaseline=n||"middle";var a=e.split("\n"),h=a.length,d=Number(this.options.fontSize)+4,l=s+(1-h)/2*d;1==r&&(l=s+(1-h)/(2*d));for(var c=0;h>c;c++)t.fillText(a[c],i,l),l+=d}},s.prototype.getTextSize=function(t){if(void 0!==this.label){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace;for(var e=this.label.split("\n"),i=(Number(this.options.fontSize)+4)*e.length,s=0,o=0,n=e.length;n>o;o++)s=Math.max(s,t.measureText(e[o]).width);return{width:s,height:i}}return{width:0,height:0}},s.prototype.inArea=function(){return void 0!==this.width?this.x+this.width*this.networkScaleInv>=this.canvasTopLeft.x&&this.x-this.width*this.networkScaleInv=this.canvasTopLeft.y&&this.y-this.height*this.networkScaleInv=this.canvasTopLeft.x&&this.x=this.canvasTopLeft.y&&this.ys&&(n=s-e-this.padding),no&&(r=o-i-this.padding),ri;i++)if(e.id===r.nodes[i].id){o=r.nodes[i];break}for(o||(o={id:e.id},t.node&&(o.attr=a(o.attr,t.node))),i=n.length-1;i>=0;i--){var h=n[i];h.nodes||(h.nodes=[]),-1==h.nodes.indexOf(o)&&h.nodes.push(o)}e.attr&&(o.attr=a(o.attr,e.attr))}function l(t,e){if(t.edges||(t.edges=[]),t.edges.push(e),t.edge){var i=a({},t.edge);e.attr=a(i,e.attr)}}function c(t,e,i,s,o){var n={from:e,to:i,type:s};return t.edge&&(n.attr=a({},t.edge)),n.attr=a(n.attr||{},o),n}function p(){for(k=C.NULL,L="";" "==O||" "==O||"\n"==O||"\r"==O;)o();do{var t=!1;if("#"==O){for(var e=T-1;" "==D.charAt(e)||" "==D.charAt(e);)e--;if("\n"==D.charAt(e)||""==D.charAt(e)){for(;""!=O&&"\n"!=O;)o();t=!0}}if("/"==O&&"/"==n()){for(;""!=O&&"\n"!=O;)o();t=!0}if("/"==O&&"*"==n()){for(;""!=O;){if("*"==O&&"/"==n()){o(),o();break}o()}t=!0}for(;" "==O||" "==O||"\n"==O||"\r"==O;)o()}while(t);if(""==O)return void(k=C.DELIMITER);var i=O+n();if(E[i])return k=C.DELIMITER,L=i,o(),void o();if(E[O])return k=C.DELIMITER,L=O,void o();if(r(O)||"-"==O){for(L+=O,o();r(O);)L+=O,o();return"false"==L?L=!1:"true"==L?L=!0:isNaN(Number(L))||(L=Number(L)),void(k=C.IDENTIFIER)}if('"'==O){for(o();""!=O&&('"'!=O||'"'==O&&'"'==n());)L+=O,'"'==O&&o(),o();if('"'!=O)throw x('End of string " expected');return o(),void(k=C.IDENTIFIER)}for(k=C.UNKNOWN;""!=O;)L+=O,o();throw new SyntaxError('Syntax error in part "'+w(L,30)+'"')}function u(){var t={};if(s(),p(),"strict"==L&&(t.strict=!0,p()),("graph"==L||"digraph"==L)&&(t.type=L,p()),k==C.IDENTIFIER&&(t.id=L,p()),"{"!=L)throw x("Angle bracket { expected");if(p(),f(t),"}"!=L)throw x("Angle bracket } expected");if(p(),""!==L)throw x("End of file expected");return p(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==L&&"}"!=L;)m(t),";"==L&&p()}function m(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(k!=C.IDENTIFIER)throw x("Identifier expected");var s=L;if(p(),"="==L){if(p(),k!=C.IDENTIFIER)throw x("Identifier expected");t[s]=L,p()}else y(t,s)}}function g(t){var e=null;if("subgraph"==L&&(e={},e.type="subgraph",p(),k==C.IDENTIFIER&&(e.id=L,p())),"{"==L){if(p(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=L)throw x("Angle bracket } expected");p(),delete e.node,delete e.edge,delete e.graph,delete e.parent,t.subgraphs||(t.subgraphs=[]),t.subgraphs.push(e)}return e}function v(t){return"node"==L?(p(),t.node=_(),"node"):"edge"==L?(p(),t.edge=_(),"edge"):"graph"==L?(p(),t.graph=_(),"graph"):null}function y(t,e){var i={id:e},s=_();s&&(i.attr=s),d(t,i),b(t,e)}function b(t,e){for(;"->"==L||"--"==L;){var i,s=L;p();var o=g(t);if(o)i=o;else{if(k!=C.IDENTIFIER)throw x("Identifier or subgraph expected");i=L,d(t,{id:i}),p()}var n=_(),r=c(t,e,i,s,n);l(t,r),e=i}}function _(){for(var t=null;"["==L;){for(p(),t={};""!==L&&"]"!=L;){if(k!=C.IDENTIFIER)throw x("Attribute name expected");var e=L;if(p(),"="!=L)throw x("Equal sign = expected");if(p(),k!=C.IDENTIFIER)throw x("Attribute value expected");var i=L;h(t,e,i),p(),","==L&&p()}if("]"!=L)throw x("Bracket ] expected");p()}return t}function x(t){return new SyntaxError(t+', got "'+w(L,30)+'" (char '+T+")")}function w(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function S(t,e,i){t instanceof Array?t.forEach(function(t){e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}):e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}function M(t){function e(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e}var s=i(t),o={nodes:[],edges:[],options:{}};return s.nodes&&s.nodes.forEach(function(t){var e={id:t.id,label:String(t.label||t.id)};a(e,t.attr),e.image&&(e.shape="image"),o.nodes.push(e)}),s.edges&&s.edges.forEach(function(t){var i,s;i=t.from instanceof Object?t.from.nodes:{id:t.from},s=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var i=e(t);o.edges.push(i)}),S(i,s,function(i,s){var n=c(o,i.id,s.id,t.type,t.attr),r=e(n);o.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var i=e(t);o.edges.push(i)})}),s.attr&&(o.options=s.attr),o}var C={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},E={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},D="",T=0,O="",L="",k=C.NULL,N=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=M},function(t,e){function i(t,e){var i=[],s=[];this.options={edges:{inheritColor:!0},nodes:{allowedToMove:!1,parseColor:!1}},void 0!==e&&(this.options.nodes.allowedToMove=e.allowedToMove|!1,this.options.nodes.parseColor=e.parseColor|!1,this.options.edges.inheritColor=e.inheritColor|!0);for(var o=t.edges,n=t.nodes,r=0;r=s&&(s=864e5),e=new Date(e.valueOf()-.05*s),i=new Date(i.valueOf()+.05*s)}(null!==e||null!==i)&&this.range.setRange(e,i)},s.prototype.setWindow=function(t,e){if(1==arguments.length){var i=arguments[0];this.range.setRange(i.start,i.end)}else this.range.setRange(t,e)},s.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},s.prototype.redraw=function(){var t=!1,e=this.options,i=this.props,s=this.dom;if(s){s.root.className="vis timeline root "+e.orientation,s.root.style.maxHeight=r.option.asSize(e.maxHeight,""),s.root.style.minHeight=r.option.asSize(e.minHeight,""),s.root.style.width=r.option.asSize(e.width,""),i.border.left=(s.centerContainer.offsetWidth-s.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(s.centerContainer.offsetHeight-s.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var o=s.root.offsetHeight-s.root.clientHeight,n=s.root.offsetWidth-s.root.clientWidth;i.center.height=s.center.offsetHeight,i.left.height=s.left.offsetHeight,i.right.height=s.right.offsetHeight,i.top.height=s.top.clientHeight||-i.border.top,i.bottom.height=s.bottom.clientHeight||-i.border.bottom;var a=Math.max(i.left.height,i.center.height,i.right.height),h=i.top.height+a+i.bottom.height+o+i.border.top+i.border.bottom;s.root.style.height=r.option.asSize(e.height,h+"px"),i.root.height=s.root.offsetHeight,i.background.height=i.root.height-o;var d=i.root.height-i.top.height-i.bottom.height-o;i.centerContainer.height=d,i.leftContainer.height=d,i.rightContainer.height=i.leftContainer.height,i.root.width=s.root.offsetWidth,i.background.width=i.root.width-n,i.left.width=s.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=s.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var l=i.root.width-i.left.width-i.right.width-n;i.center.width=l,i.centerContainer.width=l,i.top.width=l,i.bottom.width=l,s.background.style.height=i.background.height+"px",s.backgroundVertical.style.height=i.background.height+"px",s.backgroundHorizontal.style.height=i.centerContainer.height+"px",s.centerContainer.style.height=i.centerContainer.height+"px",s.leftContainer.style.height=i.leftContainer.height+"px",s.rightContainer.style.height=i.rightContainer.height+"px",s.background.style.width=i.background.width+"px",s.backgroundVertical.style.width=i.centerContainer.width+"px",s.backgroundHorizontal.style.width=i.background.width+"px",s.centerContainer.style.width=i.center.width+"px",s.top.style.width=i.top.width+"px",s.bottom.style.width=i.bottom.width+"px",s.background.style.left="0",s.background.style.top="0",s.backgroundVertical.style.left=i.left.width+"px",s.backgroundVertical.style.top="0",s.backgroundHorizontal.style.left="0",s.backgroundHorizontal.style.top=i.top.height+"px",s.centerContainer.style.left=i.left.width+"px",s.centerContainer.style.top=i.top.height+"px",s.leftContainer.style.left="0",s.leftContainer.style.top=i.top.height+"px",s.rightContainer.style.left=i.left.width+i.center.width+"px",s.rightContainer.style.top=i.top.height+"px",s.top.style.left=i.left.width+"px",s.top.style.top="0",s.bottom.style.left=i.left.width+"px",s.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop();var c=this.props.scrollTop;"bottom"==e.orientation&&(c+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),s.center.style.left="0",s.center.style.top=c+"px",s.left.style.left="0",s.left.style.top=c+"px",s.right.style.left="0",s.right.style.top=c+"px";var p=0==this.props.scrollTop?"hidden":"",u=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";s.shadowTop.style.visibility=p,s.shadowBottom.style.visibility=u,s.shadowTopLeft.style.visibility=p,s.shadowBottomLeft.style.visibility=u,s.shadowTopRight.style.visibility=p,s.shadowBottomRight.style.visibility=u,this.components.forEach(function(e){t=e.redraw()||t}),t&&this.redraw()}},s.prototype.repaint=function(){throw new Error("Function repaint is deprecated. Use redraw instead.")},s.prototype._toTime=function(t){var e=this.range.conversion(this.props.center.width);return new Date(t/e.scale+e.offset)},s.prototype._toGlobalTime=function(t){var e=this.range.conversion(this.props.root.width);return new Date(t/e.scale+e.offset)},s.prototype._toScreen=function(t){var e=this.range.conversion(this.props.center.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._toGlobalScreen=function(t){var e=this.range.conversion(this.props.root.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._initAutoResize=function(){1==this.options.autoResize?this._startAutoResize():this._stopAutoResize()},s.prototype._startAutoResize=function(){var t=this;this._stopAutoResize(),this._onResize=function(){return 1!=t.options.autoResize?void t._stopAutoResize():void(t.dom.root&&(t.dom.root.clientWidth!=t.props.lastWidth||t.dom.root.clientHeight!=t.props.lastHeight)&&(t.props.lastWidth=t.dom.root.clientWidth,t.props.lastHeight=t.dom.root.clientHeight,t.emit("change")))},r.addEventListener(window,"resize",this._onResize),this.watchTimer=setInterval(this._onResize,1e3)},s.prototype._stopAutoResize=function(){this.watchTimer&&(clearInterval(this.watchTimer),this.watchTimer=void 0),r.removeEventListener(window,"resize",this._onResize),this._onResize=null},s.prototype._onTouch=function(){this.touch.allowDragging=!0},s.prototype._onPinch=function(){this.touch.allowDragging=!1},s.prototype._onDragStart=function(){this.touch.initialScrollTop=this.props.scrollTop},s.prototype._onDrag=function(t){if(this.touch.allowDragging){var e=t.gesture.deltaY,i=this._getScrollTop(),s=this._setScrollTop(this.touch.initialScrollTop+e);s!=i&&this.redraw()}},s.prototype._setScrollTop=function(t){return this.props.scrollTop=t,this._updateScrollTop(),this.props.scrollTop},s.prototype._updateScrollTop=function(){var t=Math.min(this.props.centerContainer.height-this.props.center.height,0);return t!=this.props.scrollTopMin&&("bottom"==this.options.orientation&&(this.props.scrollTop+=t-this.props.scrollTopMin),this.props.scrollTopMin=t),this.props.scrollTop>0&&(this.props.scrollTop=0),this.props.scrollTops;s++){var o=s%2===0?1.3*i:.5*i;this.lineTo(t+o*Math.sin(2*s*Math.PI/10),e-o*Math.cos(2*s*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,s,o){var n=Math.PI/180;0>i-2*o&&(o=i/2),0>s-2*o&&(o=s/2),this.beginPath(),this.moveTo(t+o,e),this.lineTo(t+i-o,e),this.arc(t+i-o,e+o,o,270*n,360*n,!1),this.lineTo(t+i,e+s-o),this.arc(t+i-o,e+s-o,o,0,90*n,!1),this.lineTo(t+o,e+s),this.arc(t+o,e+s-o,o,90*n,180*n,!1),this.lineTo(t,e+o),this.arc(t+o,e+o,o,180*n,270*n,!1)},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,s){var o=.5522848,n=i/2*o,r=s/2*o,a=t+i,h=e+s,d=t+i/2,l=e+s/2;this.beginPath(),this.moveTo(t,l),this.bezierCurveTo(t,l-r,d-n,e,d,e),this.bezierCurveTo(d+n,e,a,l-r,a,l),this.bezierCurveTo(a,l+r,d+n,h,d,h),this.bezierCurveTo(d-n,h,t,l+r,t,l)},CanvasRenderingContext2D.prototype.database=function(t,e,i,s){var o=1/3,n=i,r=s*o,a=.5522848,h=n/2*a,d=r/2*a,l=t+n,c=e+r,p=t+n/2,u=e+r/2,f=e+(s-r/2),m=e+s;this.beginPath(),this.moveTo(l,u),this.bezierCurveTo(l,u+d,p+h,c,p,c),this.bezierCurveTo(p-h,c,t,u+d,t,u),this.bezierCurveTo(t,u-d,p-h,e,p,e),this.bezierCurveTo(p+h,e,l,u-d,l,u),this.lineTo(l,f),this.bezierCurveTo(l,f+d,p+h,m,p,m),this.bezierCurveTo(p-h,m,t,f+d,t,f),this.lineTo(t,u)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,s){var o=t-s*Math.cos(i),n=e-s*Math.sin(i),r=t-.9*s*Math.cos(i),a=e-.9*s*Math.sin(i),h=o+s/3*Math.cos(i+.5*Math.PI),d=n+s/3*Math.sin(i+.5*Math.PI),l=o+s/3*Math.cos(i-.5*Math.PI),c=n+s/3*Math.sin(i-.5*Math.PI);this.beginPath(),this.moveTo(t,e),this.lineTo(h,d),this.lineTo(r,a),this.lineTo(l,c),this.closePath()},CanvasRenderingContext2D.prototype.dashedLine=function(t,e,i,s,o){o||(o=[10,5]),0==p&&(p=.001);var n=o.length;this.moveTo(t,e);for(var r=i-t,a=s-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,c=!0;d>=.1;){var p=o[l++%n];p>d&&(p=d);var u=Math.sqrt(p*p/(1+h*h));0>r&&(u=-u),t+=u,e+=h*u,this[c?"lineTo":"moveTo"](t,e),d-=p,c=!c}})},function(t,e,i){var s=i(56),o=i(50),n=i(51),r=i(52),a=i(53),h=i(54),d=i(55);e._loadMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e])},e._clearMixin=function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=void 0)},e._loadPhysicsSystem=function(){this._loadMixin(s),this._loadSelectedForceSolver(),1==this.constants.configurePhysics&&this._loadPhysicsConfiguration()},e._loadClusterSystem=function(){this.clusterSession=0,this.hubThreshold=5,this._loadMixin(o)},e._loadSectorSystem=function(){this.sectors={},this.activeSector=["default"],this.sectors.active={},this.sectors.active["default"]={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.sectors.frozen={},this.sectors.support={nodes:{},edges:{},nodeIndices:[],formationScale:1,drawingNode:void 0},this.nodeIndices=this.sectors.active["default"].nodeIndices,this._loadMixin(n)},e._loadSelectionSystem=function(){this.selectionObj={nodes:{},edges:{}},this._loadMixin(r)},e._loadManipulationSystem=function(){this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.constants.dataManipulation.enabled?(void 0===this.manipulationDiv&&(this.manipulationDiv=document.createElement("div"),this.manipulationDiv.className="network-manipulationDiv",this.manipulationDiv.id="network-manipulationDiv",this.manipulationDiv.style.display=1==this.editMode?"block":"none",this.containerElement.insertBefore(this.manipulationDiv,this.frame)),void 0===this.editModeDiv&&(this.editModeDiv=document.createElement("div"),this.editModeDiv.className="network-manipulation-editMode",this.editModeDiv.id="network-manipulation-editMode",this.editModeDiv.style.display=1==this.editMode?"none":"block",this.containerElement.insertBefore(this.editModeDiv,this.frame)),void 0===this.closeDiv&&(this.closeDiv=document.createElement("div"),this.closeDiv.className="network-manipulation-closeDiv",this.closeDiv.id="network-manipulation-closeDiv",this.closeDiv.style.display=this.manipulationDiv.style.display,this.containerElement.insertBefore(this.closeDiv,this.frame)),this._loadMixin(a),this._createManipulatorBar()):void 0!==this.manipulationDiv&&(this._createManipulatorBar(),this.containerElement.removeChild(this.manipulationDiv),this.containerElement.removeChild(this.editModeDiv),this.containerElement.removeChild(this.closeDiv),this.manipulationDiv=void 0,this.editModeDiv=void 0,this.closeDiv=void 0,this._clearMixin(a))},e._loadNavigationControls=function(){this._loadMixin(h),this._cleanNavigation(),1==this.constants.navigation.enabled&&this._loadNavigationElements()},e._loadHierarchySystem=function(){this._loadMixin(d)}},function(t){function e(t){return t?i(t):void 0}function i(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){s.off(t,i),e.apply(this,arguments)}var s=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var s,o=0;os;++s)i[s].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e,i){var s;(function(t,o){(function(n){function r(t,e,i){switch(arguments.length){case 2:return null!=t?t:e;case 3:return null!=t?t:null!=e?e:i;default:throw new Error("Implement me")}}function a(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function h(t,e){function i(){ve.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}var s=!0;return f(function(){return s&&(i(),s=!1),e.apply(this,arguments)},e)}function d(t,e){return function(i){return v(t.call(this,i),e)}}function l(t,e){return function(i){return this.lang().ordinal(t.call(this,i),e)}}function c(){}function p(t){L(t),f(this,t)}function u(t){var e=S(t),i=e.year||0,s=e.quarter||0,o=e.month||0,n=e.week||0,r=e.day||0,a=e.hour||0,h=e.minute||0,d=e.second||0,l=e.millisecond||0;this._milliseconds=+l+1e3*d+6e4*h+36e5*a,this._days=+r+7*n,this._months=+o+3*s+12*i,this._data={},this._bubble()}function f(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return e.hasOwnProperty("toString")&&(t.toString=e.toString),e.hasOwnProperty("valueOf")&&(t.valueOf=e.valueOf),t}function m(t){var e,i={};for(e in t)t.hasOwnProperty(e)&&ke.hasOwnProperty(e)&&(i[e]=t[e]);return i}function g(t){return 0>t?Math.ceil(t):Math.floor(t)}function v(t,e,i){for(var s=""+Math.abs(t),o=t>=0;s.lengths;s++)(i&&t[s]!==e[s]||!i&&C(t[s])!==C(e[s]))&&r++;return r+n}function w(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=ri[t]||ai[e]||e}return t}function S(t){var e,i,s={};for(i in t)t.hasOwnProperty(i)&&(e=w(i),e&&(s[e]=t[i]));return s}function M(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}ve[t]=function(s,o){var r,a,h=ve.fn._lang[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=ve().utc().set(i,t);return h.call(ve.fn._lang,e,s||"")},null!=o)return a(o);for(r=0;e>r;r++)d.push(a(r));return d}}function C(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function E(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function D(t,e,i){return re(ve([t,11,31+e-i]),e,i).week}function T(t){return O(t)?366:365}function O(t){return t%4===0&&t%100!==0||t%400===0}function L(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Me]<0||t._a[Me]>11?Me:t._a[Ce]<1||t._a[Ce]>E(t._a[Se],t._a[Me])?Ce:t._a[Ee]<0||t._a[Ee]>23?Ee:t._a[De]<0||t._a[De]>59?De:t._a[Te]<0||t._a[Te]>59?Te:t._a[Oe]<0||t._a[Oe]>999?Oe:-1,t._pf._overflowDayOfYear&&(Se>e||e>Ce)&&(e=Ce),t._pf.overflow=e)}function k(t){return null==t._isValid&&(t._isValid=!isNaN(t._d.getTime())&&t._pf.overflow<0&&!t._pf.empty&&!t._pf.invalidMonth&&!t._pf.nullInput&&!t._pf.invalidFormat&&!t._pf.userInvalidated,t._strict&&(t._isValid=t._isValid&&0===t._pf.charsLeftOver&&0===t._pf.unusedTokens.length)),t._isValid}function N(t){return t?t.toLowerCase().replace("_","-"):t}function I(t,e){return e._isUTC?ve(t).zone(e._offset||0):ve(t).local()}function A(t,e){return e.abbr=t,Le[t]||(Le[t]=new c),Le[t].set(e),Le[t]}function z(t){delete Le[t]}function P(t){var e,s,o,n,r=0,a=function(t){if(!Le[t]&&Ne)try{i(57)("./"+t)}catch(e){}return Le[t]};if(!t)return ve.fn._lang;if(!b(t)){if(s=a(t))return s;t=[t]}for(;r0;){if(s=a(n.slice(0,e).join("-")))return s;if(o&&o.length>=e&&x(n,o,!0)>=e-1)break;e--}r++}return ve.fn._lang}function R(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function F(t){var e,i,s=t.match(Pe);for(e=0,i=s.length;i>e;e++)s[e]=pi[s[e]]?pi[s[e]]:R(s[e]);return function(o){var n="";for(e=0;i>e;e++)n+=s[e]instanceof Function?s[e].call(o,t):s[e];return n -}}function H(t,e){return t.isValid()?(e=Y(e,t.lang()),hi[e]||(hi[e]=F(e)),hi[e](t)):t.lang().invalidDate()}function Y(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(Re.lastIndex=0;s>=0&&Re.test(t);)t=t.replace(Re,i),Re.lastIndex=0,s-=1;return t}function B(t,e){var i,s=e._strict;switch(t){case"Q":return qe;case"DDDD":return Ke;case"YYYY":case"GGGG":case"gggg":return s?$e:Ye;case"Y":case"G":case"g":return Qe;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?Je:Be;case"S":if(s)return qe;case"SS":if(s)return Ze;case"SSS":if(s)return Ke;case"DDD":return He;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Ge;case"a":case"A":return P(e._l)._meridiemParse;case"X":return Ue;case"Z":case"ZZ":return je;case"T":return Ve;case"SSSS":return We;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?Ze:Fe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Fe;case"Do":return Xe;default:return i=new RegExp(K(Z(t.replace("\\","")),"i"))}}function W(t){t=t||"";var e=t.match(je)||[],i=e[e.length-1]||[],s=(i+"").match(oi)||["-",0,0],o=+(60*s[1])+C(s[2]);return"+"===s[0]?-o:o}function G(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[Me]=3*(C(e)-1));break;case"M":case"MM":null!=e&&(o[Me]=C(e)-1);break;case"MMM":case"MMMM":s=P(i._l).monthsParse(e),null!=s?o[Me]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Ce]=C(e));break;case"Do":null!=e&&(o[Ce]=C(parseInt(e,10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=C(e));break;case"YY":o[Se]=ve.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Se]=C(e);break;case"a":case"A":i._isPm=P(i._l).isPM(e);break;case"H":case"HH":case"h":case"hh":o[Ee]=C(e);break;case"m":case"mm":o[De]=C(e);break;case"s":case"ss":o[Te]=C(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Oe]=C(1e3*("0."+e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=W(e);break;case"dd":case"ddd":case"dddd":s=P(i._l).weekdaysParse(e),null!=s?(i._w=i._w||{},i._w.d=s):i._pf.invalidWeekday=e;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":t=t.substr(0,1);case"gggg":case"GGGG":case"GGGGG":t=t.substr(0,2),e&&(i._w=i._w||{},i._w[t]=C(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=ve.parseTwoDigitYear(e)}}function j(t){var e,i,s,o,n,a,h,d;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(n=1,a=4,i=r(e.GG,t._a[Se],re(ve(),1,4).year),s=r(e.W,1),o=r(e.E,1)):(d=P(t._l),n=d._week.dow,a=d._week.doy,i=r(e.gg,t._a[Se],re(ve(),n,a).year),s=r(e.w,1),null!=e.d?(o=e.d,n>o&&++s):o=null!=e.e?e.e+n:n),h=ae(i,s,o,a,n),t._a[Se]=h.year,t._dayOfYear=h.dayOfYear}function V(t){var e,i,s,o,n=[];if(!t._d){for(s=X(t),t._w&&null==t._a[Ce]&&null==t._a[Me]&&j(t),t._dayOfYear&&(o=r(t._a[Se],s[Se]),t._dayOfYear>T(o)&&(t._pf._overflowDayOfYear=!0),i=ie(o,0,t._dayOfYear),t._a[Me]=i.getUTCMonth(),t._a[Ce]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=n[e]=s[e];for(;7>e;e++)t._a[e]=n[e]=null==t._a[e]?2===e?1:0:t._a[e];t._d=(t._useUTC?ie:ee).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()+t._tzm)}}function U(t){var e;t._d||(e=S(t._i),t._a=[e.year,e.month,e.day,e.hour,e.minute,e.second,e.millisecond],V(t))}function X(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function q(t){if(t._f===ve.ISO_8601)return void J(t);t._a=[],t._pf.empty=!0;var e,i,s,o,n,r=P(t._l),a=""+t._i,h=a.length,d=0;for(s=Y(t._f,r).match(Pe)||[],e=0;e0&&t._pf.unusedInput.push(n),a=a.slice(a.indexOf(i)+i.length),d+=i.length),pi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),G(o,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(o);t._pf.charsLeftOver=h-d,a.length>0&&t._pf.unusedInput.push(a),t._isPm&&t._a[Ee]<12&&(t._a[Ee]+=12),t._isPm===!1&&12===t._a[Ee]&&(t._a[Ee]=0),V(t),L(t)}function Z(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function K(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function $(t){var e,i,s,o,n;if(0===t._f.length)return t._pf.invalidFormat=!0,void(t._d=new Date(0/0));for(o=0;on)&&(s=n,i=e));f(t,i||e)}function J(t){var e,i,s=t._i,o=ti.exec(s);if(o){for(t._pf.iso=!0,e=0,i=ii.length;i>e;e++)if(ii[e][1].exec(s)){t._f=ii[e][0]+(o[6]||" ");break}for(e=0,i=si.length;i>e;e++)if(si[e][1].exec(s)){t._f+=si[e][0];break}s.match(je)&&(t._f+="Z"),q(t)}else t._isValid=!1}function Q(t){J(t),t._isValid===!1&&(delete t._isValid,ve.createFromInputFallback(t))}function te(t){var e=t._i,i=Ie.exec(e);e===n?t._d=new Date:i?t._d=new Date(+i[1]):"string"==typeof e?Q(t):b(e)?(t._a=e.slice(0),V(t)):_(e)?t._d=new Date(+e):"object"==typeof e?U(t):"number"==typeof e?t._d=new Date(e):ve.createFromInputFallback(t)}function ee(t,e,i,s,o,n,r){var a=new Date(t,e,i,s,o,n,r);return 1970>t&&a.setFullYear(t),a}function ie(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function se(t,e){if("string"==typeof t)if(isNaN(t)){if(t=e.weekdaysParse(t),"number"!=typeof t)return null}else t=parseInt(t,10);return t}function oe(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function ne(t,e,i){var s=we(Math.abs(t)/1e3),o=we(s/60),n=we(o/60),r=we(n/24),a=we(r/365),h=s0,h[4]=i,oe.apply({},h)}function re(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=ve(t).add("d",n),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function ae(t,e,i,s,o){var n,r,a=ie(t,0,1).getUTCDay();return a=0===a?7:a,i=null!=i?i:o,n=o-a+(a>s?7:0)-(o>a?7:0),r=7*(e-1)+(i-o)+n+1,{year:r>0?t:t-1,dayOfYear:r>0?r:T(t-1)+r}}function he(t){var e=t._i,i=t._f;return null===e||i===n&&""===e?ve.invalid({nullInput:!0}):("string"==typeof e&&(t._i=e=P().preparse(e)),ve.isMoment(e)?(t=m(e),t._d=new Date(+e._d)):i?b(i)?$(t):q(t):te(t),new p(t))}function de(t,e){var i,s;if(1===e.length&&b(e[0])&&(e=e[0]),!e.length)return ve();for(i=e[0],s=1;s=0?"+":"-";return e+v(Math.abs(t),6)},gg:function(){return v(this.weekYear()%100,2)},gggg:function(){return v(this.weekYear(),4)},ggggg:function(){return v(this.weekYear(),5)},GG:function(){return v(this.isoWeekYear()%100,2)},GGGG:function(){return v(this.isoWeekYear(),4)},GGGGG:function(){return v(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return v(C(this.milliseconds()/10),2)},SSS:function(){return v(this.milliseconds(),3)},SSSS:function(){return v(this.milliseconds(),3)},Z:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+":"+v(C(t)%60,2)},ZZ:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+v(C(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},ui=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];li.length;)be=li.pop(),pi[be+"o"]=l(pi[be],be);for(;ci.length;)be=ci.pop(),pi[be+be]=d(pi[be],2);for(pi.DDDD=d(pi.DDD,3),f(c.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(t){return this._months[t.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(t){return this._monthsShort[t.month()]},monthsParse:function(t){var e,i,s;for(this._monthsParse||(this._monthsParse=[]),e=0;12>e;e++)if(this._monthsParse[e]||(i=ve.utc([2e3,e]),s="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[e]=new RegExp(s.replace(".",""),"i")),this._monthsParse[e].test(t))return e},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(t){return this._weekdays[t.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(t){return this._weekdaysShort[t.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(t){return this._weekdaysMin[t.day()]},weekdaysParse:function(t){var e,i,s;for(this._weekdaysParse||(this._weekdaysParse=[]),e=0;7>e;e++)if(this._weekdaysParse[e]||(i=ve([2e3,1]).day(e),s="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(s.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(t){var e=this._longDateFormat[t];return!e&&this._longDateFormat[t.toUpperCase()]&&(e=this._longDateFormat[t.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t]=e),e},isPM:function(t){return"p"===(t+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(t,e){var i=this._calendar[t];return"function"==typeof i?i.apply(e):i},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(t,e,i,s){var o=this._relativeTime[i];return"function"==typeof o?o(t,e,i,s):o.replace(/%d/i,t)},pastFuture:function(t,e){var i=this._relativeTime[t>0?"future":"past"];return"function"==typeof i?i(e):i.replace(/%s/i,e)},ordinal:function(t){return this._ordinal.replace("%d",t)},_ordinal:"%d",preparse:function(t){return t},postformat:function(t){return t},week:function(t){return re(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),ve=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._i=t,o._f=e,o._l=i,o._strict=s,o._isUTC=!1,o._pf=a(),he(o)},ve.suppressDeprecationWarnings=!1,ve.createFromInputFallback=h("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i)}),ve.min=function(){var t=[].slice.call(arguments,0);return de("isBefore",t)},ve.max=function(){var t=[].slice.call(arguments,0);return de("isAfter",t)},ve.utc=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._useUTC=!0,o._isUTC=!0,o._l=i,o._i=t,o._f=e,o._strict=s,o._pf=a(),he(o).utc()},ve.unix=function(t){return ve(1e3*t)},ve.duration=function(t,e){var i,s,o,n=t,r=null;return ve.isDuration(t)?n={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(n={},e?n[e]=t:n.milliseconds=t):(r=Ae.exec(t))?(i="-"===r[1]?-1:1,n={y:0,d:C(r[Ce])*i,h:C(r[Ee])*i,m:C(r[De])*i,s:C(r[Te])*i,ms:C(r[Oe])*i}):(r=ze.exec(t))&&(i="-"===r[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},n={y:o(r[2]),M:o(r[3]),d:o(r[4]),h:o(r[5]),m:o(r[6]),s:o(r[7]),w:o(r[8])}),s=new u(n),ve.isDuration(t)&&t.hasOwnProperty("_lang")&&(s._lang=t._lang),s},ve.version=_e,ve.defaultFormat=ei,ve.ISO_8601=function(){},ve.momentProperties=ke,ve.updateOffset=function(){},ve.relativeTimeThreshold=function(t,e){return di[t]===n?!1:(di[t]=e,!0)},ve.lang=function(t,e){var i;return t?(e?A(N(t),e):null===e?(z(t),t="en"):Le[t]||P(t),i=ve.duration.fn._lang=ve.fn._lang=P(t),i._abbr):ve.fn._lang._abbr},ve.langData=function(t){return t&&t._lang&&t._lang._abbr&&(t=t._lang._abbr),P(t)},ve.isMoment=function(t){return t instanceof p||null!=t&&t.hasOwnProperty("_isAMomentObject")},ve.isDuration=function(t){return t instanceof u},be=ui.length-1;be>=0;--be)M(ui[be]);ve.normalizeUnits=function(t){return w(t)},ve.invalid=function(t){var e=ve.utc(0/0);return null!=t?f(e._pf,t):e._pf.userInvalidated=!0,e},ve.parseZone=function(){return ve.apply(null,arguments).parseZone()},ve.parseTwoDigitYear=function(t){return C(t)+(C(t)>68?1900:2e3)},f(ve.fn=p.prototype,{clone:function(){return ve(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var t=ve(this).utc();return 00:!1},parsingFlags:function(){return f({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(t){var e=H(this,t||ve.defaultFormat);return this.lang().postformat(e)},add:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,1),this},subtract:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,-1),this},diff:function(t,e,i){var s,o,n=I(t,this),r=6e4*(this.zone()-n.zone());return e=w(e),"year"===e||"month"===e?(s=432e5*(this.daysInMonth()+n.daysInMonth()),o=12*(this.year()-n.year())+(this.month()-n.month()),o+=(this-ve(this).startOf("month")-(n-ve(n).startOf("month")))/s,o-=6e4*(this.zone()-ve(this).startOf("month").zone()-(n.zone()-ve(n).startOf("month").zone()))/s,"year"===e&&(o/=12)):(s=this-n,o="second"===e?s/1e3:"minute"===e?s/6e4:"hour"===e?s/36e5:"day"===e?(s-r)/864e5:"week"===e?(s-r)/6048e5:s),i?o:g(o)},from:function(t,e){return ve.duration(this.diff(t)).lang(this.lang()._abbr).humanize(!e)},fromNow:function(t){return this.from(ve(),t)},calendar:function(t){var e=t||ve(),i=I(e,this).startOf("day"),s=this.diff(i,"days",!0),o=-6>s?"sameElse":-1>s?"lastWeek":0>s?"lastDay":1>s?"sameDay":2>s?"nextDay":7>s?"nextWeek":"sameElse";return this.format(this.lang().calendar(o,this))},isLeapYear:function(){return O(this.year())},isDST:function(){return this.zone()+ve(t).startOf(e)},isBefore:function(t,e){return e="undefined"!=typeof e?e:"millisecond",+this.clone().startOf(e)<+ve(t).startOf(e)},isSame:function(t,e){return e=e||"ms",+this.clone().startOf(e)===+I(t,this).startOf(e)},min:h("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),this>t?this:t}),max:h("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),t>this?this:t}),zone:function(t,e){var i=this._offset||0;return null==t?this._isUTC?i:this._d.getTimezoneOffset():("string"==typeof t&&(t=W(t)),Math.abs(t)<16&&(t=60*t),this._offset=t,this._isUTC=!0,i!==t&&(!e||this._changeInProgress?y(this,ve.duration(i-t,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,ve.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(t){return t=t?ve(t).zone():0,(this.zone()-t)%60===0},daysInMonth:function(){return E(this.year(),this.month())},dayOfYear:function(t){var e=we((ve(this).startOf("day")-ve(this).startOf("year"))/864e5)+1;return null==t?e:this.add("d",t-e)},quarter:function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},weekYear:function(t){var e=re(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==t?e:this.add("y",t-e)},isoWeekYear:function(t){var e=re(this,1,4).year;return null==t?e:this.add("y",t-e)},week:function(t){var e=this.lang().week(this);return null==t?e:this.add("d",7*(t-e))},isoWeek:function(t){var e=re(this,1,4).week;return null==t?e:this.add("d",7*(t-e))},weekday:function(t){var e=(this.day()+7-this.lang()._week.dow)%7;return null==t?e:this.add("d",t-e)},isoWeekday:function(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)},isoWeeksInYear:function(){return D(this.year(),1,4)},weeksInYear:function(){var t=this._lang._week;return D(this.year(),t.dow,t.doy)},get:function(t){return t=w(t),this[t]()},set:function(t,e){return t=w(t),"function"==typeof this[t]&&this[t](e),this},lang:function(t){return t===n?this._lang:(this._lang=P(t),this)}}),ve.fn.millisecond=ve.fn.milliseconds=ue("Milliseconds",!1),ve.fn.second=ve.fn.seconds=ue("Seconds",!1),ve.fn.minute=ve.fn.minutes=ue("Minutes",!1),ve.fn.hour=ve.fn.hours=ue("Hours",!0),ve.fn.date=ue("Date",!0),ve.fn.dates=h("dates accessor is deprecated. Use date instead.",ue("Date",!0)),ve.fn.year=ue("FullYear",!0),ve.fn.years=h("years accessor is deprecated. Use year instead.",ue("FullYear",!0)),ve.fn.days=ve.fn.day,ve.fn.months=ve.fn.month,ve.fn.weeks=ve.fn.week,ve.fn.isoWeeks=ve.fn.isoWeek,ve.fn.quarters=ve.fn.quarter,ve.fn.toJSON=ve.fn.toISOString,f(ve.duration.fn=u.prototype,{_bubble:function(){var t,e,i,s,o=this._milliseconds,n=this._days,r=this._months,a=this._data;a.milliseconds=o%1e3,t=g(o/1e3),a.seconds=t%60,e=g(t/60),a.minutes=e%60,i=g(e/60),a.hours=i%24,n+=g(i/24),a.days=n%30,r+=g(n/30),a.months=r%12,s=g(r/12),a.years=s},weeks:function(){return g(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12)},humanize:function(t){var e=+this,i=ne(e,!t,this.lang());return t&&(i=this.lang().pastFuture(e,i)),this.lang().postformat(i)},add:function(t,e){var i=ve.duration(t,e);return this._milliseconds+=i._milliseconds,this._days+=i._days,this._months+=i._months,this._bubble(),this},subtract:function(t,e){var i=ve.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=w(t),this[t.toLowerCase()+"s"]()},as:function(t){return t=w(t),this["as"+t.charAt(0).toUpperCase()+t.slice(1)+"s"]()},lang:ve.fn.lang,toIsoString:function(){var t=Math.abs(this.years()),e=Math.abs(this.months()),i=Math.abs(this.days()),s=Math.abs(this.hours()),o=Math.abs(this.minutes()),n=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(t?t+"Y":"")+(e?e+"M":"")+(i?i+"D":"")+(s||o||n?"T":"")+(s?s+"H":"")+(o?o+"M":"")+(n?n+"S":""):"P0D"}});for(be in ni)ni.hasOwnProperty(be)&&(me(be,ni[be]),fe(be.toLowerCase()));me("Weeks",6048e5),ve.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},ve.lang("en",{ordinal:function(t){var e=t%10,i=1===C(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),Ne?o.exports=ve:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(xe.moment=ye),ve}.call(e,i,e,o),!(s!==n&&(o.exports=s)),ge(!0))}).call(this)}).call(e,function(){return this}(),i(61)(t))},function(t,e,i){var s;!function(o,n){"use strict";function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){M.register(t)}),w.onTouch(a.DOCUMENT,v,M.detect),w.onTouch(a.DOCUMENT,y,M.detect),a.READY=!0)}var a=function C(t,e){return new C.Instance(t,e||{})};a.VERSION="1.1.3",a.defaults={behavior:{userSelect:"none",touchAction:"pan-y",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},a.DOCUMENT=document,a.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,a.HAS_TOUCHEVENTS="ontouchstart"in o,a.IS_MOBILE=/mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent),a.NO_MOUSEEVENTS=a.HAS_TOUCHEVENTS&&a.IS_MOBILE||a.HAS_POINTEREVENTS,a.CALCULATE_INTERVAL=25;var h={},d=a.DIRECTION_DOWN="down",l=a.DIRECTION_LEFT="left",c=a.DIRECTION_UP="up",p=a.DIRECTION_RIGHT="right",u=a.POINTER_MOUSE="mouse",f=a.POINTER_TOUCH="touch",m=a.POINTER_PEN="pen",g=a.EVENT_START="start",v=a.EVENT_MOVE="move",y=a.EVENT_END="end",b=a.EVENT_RELEASE="release",_=a.EVENT_TOUCH="touch";a.READY=!1,a.plugins=a.plugins||{},a.gestures=a.gestures||{};var x=a.utils={extend:function(t,e,i){for(var s in e)!e.hasOwnProperty(s)||t[s]!==n&&i||(t[s]=e[s]);return t},on:function(t,e,i){t.addEventListener(e,i,!1)},off:function(t,e,i){t.removeEventListener(e,i,!1)},each:function(t,e,i){var s,o;if("forEach"in t)t.forEach(e,i);else if(t.length!==n){for(s=0,o=t.length;o>s;s++)if(e.call(i,t[s],s,t)===!1)return}else for(s in t)if(t.hasOwnProperty(s)&&e.call(i,t[s],s,t)===!1)return},inStr:function(t,e){return t.indexOf(e)>-1},inArray:function(t,e){if(t.indexOf){var i=t.indexOf(e);return-1===i?!1:i}for(var s=0,o=t.length;o>s;s++)if(t[s]===e)return s;return!1},toArray:function(t){return Array.prototype.slice.call(t,0)},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){var e=[],i=[],s=[],o=[],n=Math.min,r=Math.max;return 1===t.length?{pageX:t[0].pageX,pageY:t[0].pageY,clientX:t[0].clientX,clientY:t[0].clientY}:(x.each(t,function(t){e.push(t.pageX),i.push(t.pageY),s.push(t.clientX),o.push(t.clientY)}),{pageX:(n.apply(Math,e)+r.apply(Math,e))/2,pageY:(n.apply(Math,i)+r.apply(Math,i))/2,clientX:(n.apply(Math,s)+r.apply(Math,s))/2,clientY:(n.apply(Math,o)+r.apply(Math,o))/2})},getVelocity:function(t,e,i){return{x:Math.abs(e/t)||0,y:Math.abs(i/t)||0}},getAngle:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return 180*Math.atan2(s,i)/Math.PI},getDirection:function(t,e){var i=Math.abs(t.clientX-e.clientX),s=Math.abs(t.clientY-e.clientY);return i>=s?t.clientX-e.clientX>0?l:p:t.clientY-e.clientY>0?c:d},getDistance:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return Math.sqrt(i*i+s*s)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==c||t==d},setPrefixedCss:function(t,e,i,s){var o=["","Webkit","Moz","O","ms"];e=x.toCamelCase(e);for(var n=0;n0&&this.started&&(r=v),this.started=!0;var d=this.collectEventData(i,r,o,t);return e!=y&&s.call(M,d),a&&(d.changedLength=h,d.eventType=a,s.call(M,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(M,d),this.started=!1),r},determineEventTypes:function(){var t;return t=a.HAS_POINTEREVENTS?o.PointerEvent?["pointerdown","pointermove","pointerup pointercancel lostpointercapture"]:["MSPointerDown","MSPointerMove","MSPointerUp MSPointerCancel MSLostPointerCapture"]:a.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],h[g]=t[0],h[v]=t[1],h[y]=t[2],h},getTouchList:function(t,e){if(a.HAS_POINTEREVENTS)return S.getTouchList();if(t.touches){if(e==v)return t.touches;var i=[],s=[].concat(x.toArray(t.touches),x.toArray(t.changedTouches)),o=[];return x.each(s,function(t){x.inArray(i,t.identifier)===!1&&o.push(t),i.push(t.identifier)}),o}return t.identifier=1,[t]},collectEventData:function(t,e,i,s){var o=f;return x.inStr(s.type,"mouse")||S.matchType(u,s)?o=u:S.matchType(m,s)&&(o=m),{center:x.getCenter(i),timeStamp:Date.now(),target:s.target,touches:i,eventType:e,pointerType:o,srcEvent:s,preventDefault:function(){var t=this.srcEvent;t.preventManipulation&&t.preventManipulation(),t.preventDefault&&t.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return M.stopDetect()}}}},S=a.PointerEvent={pointers:{},getTouchList:function(){var t=[];return x.each(this.pointers,function(e){t.push(e)}),t},updatePointer:function(t,e){t==y||t!=y&&1!==e.buttons?delete this.pointers[e.pointerId]:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e)},matchType:function(t,e){if(!e.pointerType)return!1;var i=e.pointerType,s={};return s[u]=i===(e.MSPOINTER_TYPE_MOUSE||u),s[f]=i===(e.MSPOINTER_TYPE_TOUCH||f),s[m]=i===(e.MSPOINTER_TYPE_PEN||m),s[t]},reset:function(){this.pointers={}}},M=a.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:x.extend({},e),lastEvent:!1,lastCalcEvent:!1,futureCalcEvent:!1,lastCalcData:{},name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);var e=this.current.inst,i=e.options;return x.each(this.gestures,function(s){!this.stopped&&e.enabled&&i[s.name]&&s.handler.call(s,t,e)},this),this.current&&(this.current.lastEvent=t),t.eventType==y&&this.stopDetect(),t}},stopDetect:function(){this.previous=x.extend({},this.current),this.current=null,this.stopped=!0},getCalculatedData:function(t,e,i,s,o){var n=this.current,r=!1,h=n.lastCalcEvent,d=n.lastCalcData;h&&t.timeStamp-h.timeStamp>a.CALCULATE_INTERVAL&&(e=h.center,i=t.timeStamp-h.timeStamp,s=t.center.clientX-h.center.clientX,o=t.center.clientY-h.center.clientY,r=!0),(t.eventType==_||t.eventType==b)&&(n.futureCalcEvent=t),(!n.lastCalcEvent||r)&&(d.velocity=x.getVelocity(i,s,o),d.angle=x.getAngle(e,t.center),d.direction=x.getDirection(e,t.center),n.lastCalcEvent=n.futureCalcEvent||t,n.futureCalcEvent=t),t.velocityX=d.velocity.x,t.velocityY=d.velocity.y,t.interimAngle=d.angle,t.interimDirection=d.direction -},extendEventData:function(t){var e=this.current,i=e.startEvent,s=e.lastEvent||i;(t.eventType==_||t.eventType==b)&&(i.touches=[],x.each(t.touches,function(t){i.touches.push({clientX:t.clientX,clientY:t.clientY})}));var o=t.timeStamp-i.timeStamp,n=t.center.clientX-i.center.clientX,r=t.center.clientY-i.center.clientY;return this.getCalculatedData(t,s.center,o,n,r),x.extend(t,{startEvent:i,deltaTime:o,deltaX:n,deltaY:r,distance:x.getDistance(i.center,t.center),angle:x.getAngle(i.center,t.center),direction:x.getDirection(i.center,t.center),scale:x.getScale(i.touches,t.touches),rotation:x.getRotation(i.touches,t.touches)}),t},register:function(t){var e=t.defaults||{};return e[t.name]===n&&(e[t.name]=!0),x.extend(a.defaults,e,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.indexe.index?1:0}),this.gestures}};a.Instance=function(t,e){var i=this;r(),this.element=t,this.enabled=!0,x.each(e,function(t,i){delete e[i],e[x.toCamelCase(i)]=t}),this.options=x.extend(x.extend({},a.defaults),e||{}),this.options.behavior&&x.toggleBehavior(this.element,this.options.behavior,!0),this.eventStartHandler=w.onTouch(t,g,function(t){i.enabled&&t.eventType==g?M.startDetect(i,t):t.eventType==_&&M.detect(t)}),this.eventHandlers=[]},a.Instance.prototype={on:function(t,e){var i=this;return w.on(i.element,t,e,function(t){i.eventHandlers.push({gesture:t,handler:e})}),i},off:function(t,e){var i=this;return w.off(i.element,t,e,function(t){var s=x.inArray({gesture:t,handler:e});s!==!1&&i.eventHandlers.splice(s,1)}),i},trigger:function(t,e){e||(e={});var i=a.DOCUMENT.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e;var s=this.element;return x.hasParent(e.target,s)&&(s=e.target),s.dispatchEvent(i),this},enable:function(t){return this.enabled=t,this},dispose:function(){var t,e;for(x.toggleBehavior(this.element,this.options.behavior,!1),t=-1;e=this.eventHandlers[++t];)x.off(this.element,e.gesture,e.handler);return this.eventHandlers=[],w.off(this.element,h[g],this.eventStartHandler),null}},function(t){function e(e,s){var o=M.current;if(!(s.options.dragMaxTouches>0&&e.touches.length>s.options.dragMaxTouches))switch(e.eventType){case g:i=!1;break;case v:if(e.distance0)){var r=Math.abs(s.options.dragMinDistance/e.distance);n.pageX+=e.deltaX*r,n.pageY+=e.deltaY*r,n.clientX+=e.deltaX*r,n.clientY+=e.deltaY*r,e=M.extendEventData(e)}(o.lastEvent.dragLockToAxis||s.options.dragLockToAxis&&s.options.dragLockMinDistance<=e.distance)&&(e.dragLockToAxis=!0);var a=o.lastEvent.direction;e.dragLockToAxis&&a!==e.direction&&(e.direction=x.isVertical(a)?e.deltaY<0?c:d:e.deltaX<0?l:p),i||(s.trigger(t+"start",e),i=!0),s.trigger(t,e),s.trigger(t+e.direction,e);var h=x.isVertical(e.direction);(s.options.dragBlockVertical&&h||s.options.dragBlockHorizontal&&!h)&&e.preventDefault();break;case b:i&&e.changedLength<=s.options.dragMaxTouches&&(s.trigger(t+"end",e),i=!1);break;case y:i=!1}}var i=!1;a.gestures.Drag={name:t,index:50,handler:e,defaults:{dragMinDistance:10,dragDistanceCorrection:!0,dragMaxTouches:1,dragBlockHorizontal:!1,dragBlockVertical:!1,dragLockToAxis:!1,dragLockMinDistance:25}}}("drag"),a.gestures.Gesture={name:"gesture",index:1337,handler:function(t,e){e.trigger(this.name,t)}},function(t){function e(e,s){var o=s.options,n=M.current;switch(e.eventType){case g:clearTimeout(i),n.name=t,i=setTimeout(function(){n&&n.name==t&&s.trigger(t,e)},o.holdTimeout);break;case v:e.distance>o.holdThreshold&&clearTimeout(i);break;case b:clearTimeout(i)}}var i;a.gestures.Hold={name:t,index:10,defaults:{holdTimeout:500,holdThreshold:2},handler:e}}("hold"),a.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==b&&e.trigger(this.name,t)}},a.gestures.Swipe={name:"swipe",index:40,defaults:{swipeMinTouches:1,swipeMaxTouches:1,swipeVelocityX:.6,swipeVelocityY:.6},handler:function(t,e){if(t.eventType==b){var i=t.touches.length,s=e.options;if(is.swipeMaxTouches)return;(t.velocityX>s.swipeVelocityX||t.velocityY>s.swipeVelocityY)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},function(t){function e(e,s){var o,n,r=s.options,a=M.current,h=M.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t){function e(t,e,i){return t.addEventListener?t.addEventListener(e,i,!1):void t.attachEvent("on"+e,i)}function i(t){return"keypress"==t.type?String.fromCharCode(t.which):_[t.which]?_[t.which]:x[t.which]?x[t.which]:String.fromCharCode(t.which).toLowerCase()}function s(t){var e=t.target||t.srcElement,i=e.tagName;return(" "+e.className+" ").indexOf(" mousetrap ")>-1?!1:"INPUT"==i||"SELECT"==i||"TEXTAREA"==i||e.contentEditable&&"true"==e.contentEditable}function o(t,e){return t.sort().join(",")===e.sort().join(",")}function n(t){t=t||{};var e,i=!1;for(e in E)t[e]?i=!0:E[e]=0;i||(T=!1)}function r(t,e,i,s,n){var r,a,h=[];if(!M[t])return[];for("keyup"==i&&c(t)&&(e=[t]),r=0;r95&&112>t||_.hasOwnProperty(t)&&(y[_[t]]=t)}return y}function f(t,e,i){return i||(i=u()[t]?"keydown":"keypress"),"keypress"==i&&e.length&&(i="keydown"),i}function m(t,e,s,o){E[t]=0,o||(o=f(e[0],[]));var r,a=function(){T=o,++E[t],p()},d=function(t){h(s,t),"keyup"!==o&&(D=i(t)),setTimeout(n,10)};for(r=0;r1)return m(t,d,e,i);for(h="+"===t?["+"]:t.split("+"),n=0;n":".","?":"/","|":"\\"},S={option:"alt",command:"meta","return":"enter",escape:"esc"},M={},C={},E={},D=!1,T=!1,O=1;20>O;++O)_[111+O]="f"+O;for(O=0;9>=O;++O)_[O+96]=O;e(document,"keypress",l),e(document,"keydown",l),e(document,"keyup",l);var L={bind:function(t,e,i){return v(t instanceof Array?t:[t],e,i),C[t+":"+i]=e,this},unbind:function(t,e){return C[t+":"+e]&&(delete C[t+":"+e],this.bind(t,function(){},e)),this},trigger:function(t,e){return C[t+":"+e](),this},reset:function(){return M={},C={},this}};t.exports=L},function(t,e){e.startWithClustering=function(){this.clusterToFit(this.constants.clustering.initialMaxNodes,!0),this.updateLabels(),this.stabilize&&this._stabilize(),this.start()},e.clusterToFit=function(t,e){for(var i=this.nodeIndices.length,s=50,o=0;i>t&&s>o;)o%3==0?(this.forceAggregateHubs(!0),this.normalizeClusterLevels()):this.increaseClusterLevel(),i=this.nodeIndices.length,o+=1;o>0&&1==e&&this.repositionNodes(),this._updateCalculationNodes()},e.openCluster=function(t){var e=this.moving;if(t.clusterSize>this.constants.clustering.sectorThreshold&&this._nodeInActiveArea(t)&&("default"!=this._sector()||1!=this.nodeIndices.length)){this._addSector(t);for(var i=0;this.nodeIndices.lengthi;)this.decreaseClusterLevel(),i+=1}else this._expandClusterNode(t,!1,!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this._updateCalculationNodes(),this.updateLabels();this.moving!=e&&this.start()},e.updateClustersDefault=function(){1==this.constants.clustering.enabled&&this.updateClusters(0,!1,!1)},e.increaseClusterLevel=function(){this.updateClusters(-1,!1,!0)},e.decreaseClusterLevel=function(){this.updateClusters(1,!1,!0)},e.updateClusters=function(t,e,i,s){var o=this.moving,n=this.nodeIndices.length;this.previousScale>this.scale&&0==t&&this._collapseSector(),this.previousScale>this.scale||-1==t?this._formClusters(i):(this.previousScalethis.scale||-1==t)&&(this._aggregateHubs(i),this._updateNodeIndexList()),(this.previousScale>this.scale||-1==t)&&(this.handleChains(),this._updateNodeIndexList()),this.previousScale=this.scale,this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.lengththis.constants.clustering.chainThreshold&&this._reduceAmountOfChains(1-this.constants.clustering.chainThreshold/t)},e._aggregateHubs=function(t){this._getHubSize(),this._formClustersByHub(t,!1)},e.forceAggregateHubs=function(t){var e=this.moving,i=this.nodeIndices.length;this._aggregateHubs(!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.length!=i&&(this.clusterSession+=1),(0==t||void 0===t)&&this.moving!=e&&this.start()},e._openClustersBySize=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];1==e.inView()&&(e.width*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientWidth||e.height*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientHeight)&&this.openCluster(e)}},e._openClusters=function(t,e){for(var i=0;i1&&(t.clusterSizei)){var r=n.from,a=n.to;n.to.options.mass>n.from.options.mass&&(r=n.to,a=n.from),1==a.dynamicEdgesLength?this._addToCluster(r,a,!1):1==r.dynamicEdgesLength&&this._addToCluster(a,r,!1)}}},e._forceClustersByZoom=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];if(1==e.dynamicEdgesLength&&0!=e.dynamicEdges.length){var i=e.dynamicEdges[0],s=i.toId==e.id?this.nodes[i.fromId]:this.nodes[i.toId];e.id!=s.id&&(s.options.mass>e.options.mass?this._addToCluster(s,e,!0):this._addToCluster(e,s,!0))}}},e._clusterToSmallestNeighbour=function(t){for(var e=-1,i=null,s=0;so.clusterSessions.length&&(e=o.clusterSessions.length,i=o)}null!=o&&void 0!==this.nodes[o.id]&&this._addToCluster(o,t,!0)},e._formClustersByHub=function(t,e){for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&this._formClusterFromHub(this.nodes[i],t,e)},e._formClusterFromHub=function(t,e,i,s){if(void 0===s&&(s=0),t.dynamicEdgesLength>=this.hubThreshold&&0==i||t.dynamicEdgesLength==this.hubThreshold&&1==i){for(var o,n,r,a=this.constants.clustering.clusterEdgeThreshold/this.scale,h=!1,d=[],l=t.dynamicEdges.length,c=0;l>c;c++)d.push(t.dynamicEdges[c].id);if(0==e)for(h=!1,c=0;l>c;c++){var p=this.edges[d[c]];if(void 0!==p&&p.connected&&p.toId!=p.fromId&&(o=p.to.x-p.from.x,n=p.to.y-p.from.y,r=Math.sqrt(o*o+n*n),a>r)){h=!0;break}}if(!e&&h||e)for(c=0;l>c;c++)if(p=this.edges[d[c]],void 0!==p){var u=this.nodes[p.fromId==t.id?p.toId:p.fromId];u.dynamicEdges.length<=this.hubThreshold+s&&u.id!=t.id&&this._addToCluster(t,u,e)}}},e._addToCluster=function(t,e,i){t.containedNodes[e.id]=e;for(var s=0;s1)for(var s=0;s1&&(e.label="[".concat(String(e.clusterSize),"]"))}for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(e=this.nodes[t],1==e.clusterSize&&(e.label=void 0!==e.originalLabel?e.originalLabel:String(e.id)))},e.normalizeClusterLevels=function(){var t,e=0,i=1e9,s=0;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(s=this.nodes[t].clusterSessions.length,s>e&&(e=s),i>s&&(i=s));if(e-i>this.constants.clustering.clusterLevelDifference){var o=this.nodeIndices.length,n=e-this.constants.clustering.clusterLevelDifference;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodes[t].clusterSessions.lengths&&(s=n.dynamicEdgesLength),t+=n.dynamicEdgesLength,e+=Math.pow(n.dynamicEdgesLength,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r);this.hubThreshold=Math.floor(t+2*a),this.hubThreshold>s&&(this.hubThreshold=s)},e._reduceAmountOfChains=function(t){this.hubThreshold=2;var e=Math.floor(this.nodeIndices.length*t);for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&e>0&&(this._formClusterFromHub(this.nodes[i],!0,!0,1),e-=1)},e._getChainFraction=function(){var t=0,e=0;for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&(2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&(t+=1),e+=1);return t/e}},function(t,e,i){var s=i(1);e._putDataInSector=function(){this.sectors.active[this._sector()].nodes=this.nodes,this.sectors.active[this._sector()].edges=this.edges,this.sectors.active[this._sector()].nodeIndices=this.nodeIndices},e._switchToSector=function(t,e){void 0===e||"active"==e?this._switchToActiveSector(t):this._switchToFrozenSector(t)},e._switchToActiveSector=function(t){this.nodeIndices=this.sectors.active[t].nodeIndices,this.nodes=this.sectors.active[t].nodes,this.edges=this.sectors.active[t].edges},e._switchToSupportSector=function(){this.nodeIndices=this.sectors.support.nodeIndices,this.nodes=this.sectors.support.nodes,this.edges=this.sectors.support.edges},e._switchToFrozenSector=function(t){this.nodeIndices=this.sectors.frozen[t].nodeIndices,this.nodes=this.sectors.frozen[t].nodes,this.edges=this.sectors.frozen[t].edges},e._loadLatestSector=function(){this._switchToSector(this._sector())},e._sector=function(){return this.activeSector[this.activeSector.length-1]},e._previousSector=function(){if(this.activeSector.length>1)return this.activeSector[this.activeSector.length-2];throw new TypeError("there are not enough sectors in the this.activeSector array.")},e._setActiveSector=function(t){this.activeSector.push(t)},e._forgetLastSector=function(){this.activeSector.pop()},e._createNewSector=function(t){this.sectors.active[t]={nodes:{},edges:{},nodeIndices:[],formationScale:this.scale,drawingNode:void 0},this.sectors.active[t].drawingNode=new Node({id:t,color:{background:"#eaefef",border:"495c5e"}},{},{},this.constants),this.sectors.active[t].drawingNode.clusterSize=2},e._deleteActiveSector=function(t){delete this.sectors.active[t]},e._deleteFrozenSector=function(t){delete this.sectors.frozen[t]},e._freezeSector=function(t){this.sectors.frozen[t]=this.sectors.active[t],this._deleteActiveSector(t)},e._activateSector=function(t){this.sectors.active[t]=this.sectors.frozen[t],this._deleteFrozenSector(t)},e._mergeThisWithFrozen=function(t){for(var e in this.nodes)this.nodes.hasOwnProperty(e)&&(this.sectors.frozen[t].nodes[e]=this.nodes[e]);for(var i in this.edges)this.edges.hasOwnProperty(i)&&(this.sectors.frozen[t].edges[i]=this.edges[i]);for(var s=0;s1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInSupportSector=function(t,e){if(void 0===e)this._switchToSupportSector(),this[t]();else{this._switchToSupportSector();var i=Array.prototype.splice.call(arguments,1);i.length>1?this[t](i[0],i[1]):this[t](e)}this._loadLatestSector()},e._doInAllFrozenSectors=function(t,e){if(void 0===e)for(var i in this.sectors.frozen)this.sectors.frozen.hasOwnProperty(i)&&(this._switchToFrozenSector(i),this[t]());else for(var i in this.sectors.frozen)if(this.sectors.frozen.hasOwnProperty(i)){this._switchToFrozenSector(i);var s=Array.prototype.splice.call(arguments,1);s.length>1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInAllSectors=function(t,e){var i=Array.prototype.splice.call(arguments,1);void 0===e?(this._doInAllActiveSectors(t),this._doInAllFrozenSectors(t)):i.length>1?(this._doInAllActiveSectors(t,i[0],i[1]),this._doInAllFrozenSectors(t,i[0],i[1])):(this._doInAllActiveSectors(t,e),this._doInAllFrozenSectors(t,e))},e._clearNodeIndexList=function(){var t=this._sector();this.sectors.active[t].nodeIndices=[],this.nodeIndices=this.sectors.active[t].nodeIndices},e._drawSectorNodes=function(t,e){var i,s=1e9,o=-1e9,n=1e9,r=-1e9;for(var a in this.sectors[e])if(this.sectors[e].hasOwnProperty(a)&&void 0!==this.sectors[e][a].drawingNode){this._switchToSector(a,e),s=1e9,o=-1e9,n=1e9,r=-1e9;for(var h in this.nodes)this.nodes.hasOwnProperty(h)&&(i=this.nodes[h],i.resize(t),n>i.x-.5*i.width&&(n=i.x-.5*i.width),ri.y-.5*i.height&&(s=i.y-.5*i.height),o0?this.nodes[i[i.length-1]]:null},e._getEdgesOverlappingWith=function(t,e){var i=this.edges;for(var s in i)i.hasOwnProperty(s)&&i[s].isOverlappingWith(t)&&e.push(s)},e._getAllEdgesOverlappingWith=function(t){var e=[];return this._doInAllActiveSectors("_getEdgesOverlappingWith",t,e),e},e._getEdgeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.edges[i[i.length-1]]:null},e._addToSelection=function(t){t instanceof s?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},e._addToHover=function(t){t instanceof s?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},e._removeFromSelection=function(t){t instanceof s?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]},e._unselectAll=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].unselect();for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&this.selectionObj.edges[i].unselect();this.selectionObj={nodes:{},edges:{}},0==t&&this.emit("select",this.getSelection())},e._unselectClusters=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].clusterSize>1&&(this.selectionObj.nodes[e].unselect(),this._removeFromSelection(this.selectionObj.nodes[e]));0==t&&this.emit("select",this.getSelection())},e._getSelectedNodeCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedNode=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return null},e._getSelectedEdge=function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return null},e._getSelectedEdgeCount=function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedObjectCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&(t+=1);return t},e._selectionIsEmpty=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return!1;for(var e in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(e))return!1;return!0},e._clusterInSelection=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1},e._selectConnectedEdges=function(t){for(var e=0;ee;e++){s=t[e];var o=this.nodes[s]; -if(!o)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(o,!0,!0)}console.log("setSelection is deprecated. Please use selectNodes instead."),this.redraw()},e.selectNodes=function(t,e){var i,s,o;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),i=0,s=t.length;s>i;i++){o=t[i];var n=this.nodes[o];if(!n)throw new RangeError('Node with id "'+o+'" not found');this._selectObject(n,!0,!0,e)}this.redraw()},e.selectEdges=function(t){var e,i,s;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),e=0,i=t.length;i>e;e++){s=t[e];var o=this.edges[s];if(!o)throw new RangeError('Edge with id "'+s+'" not found');this._selectObject(o,!0,!0,highlightEdges)}this.redraw()},e._updateSelection=function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])}},function(t,e,i){var s=i(1),o=i(36),n=i(33);e._clearManipulatorBar=function(){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild)},e._restoreOverloadedFunctions=function(){for(var t in this.cachedFunctions)this.cachedFunctions.hasOwnProperty(t)&&(this[t]=this.cachedFunctions[t])},e._toggleEditMode=function(){this.editMode=!this.editMode;var t=document.getElementById("network-manipulationDiv"),e=document.getElementById("network-manipulation-closeDiv"),i=document.getElementById("network-manipulation-editMode");1==this.editMode?(t.style.display="block",e.style.display="block",i.style.display="none",e.onclick=this._toggleEditMode.bind(this)):(t.style.display="none",e.style.display="none",i.style.display="block",e.onclick=null),this._createManipulatorBar()},e._createManipulatorBar=function(){if(this.boundFunction&&this.off("select",this.boundFunction),void 0!==this.edgeBeingEdited&&(this.edgeBeingEdited._disableControlNodes(),this.edgeBeingEdited=void 0,this.selectedControlNode=null,this.controlNodesActive=!1),this._restoreOverloadedFunctions(),this.freezeSimulation=!1,this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.editMode){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild);this.manipulationDiv.innerHTML=""+this.constants.labels.add+"
"+this.constants.labels.link+"",1==this._getSelectedNodeCount()&&this.triggerFunctions.edit?this.manipulationDiv.innerHTML+="
"+this.constants.labels.editNode+"":1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.editEdge+""),0==this._selectionIsEmpty()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.del+"");var t=document.getElementById("network-manipulate-addNode");t.onclick=this._createAddNodeToolbar.bind(this);var e=document.getElementById("network-manipulate-connectNode");if(e.onclick=this._createAddEdgeToolbar.bind(this),1==this._getSelectedNodeCount()&&this.triggerFunctions.edit){var i=document.getElementById("network-manipulate-editNode");i.onclick=this._editNode.bind(this)}else if(1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()){var i=document.getElementById("network-manipulate-editEdge");i.onclick=this._createEditEdgeToolbar.bind(this)}if(0==this._selectionIsEmpty()){var s=document.getElementById("network-manipulate-delete");s.onclick=this._deleteSelected.bind(this)}var o=document.getElementById("network-manipulation-closeDiv");o.onclick=this._toggleEditMode.bind(this),this.boundFunction=this._createManipulatorBar.bind(this),this.on("select",this.boundFunction)}else{this.editModeDiv.innerHTML=""+this.constants.labels.edit+"";var n=document.getElementById("network-manipulate-editModeButton");n.onclick=this._toggleEditMode.bind(this)}},e._createAddNodeToolbar=function(){this._clearManipulatorBar(),this.boundFunction&&this.off("select",this.boundFunction),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.addDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._addNode.bind(this),this.on("select",this.boundFunction)},e._createAddEdgeToolbar=function(){this._clearManipulatorBar(),this._unselectAll(!0),this.freezeSimulation=!0,this.boundFunction&&this.off("select",this.boundFunction),this._unselectAll(),this.forceAppendSelection=!1,this.blockConnectingEdgeSelection=!0,this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.linkDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._handleConnect.bind(this),this.on("select",this.boundFunction),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this._handleTouch=this._handleConnect,this._handleOnRelease=this._finishConnect,this._redraw()},e._createEditEdgeToolbar=function(){this._clearManipulatorBar(),this.controlNodesActive=!0,this.boundFunction&&this.off("select",this.boundFunction),this.edgeBeingEdited=this._getSelectedEdge(),this.edgeBeingEdited._enableControlNodes(),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.editEdgeDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this.cachedFunctions._handleTap=this._handleTap,this.cachedFunctions._handleDragStart=this._handleDragStart,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleTouch=this._selectControlNode,this._handleTap=function(){},this._handleOnDrag=this._controlNodeDrag,this._handleDragStart=function(){},this._handleOnRelease=this._releaseControlNode,this._redraw()},e._selectControlNode=function(t){this.edgeBeingEdited.controlNodes.from.unselect(),this.edgeBeingEdited.controlNodes.to.unselect(),this.selectedControlNode=this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(t.x),this._YconvertDOMtoCanvas(t.y)),null!==this.selectedControlNode&&(this.selectedControlNode.select(),this.freezeSimulation=!0),this._redraw()},e._controlNodeDrag=function(t){var e=this._getPointer(t.gesture.center);null!==this.selectedControlNode&&void 0!==this.selectedControlNode&&(this.selectedControlNode.x=this._XconvertDOMtoCanvas(e.x),this.selectedControlNode.y=this._YconvertDOMtoCanvas(e.y)),this._redraw()},e._releaseControlNode=function(t){var e=this._getNodeAt(t);null!=e?(1==this.edgeBeingEdited.controlNodes.from.selected&&(this._editEdge(e.id,this.edgeBeingEdited.to.id),this.edgeBeingEdited.controlNodes.from.unselect()),1==this.edgeBeingEdited.controlNodes.to.selected&&(this._editEdge(this.edgeBeingEdited.from.id,e.id),this.edgeBeingEdited.controlNodes.to.unselect())):this.edgeBeingEdited._restoreControlNodes(),this.freezeSimulation=!1,this._redraw()},e._handleConnect=function(t){if(0==this._getSelectedNodeCount()){var e=this._getNodeAt(t);null!=e&&(e.clusterSize>1?alert("Cannot create edges to a cluster."):(this._selectObject(e,!1),this.sectors.support.nodes.targetNode=new o({id:"targetNode"},{},{},this.constants),this.sectors.support.nodes.targetNode.x=e.x,this.sectors.support.nodes.targetNode.y=e.y,this.sectors.support.nodes.targetViaNode=new o({id:"targetViaNode"},{},{},this.constants),this.sectors.support.nodes.targetViaNode.x=e.x,this.sectors.support.nodes.targetViaNode.y=e.y,this.sectors.support.nodes.targetViaNode.parentEdgeId="connectionEdge",this.edges.connectionEdge=new n({id:"connectionEdge",from:e.id,to:this.sectors.support.nodes.targetNode.id},this,this.constants),this.edges.connectionEdge.from=e,this.edges.connectionEdge.connected=!0,this.edges.connectionEdge.smooth=!0,this.edges.connectionEdge.selected=!0,this.edges.connectionEdge.to=this.sectors.support.nodes.targetNode,this.edges.connectionEdge.via=this.sectors.support.nodes.targetViaNode,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleOnDrag=function(t){var e=this._getPointer(t.gesture.center);this.sectors.support.nodes.targetNode.x=this._XconvertDOMtoCanvas(e.x),this.sectors.support.nodes.targetNode.y=this._YconvertDOMtoCanvas(e.y),this.sectors.support.nodes.targetViaNode.x=.5*(this._XconvertDOMtoCanvas(e.x)+this.edges.connectionEdge.from.x),this.sectors.support.nodes.targetViaNode.y=this._YconvertDOMtoCanvas(e.y)},this.moving=!0,this.start()))}},e._finishConnect=function(t){if(1==this._getSelectedNodeCount()){this._handleOnDrag=this.cachedFunctions._handleOnDrag,delete this.cachedFunctions._handleOnDrag;var e=this.edges.connectionEdge.fromId;delete this.edges.connectionEdge,delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode;var i=this._getNodeAt(t);null!=i&&(i.clusterSize>1?alert("Cannot create edges to a cluster."):(this._createEdge(e,i.id),this._createManipulatorBar())),this._unselectAll()}},e._addNode=function(){if(this._selectionIsEmpty()&&1==this.editMode){var t=this._pointerToPositionObject(this.pointerPosition),e={id:s.randomUUID(),x:t.left,y:t.top,label:"new",allowedToMoveX:!0,allowedToMoveY:!0};if(this.triggerFunctions.add)if(2==this.triggerFunctions.add.length){var i=this;this.triggerFunctions.add(e,function(t){i.nodesData.add(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.addError),this._createManipulatorBar(),this.moving=!0,this.start();else this.nodesData.add(e),this._createManipulatorBar(),this.moving=!0,this.start()}},e._createEdge=function(t,e){if(1==this.editMode){var i={from:t,to:e};if(this.triggerFunctions.connect)if(2==this.triggerFunctions.connect.length){var s=this;this.triggerFunctions.connect(i,function(t){s.edgesData.add(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.add(i),this.moving=!0,this.start()}},e._editEdge=function(t,e){if(1==this.editMode){var i={id:this.edgeBeingEdited.id,from:t,to:e};if(this.triggerFunctions.editEdge)if(2==this.triggerFunctions.editEdge.length){var s=this;this.triggerFunctions.editEdge(i,function(t){s.edgesData.update(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.update(i),this.moving=!0,this.start()}},e._editNode=function(){if(this.triggerFunctions.edit&&1==this.editMode){var t=this._getSelectedNode(),e={id:t.id,label:t.label,group:t.options.group,shape:t.options.shape,color:{background:t.options.color.background,border:t.options.color.border,highlight:{background:t.options.color.highlight.background,border:t.options.color.highlight.border}}};if(2==this.triggerFunctions.edit.length){var i=this;this.triggerFunctions.edit(e,function(t){i.nodesData.update(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.editError)}else alert(this.constants.labels.editBoundError)},e._deleteSelected=function(){if(!this._selectionIsEmpty()&&1==this.editMode)if(this._clusterInSelection())alert(this.constants.labels.deleteClusterError);else{var t=this.getSelectedNodes(),e=this.getSelectedEdges();if(this.triggerFunctions.del){var i=this,s={nodes:t,edges:e};(this.triggerFunctions.del.length=2)?this.triggerFunctions.del(s,function(t){i.edgesData.remove(t.edges),i.nodesData.remove(t.nodes),i._unselectAll(),i.moving=!0,i.start()}):alert(this.constants.labels.deleteError)}else this.edgesData.remove(e),this.nodesData.remove(t),this._unselectAll(),this.moving=!0,this.start()}}},function(t,e,i){var s=i(1),o=i(41);e._cleanNavigation=function(){var t=document.getElementById("network-navigation_wrapper");null!=t&&this.containerElement.removeChild(t),document.onmouseup=null},e._loadNavigationElements=function(){this._cleanNavigation(),this.navigationDivs={};var t=["up","down","left","right","zoomIn","zoomOut","zoomExtends"],e=["_moveUp","_moveDown","_moveLeft","_moveRight","_zoomIn","_zoomOut","zoomExtent"];this.navigationDivs.wrapper=document.createElement("div"),this.navigationDivs.wrapper.id="network-navigation_wrapper",this.navigationDivs.wrapper.style.position="absolute",this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px",this.containerElement.insertBefore(this.navigationDivs.wrapper,this.frame);for(var i=this,s=0;s0){"RL"==this.constants.hierarchicalLayout.direction||"DU"==this.constants.hierarchicalLayout.direction?this.constants.hierarchicalLayout.levelSeparation*=-1:this.constants.hierarchicalLayout.levelSeparation=Math.abs(this.constants.hierarchicalLayout.levelSeparation),"RL"==this.constants.hierarchicalLayout.direction||"LR"==this.constants.hierarchicalLayout.direction?1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="vertical"):1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="horizontal");var t,e,i=0,s=!1,o=!1;for(e in this.nodes)this.nodes.hasOwnProperty(e)&&(t=this.nodes[e],-1!=t.level?s=!0:o=!0,is&&(n.xFixed=!1,n.x=i[n.level].minPos,r=!0):n.yFixed&&n.level>s&&(n.yFixed=!1,n.y=i[n.level].minPos,r=!0),1==r&&(i[n.level].minPos+=i[n.level].nodeSpacing,n.edges.length>1&&this._placeBranchNodes(n.edges,n.id,i,n.level))}},e._setLevel=function(t,e,i){for(var s=0;st)&&(o.level=t,e.length>1&&this._setLevel(t+1,o.edges,o.id))}},e._restoreNodes=function(){for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.nodes[t].xFixed=!1,this.nodes[t].yFixed=!1)}},function(t,e,i){function s(){this.constants.smoothCurves.enabled=!this.constants.smoothCurves.enabled;var t=document.getElementById("graph_toggleSmooth");t.style.background=1==this.constants.smoothCurves.enabled?"#A4FF56":"#FF8532",this._configureSmoothCurves(!1)}function o(){for(var t in this.calculationNodes)this.calculationNodes.hasOwnProperty(t)&&(this.calculationNodes[t].vx=0,this.calculationNodes[t].vy=0,this.calculationNodes[t].fx=0,this.calculationNodes[t].fy=0);1==this.constants.hierarchicalLayout.enabled?(this._setupHierarchicalLayout(),a.call(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),a.call(this,"graph_H_cg",1,"physics_centralGravity"),a.call(this,"graph_H_sc",1,"physics_springConstant"),a.call(this,"graph_H_sl",1,"physics_springLength"),a.call(this,"graph_H_damp",1,"physics_damping")):this.repositionNodes(),this.moving=!0,this.start()}function n(){var t="No options are required, default values used.",e=[],i=document.getElementById("graph_physicsMethod1"),s=document.getElementById("graph_physicsMethod2");if(1==i.checked){if(this.constants.physics.barnesHut.gravitationalConstant!=this.backupConstants.physics.barnesHut.gravitationalConstant&&e.push("gravitationalConstant: "+this.constants.physics.barnesHut.gravitationalConstant),this.constants.physics.centralGravity!=this.backupConstants.physics.barnesHut.centralGravity&&e.push("centralGravity: "+this.constants.physics.centralGravity),this.constants.physics.springLength!=this.backupConstants.physics.barnesHut.springLength&&e.push("springLength: "+this.constants.physics.springLength),this.constants.physics.springConstant!=this.backupConstants.physics.barnesHut.springConstant&&e.push("springConstant: "+this.constants.physics.springConstant),this.constants.physics.damping!=this.backupConstants.physics.barnesHut.damping&&e.push("damping: "+this.constants.physics.damping),0!=e.length){t="var options = {",t+="physics: {barnesHut: {";for(var o=0;othis.constants.clustering.clusterThreshold&&1==this.constants.clustering.enabled&&this.clusterToFit(this.constants.clustering.reduceToNodes,!1),this._calculateForces())},e._calculateForces=function(){this._calculateGravitationalForces(),this._calculateNodeForces(),this.constants.physics.springConstant>0&&(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic?this._calculateSpringForcesWithSupport():1==this.constants.physics.hierarchicalRepulsion.enabled?this._calculateHierarchicalSpringForces():this._calculateSpringForces())},e._updateCalculationNodes=function(){if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this.calculationNodes={},this.calculationNodeIndices=[];for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.calculationNodes[t]=this.nodes[t]);var e=this.sectors.support.nodes;for(var i in e)e.hasOwnProperty(i)&&(this.edges.hasOwnProperty(e[i].parentEdgeId)?this.calculationNodes[i]=e[i]:e[i]._setForce(0,0));for(var s in this.calculationNodes)this.calculationNodes.hasOwnProperty(s)&&this.calculationNodeIndices.push(s)}else this.calculationNodes=this.nodes,this.calculationNodeIndices=this.nodeIndices},e._calculateGravitationalForces=function(){var t,e,i,s,o,n=this.calculationNodes,r=this.constants.physics.centralGravity,a=0;for(o=0;oSimulation Mode:Barnes HutRepulsionHierarchical
Options:
',this.containerElement.parentElement.insertBefore(this.physicsConfiguration,this.containerElement),this.optionsDiv=document.createElement("div"),this.optionsDiv.style.fontSize="14px",this.optionsDiv.style.fontFamily="verdana",this.containerElement.parentElement.insertBefore(this.optionsDiv,this.containerElement); -var e;e=document.getElementById("graph_BH_gc"),e.onchange=a.bind(this,"graph_BH_gc",-1,"physics_barnesHut_gravitationalConstant"),e=document.getElementById("graph_BH_cg"),e.onchange=a.bind(this,"graph_BH_cg",1,"physics_centralGravity"),e=document.getElementById("graph_BH_sc"),e.onchange=a.bind(this,"graph_BH_sc",1,"physics_springConstant"),e=document.getElementById("graph_BH_sl"),e.onchange=a.bind(this,"graph_BH_sl",1,"physics_springLength"),e=document.getElementById("graph_BH_damp"),e.onchange=a.bind(this,"graph_BH_damp",1,"physics_damping"),e=document.getElementById("graph_R_nd"),e.onchange=a.bind(this,"graph_R_nd",1,"physics_repulsion_nodeDistance"),e=document.getElementById("graph_R_cg"),e.onchange=a.bind(this,"graph_R_cg",1,"physics_centralGravity"),e=document.getElementById("graph_R_sc"),e.onchange=a.bind(this,"graph_R_sc",1,"physics_springConstant"),e=document.getElementById("graph_R_sl"),e.onchange=a.bind(this,"graph_R_sl",1,"physics_springLength"),e=document.getElementById("graph_R_damp"),e.onchange=a.bind(this,"graph_R_damp",1,"physics_damping"),e=document.getElementById("graph_H_nd"),e.onchange=a.bind(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),e=document.getElementById("graph_H_cg"),e.onchange=a.bind(this,"graph_H_cg",1,"physics_centralGravity"),e=document.getElementById("graph_H_sc"),e.onchange=a.bind(this,"graph_H_sc",1,"physics_springConstant"),e=document.getElementById("graph_H_sl"),e.onchange=a.bind(this,"graph_H_sl",1,"physics_springLength"),e=document.getElementById("graph_H_damp"),e.onchange=a.bind(this,"graph_H_damp",1,"physics_damping"),e=document.getElementById("graph_H_direction"),e.onchange=a.bind(this,"graph_H_direction",t,"hierarchicalLayout_direction"),e=document.getElementById("graph_H_levsep"),e.onchange=a.bind(this,"graph_H_levsep",1,"hierarchicalLayout_levelSeparation"),e=document.getElementById("graph_H_nspac"),e.onchange=a.bind(this,"graph_H_nspac",1,"hierarchicalLayout_nodeSpacing");var i=document.getElementById("graph_physicsMethod1"),d=document.getElementById("graph_physicsMethod2"),l=document.getElementById("graph_physicsMethod3");d.checked=!0,this.constants.physics.barnesHut.enabled&&(i.checked=!0),this.constants.hierarchicalLayout.enabled&&(l.checked=!0);var c=document.getElementById("graph_toggleSmooth"),p=document.getElementById("graph_repositionNodes"),u=document.getElementById("graph_generateOptions");c.onclick=s.bind(this),p.onclick=o.bind(this),u.onclick=n.bind(this),c.style.background=1==this.constants.smoothCurves&&0==this.constants.dynamicSmoothCurves?"#A4FF56":"#FF8532",r.apply(this),i.onchange=r.bind(this),d.onchange=r.bind(this),l.onchange=r.bind(this)}},e._overWriteGraphConstants=function(t,e){var i=t.split("_");1==i.length?this.constants[i[0]]=e:2==i.length?this.constants[i[0]][i[1]]=e:3==i.length&&(this.constants[i[0]][i[1]][i[2]]=e)}},function(t,e,i){function s(t){return i(o(t))}function o(t){return n[t]||function(){throw new Error("Cannot find module '"+t+"'.")}()}var n={};s.keys=function(){return Object.keys(n)},s.resolve=o,t.exports=s},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l,c=this.calculationNodes,p=this.calculationNodeIndices,u=-2/3,f=4/3,m=this.constants.physics.repulsion.nodeDistance,g=m;for(d=0;di&&(r=.5*g>i?1:v*i+f,r*=0==n?1:1+n*this.constants.clustering.forceAmplification,r/=i,s=t*r,o=e*r,a.fx-=s,a.fy-=o,h.fx+=s,h.fy+=o)}}},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l=this.calculationNodes,c=this.calculationNodeIndices,p=this.constants.physics.hierarchicalRepulsion.nodeDistance;for(h=0;hi?-Math.pow(u*i,2)+Math.pow(u*p,2):0,0==i?i=.01:n/=i,s=t*n,o=e*n,r.fx-=s,r.fy-=o,a.fx+=s,a.fy+=o}},e._calculateHierarchicalSpringForces=function(){for(var t,e,i,s,o,n,r,a,h,d=this.edges,l=this.calculationNodes,c=this.calculationNodeIndices,p=0;pn;n++)t=e[i[n]],t.options.mass>0&&(this._getForceContribution(o.root.children.NW,t),this._getForceContribution(o.root.children.NE,t),this._getForceContribution(o.root.children.SW,t),this._getForceContribution(o.root.children.SE,t))}},e._getForceContribution=function(t,e){if(t.childrenCount>0){var i,s,o;if(i=t.centerOfMass.x-e.x,s=t.centerOfMass.y-e.y,o=Math.sqrt(i*i+s*s),o*t.calcSize>this.constants.physics.barnesHut.theta){0==o&&(o=.1*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}else if(4==t.childrenCount)this._getForceContribution(t.children.NW,e),this._getForceContribution(t.children.NE,e),this._getForceContribution(t.children.SW,e),this._getForceContribution(t.children.SE,e);else if(t.children.data.id!=e.id){0==o&&(o=.5*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}}},e._formBarnesHutTree=function(t,e){for(var i,s=e.length,o=Number.MAX_VALUE,n=Number.MAX_VALUE,r=-Number.MAX_VALUE,a=-Number.MAX_VALUE,h=0;s>h;h++){var d=t[e[h]].x,l=t[e[h]].y;t[e[h]].options.mass>0&&(o>d&&(o=d),d>r&&(r=d),n>l&&(n=l),l>a&&(a=l))}var c=Math.abs(r-o)-Math.abs(a-n);c>0?(n-=.5*c,a+=.5*c):(o+=.5*c,r-=.5*c);var p=1e-5,u=Math.max(p,Math.abs(r-o)),f=.5*u,m=.5*(o+r),g=.5*(n+a),v={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:m-f,maxX:m+f,minY:g-f,maxY:g+f},size:u,calcSize:1/u,children:{data:null},maxWidth:0,level:0,childrenCount:4}};for(this._splitBranch(v.root),h=0;s>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(v.root,i);this.barnesHutTree=v},e._updateBranchMass=function(t,e){var i=t.mass+e.options.mass,s=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=s,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=s,t.mass=i;var o=Math.max(Math.max(e.height,e.radius),e.width);t.maxWidth=t.maxWidthe.x?t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NW"):this._placeInRegion(t,e,"SW"):t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NE"):this._placeInRegion(t,e,"SE")},e._placeInRegion=function(t,e,i){switch(t.children[i].childrenCount){case 0:t.children[i].children.data=e,t.children[i].childrenCount=1,this._updateBranchMass(t.children[i],e);break;case 1:t.children[i].children.data.x==e.x&&t.children[i].children.data.y==e.y?(e.x+=Math.random(),e.y+=Math.random()):(this._splitBranch(t.children[i]),this._placeInTree(t.children[i],e));break;case 4:this._placeInTree(t.children[i],e)}},e._splitBranch=function(t){var e=null;1==t.childrenCount&&(e=t.children.data,t.mass=0,t.centerOfMass.x=0,t.centerOfMass.y=0),t.childrenCount=4,t.children.data=null,this._insertRegion(t,"NW"),this._insertRegion(t,"NE"),this._insertRegion(t,"SW"),this._insertRegion(t,"SE"),null!=e&&this._placeInTree(t,e)},e._insertRegion=function(t,e){var i,s,o,n,r=.5*t.size;switch(e){case"NW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY,n=t.range.minY+r;break;case"NE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY,n=t.range.minY+r;break;case"SW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY+r,n=t.range.maxY;break;case"SE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY+r,n=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:s,minY:o,maxY:n},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}},e._drawTree=function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))},e._drawBranch=function(t,e,i){void 0===i&&(i="#FF0000"),4==t.childrenCount&&(this._drawBranch(t.children.NW,e),this._drawBranch(t.children.NE,e),this._drawBranch(t.children.SE,e),this._drawBranch(t.children.SW,e)),e.strokeStyle=i,e.beginPath(),e.moveTo(t.range.minX,t.range.minY),e.lineTo(t.range.maxX,t.range.minY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.minY),e.lineTo(t.range.maxX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.maxY),e.lineTo(t.range.minX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.minX,t.range.maxY),e.lineTo(t.range.minX,t.range.minY),e.stroke()}},function(t){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}}])}); +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(s){if(i[s])return i[s].exports;var o=i[s]={exports:{},id:s,loaded:!1};return t[s].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(6),e.DataSet=i(7),e.DataView=i(8),e.Graph3d=i(9),e.graph3d={Camera:i(13),Filter:i(14),Point2d:i(12),Point3d:i(11),Slider:i(15),StepNumber:i(16)},e.Timeline=i(17),e.Graph2d=i(35),e.timeline={DataStep:i(38),Range:i(20),stack:i(30),TimeStep:i(25),components:{items:{Item:i(32),ItemBox:i(33),ItemPoint:i(34),ItemRange:i(31)},Component:i(22),CurrentTime:i(26),CustomTime:i(27),DataAxis:i(37),GraphGroup:i(39),Group:i(29),ItemSet:i(28),Legend:i(40),LineGraph:i(36),TimeAxis:i(24)}},e.Network=i(41),e.network={Edge:i(48),Groups:i(45),Images:i(46),Node:i(47),Popup:i(49),dotparser:i(43),gephiParser:i(44)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(2),e.hammer=i(18)},function(module,exports,__webpack_require__){var moment=__webpack_require__(2);exports.isNumber=function(t){return t instanceof Number||"number"==typeof t},exports.isString=function(t){return t instanceof String||"string"==typeof t},exports.isDate=function(t){if(t instanceof Date)return!0;if(exports.isString(t)){var e=ASPDateRegex.exec(t);if(e)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},exports.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},exports.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},exports.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var s=arguments[e];for(var o in s)s.hasOwnProperty(o)&&(t[o]=s[o])}return t},exports.selectiveExtend=function(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=2;ii;i++)if(t[i]!=e[i])return!1;return!0},exports.convert=function(t,e){var i;if(void 0===t)return void 0;if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(moment.isMoment(t))return new Date(t.valueOf());if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])):moment(t).toDate();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"Moment":if(exports.isNumber(t))return moment(t);if(t instanceof Date)return moment(t.valueOf());if(moment.isMoment(t))return moment(t);if(exports.isString(t))return i=ASPDateRegex.exec(t),moment(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"ISODate":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(moment.isMoment(t))return t.toDate().toISOString();if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ISODate");case"ASPDate":if(exports.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(exports.isString(t)){i=ASPDateRegex.exec(t);var s;return s=i?new Date(Number(i[1])).valueOf():new Date(t).valueOf(),"/Date("+s+")/"}throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+e+'"')}};var ASPDateRegex=/^\/?Date\((\-?\d+)/i;exports.getType=function(t){var e=typeof t;return"object"==e?null==t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":t instanceof Array?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},exports.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},exports.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},exports.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},exports.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},exports.forEach=function(t,e){var i,s;if(t instanceof Array)for(i=0,s=t.length;s>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},exports.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},exports.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},exports.addEventListener=function(t,e,i,s){t.addEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,s)):t.attachEvent("on"+e,i)},exports.removeEventListener=function(t,e,i,s){t.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,s)):t.detachEvent("on"+e,i)},exports.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},exports.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},exports.option={},exports.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},exports.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},exports.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},exports.option.asSize=function(t,e){return"function"==typeof t&&(t=t()),exports.isString(t)?t:exports.isNumber(t)?t+"px":e||null},exports.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},exports.GiveDec=function(Hex){var Value;return Value="A"==Hex?10:"B"==Hex?11:"C"==Hex?12:"D"==Hex?13:"E"==Hex?14:"F"==Hex?15:eval(Hex)},exports.GiveHex=function(t){var e;return e=10==t?"A":11==t?"B":12==t?"C":13==t?"D":14==t?"E":15==t?"F":""+t},exports.parseColor=function(t){var e;if(exports.isString(t)){if(exports.isValidRGB(t)){var i=t.substr(4).substr(0,t.length-5).split(",");t=exports.RGBToHex(i[0],i[1],i[2])}if(exports.isValidHex(t)){var s=exports.hexToHSV(t),o={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},n={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},r=exports.HSVToHex(n.h,n.h,n.v),a=exports.HSVToHex(o.h,o.s,o.v);e={background:t,border:r,highlight:{background:a,border:r},hover:{background:a,border:r}}}else e={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else e={},e.background=t.background||"white",e.border=t.border||e.background,exports.isString(t.highlight)?e.highlight={border:t.highlight,background:t.highlight}:(e.highlight={},e.highlight.background=t.highlight&&t.highlight.background||e.background,e.highlight.border=t.highlight&&t.highlight.border||e.border),exports.isString(t.hover)?e.hover={border:t.hover,background:t.hover}:(e.hover={},e.hover.background=t.hover&&t.hover.background||e.background,e.hover.border=t.hover&&t.hover.border||e.border);return e},exports.hexToRGB=function(t){t=t.replace("#","").toUpperCase();var e=exports.GiveDec(t.substring(0,1)),i=exports.GiveDec(t.substring(1,2)),s=exports.GiveDec(t.substring(2,3)),o=exports.GiveDec(t.substring(3,4)),n=exports.GiveDec(t.substring(4,5)),r=exports.GiveDec(t.substring(5,6)),a=16*e+i,h=16*s+o,i=16*n+r;return{r:a,g:h,b:i}},exports.RGBToHex=function(t,e,i){var s=exports.GiveHex(Math.floor(t/16)),o=exports.GiveHex(t%16),n=exports.GiveHex(Math.floor(e/16)),r=exports.GiveHex(e%16),a=exports.GiveHex(Math.floor(i/16)),h=exports.GiveHex(i%16),d=s+o+n+r+a+h;return"#"+d},exports.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var s=Math.min(t,Math.min(e,i)),o=Math.max(t,Math.max(e,i));if(s==o)return{h:0,s:0,v:s};var n=t==s?e-i:i==s?t-e:i-t,r=t==s?3:i==s?1:5,a=60*(r-n/(o-s))/360,h=(o-s)/o,d=o;return{h:a,s:h,v:d}},exports.HSVToRGB=function(t,e,i){var s,o,n,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:s=i,o=l,n=h;break;case 1:s=d,o=i,n=h;break;case 2:s=h,o=i,n=l;break;case 3:s=h,o=d,n=i;break;case 4:s=l,o=h,n=i;break;case 5:s=i,o=h,n=d}return{r:Math.floor(255*s),g:Math.floor(255*o),b:Math.floor(255*n)}},exports.HSVToHex=function(t,e,i){var s=exports.HSVToRGB(t,e,i);return exports.RGBToHex(s.r,s.g,s.b)},exports.hexToHSV=function(t){var e=exports.hexToRGB(t);return exports.RGBToHSV(e.r,e.g,e.b)},exports.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},exports.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},exports.selectiveBridgeObject=function(t,e){if("object"==typeof e){for(var i=Object.create(e),s=0;sa;)o=void 0===s?n[u][i]:n[u][i][s],n[u].isVisible(e)?h=!0:(o=r&&console.log("BinarySearch too many iterations. Aborting.")}return u},exports.binarySearchGeneric=function(t,e,i,s){var o,n,r,a,h=1e4,d=0,l=t,c=!1,p=0,u=l.length,f=p,m=u,g=Math.floor(.5*(u+p));if(0==u)g=-1;else if(1==u)r=l[g][i],g=r==e?0:-1;else{for(u-=1;0==c&&h>d;)n=l[Math.max(0,g-1)][i],r=l[g][i],a=l[Math.min(l.length-1,g+1)][i],r==e||e>n&&r>e||e>r&&a>e?(c=!0,r!=e&&("before"==s?e>n&&r>e&&(g=Math.max(0,g-1)):e>r&&a>e&&(g=Math.min(l.length-1,g+1)))):(e>r?f=Math.floor(.5*(u+p)):m=Math.floor(.5*(u+p)),o=Math.floor(.5*(u+p)),p==f&&u==m?(g=-1,c=!0):(u=m,p=f,g=Math.floor(.5*(u+p)))),d++;d>=h&&console.log("BinarySearch too many iterations. Aborting.")}return g}},function(t,e,i){t.exports="undefined"!=typeof window&&window.moment||i(3)},function(t,e,i){var s;(function(t,o){(function(n){function r(t,e,i){switch(arguments.length){case 2:return null!=t?t:e;case 3:return null!=t?t:null!=e?e:i;default:throw new Error("Implement me")}}function a(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function h(t,e){function i(){ve.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}var s=!0;return f(function(){return s&&(i(),s=!1),e.apply(this,arguments)},e)}function d(t,e){return function(i){return v(t.call(this,i),e)}}function l(t,e){return function(i){return this.lang().ordinal(t.call(this,i),e)}}function c(){}function p(t){L(t),f(this,t)}function u(t){var e=S(t),i=e.year||0,s=e.quarter||0,o=e.month||0,n=e.week||0,r=e.day||0,a=e.hour||0,h=e.minute||0,d=e.second||0,l=e.millisecond||0;this._milliseconds=+l+1e3*d+6e4*h+36e5*a,this._days=+r+7*n,this._months=+o+3*s+12*i,this._data={},this._bubble()}function f(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return e.hasOwnProperty("toString")&&(t.toString=e.toString),e.hasOwnProperty("valueOf")&&(t.valueOf=e.valueOf),t}function m(t){var e,i={};for(e in t)t.hasOwnProperty(e)&&ke.hasOwnProperty(e)&&(i[e]=t[e]);return i}function g(t){return 0>t?Math.ceil(t):Math.floor(t)}function v(t,e,i){for(var s=""+Math.abs(t),o=t>=0;s.lengths;s++)(i&&t[s]!==e[s]||!i&&C(t[s])!==C(e[s]))&&r++;return r+n}function w(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=ri[t]||ai[e]||e}return t}function S(t){var e,i,s={};for(i in t)t.hasOwnProperty(i)&&(e=w(i),e&&(s[e]=t[i]));return s}function M(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}ve[t]=function(s,o){var r,a,h=ve.fn._lang[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=ve().utc().set(i,t);return h.call(ve.fn._lang,e,s||"")},null!=o)return a(o);for(r=0;e>r;r++)d.push(a(r));return d}}function C(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function E(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function D(t,e,i){return re(ve([t,11,31+e-i]),e,i).week}function T(t){return O(t)?366:365}function O(t){return t%4===0&&t%100!==0||t%400===0}function L(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Me]<0||t._a[Me]>11?Me:t._a[Ce]<1||t._a[Ce]>E(t._a[Se],t._a[Me])?Ce:t._a[Ee]<0||t._a[Ee]>23?Ee:t._a[De]<0||t._a[De]>59?De:t._a[Te]<0||t._a[Te]>59?Te:t._a[Oe]<0||t._a[Oe]>999?Oe:-1,t._pf._overflowDayOfYear&&(Se>e||e>Ce)&&(e=Ce),t._pf.overflow=e)}function k(t){return null==t._isValid&&(t._isValid=!isNaN(t._d.getTime())&&t._pf.overflow<0&&!t._pf.empty&&!t._pf.invalidMonth&&!t._pf.nullInput&&!t._pf.invalidFormat&&!t._pf.userInvalidated,t._strict&&(t._isValid=t._isValid&&0===t._pf.charsLeftOver&&0===t._pf.unusedTokens.length)),t._isValid}function N(t){return t?t.toLowerCase().replace("_","-"):t}function I(t,e){return e._isUTC?ve(t).zone(e._offset||0):ve(t).local()}function A(t,e){return e.abbr=t,Le[t]||(Le[t]=new c),Le[t].set(e),Le[t]}function z(t){delete Le[t]}function P(t){var e,s,o,n,r=0,a=function(t){if(!Le[t]&&Ne)try{i(4)("./"+t)}catch(e){}return Le[t]};if(!t)return ve.fn._lang;if(!b(t)){if(s=a(t))return s;t=[t]}for(;r0;){if(s=a(n.slice(0,e).join("-")))return s;if(o&&o.length>=e&&x(n,o,!0)>=e-1)break;e--}r++}return ve.fn._lang}function R(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function F(t){var e,i,s=t.match(Pe);for(e=0,i=s.length;i>e;e++)s[e]=pi[s[e]]?pi[s[e]]:R(s[e]);return function(o){var n="";for(e=0;i>e;e++)n+=s[e]instanceof Function?s[e].call(o,t):s[e];return n}}function H(t,e){return t.isValid()?(e=Y(e,t.lang()),hi[e]||(hi[e]=F(e)),hi[e](t)):t.lang().invalidDate()}function Y(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(Re.lastIndex=0;s>=0&&Re.test(t);)t=t.replace(Re,i),Re.lastIndex=0,s-=1;return t}function B(t,e){var i,s=e._strict;switch(t){case"Q":return qe;case"DDDD":return Ke;case"YYYY":case"GGGG":case"gggg":return s?$e:Ye;case"Y":case"G":case"g":return Qe;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?Je:Be;case"S":if(s)return qe;case"SS":if(s)return Ze;case"SSS":if(s)return Ke;case"DDD":return He;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Ge;case"a":case"A":return P(e._l)._meridiemParse;case"X":return Ue;case"Z":case"ZZ":return je;case"T":return Ve;case"SSSS":return We;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?Ze:Fe;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Fe;case"Do":return Xe;default:return i=new RegExp(K(Z(t.replace("\\","")),"i"))}}function W(t){t=t||"";var e=t.match(je)||[],i=e[e.length-1]||[],s=(i+"").match(oi)||["-",0,0],o=+(60*s[1])+C(s[2]);return"+"===s[0]?-o:o}function G(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[Me]=3*(C(e)-1));break;case"M":case"MM":null!=e&&(o[Me]=C(e)-1);break;case"MMM":case"MMMM":s=P(i._l).monthsParse(e),null!=s?o[Me]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Ce]=C(e));break;case"Do":null!=e&&(o[Ce]=C(parseInt(e,10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=C(e));break;case"YY":o[Se]=ve.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Se]=C(e);break;case"a":case"A":i._isPm=P(i._l).isPM(e);break;case"H":case"HH":case"h":case"hh":o[Ee]=C(e);break;case"m":case"mm":o[De]=C(e);break;case"s":case"ss":o[Te]=C(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Oe]=C(1e3*("0."+e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=W(e);break;case"dd":case"ddd":case"dddd":s=P(i._l).weekdaysParse(e),null!=s?(i._w=i._w||{},i._w.d=s):i._pf.invalidWeekday=e;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":t=t.substr(0,1);case"gggg":case"GGGG":case"GGGGG":t=t.substr(0,2),e&&(i._w=i._w||{},i._w[t]=C(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=ve.parseTwoDigitYear(e)}}function j(t){var e,i,s,o,n,a,h,d;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(n=1,a=4,i=r(e.GG,t._a[Se],re(ve(),1,4).year),s=r(e.W,1),o=r(e.E,1)):(d=P(t._l),n=d._week.dow,a=d._week.doy,i=r(e.gg,t._a[Se],re(ve(),n,a).year),s=r(e.w,1),null!=e.d?(o=e.d,n>o&&++s):o=null!=e.e?e.e+n:n),h=ae(i,s,o,a,n),t._a[Se]=h.year,t._dayOfYear=h.dayOfYear}function V(t){var e,i,s,o,n=[];if(!t._d){for(s=X(t),t._w&&null==t._a[Ce]&&null==t._a[Me]&&j(t),t._dayOfYear&&(o=r(t._a[Se],s[Se]),t._dayOfYear>T(o)&&(t._pf._overflowDayOfYear=!0),i=ie(o,0,t._dayOfYear),t._a[Me]=i.getUTCMonth(),t._a[Ce]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=n[e]=s[e];for(;7>e;e++)t._a[e]=n[e]=null==t._a[e]?2===e?1:0:t._a[e];t._d=(t._useUTC?ie:ee).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()+t._tzm)}}function U(t){var e;t._d||(e=S(t._i),t._a=[e.year,e.month,e.day,e.hour,e.minute,e.second,e.millisecond],V(t))}function X(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function q(t){if(t._f===ve.ISO_8601)return void J(t);t._a=[],t._pf.empty=!0;var e,i,s,o,n,r=P(t._l),a=""+t._i,h=a.length,d=0;for(s=Y(t._f,r).match(Pe)||[],e=0;e0&&t._pf.unusedInput.push(n),a=a.slice(a.indexOf(i)+i.length),d+=i.length),pi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),G(o,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(o);t._pf.charsLeftOver=h-d,a.length>0&&t._pf.unusedInput.push(a),t._isPm&&t._a[Ee]<12&&(t._a[Ee]+=12),t._isPm===!1&&12===t._a[Ee]&&(t._a[Ee]=0),V(t),L(t)}function Z(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function K(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function $(t){var e,i,s,o,n;if(0===t._f.length)return t._pf.invalidFormat=!0,void(t._d=new Date(0/0));for(o=0;on)&&(s=n,i=e));f(t,i||e)}function J(t){var e,i,s=t._i,o=ti.exec(s);if(o){for(t._pf.iso=!0,e=0,i=ii.length;i>e;e++)if(ii[e][1].exec(s)){t._f=ii[e][0]+(o[6]||" ");break}for(e=0,i=si.length;i>e;e++)if(si[e][1].exec(s)){t._f+=si[e][0];break}s.match(je)&&(t._f+="Z"),q(t)}else t._isValid=!1}function Q(t){J(t),t._isValid===!1&&(delete t._isValid,ve.createFromInputFallback(t))}function te(t){var e=t._i,i=Ie.exec(e);e===n?t._d=new Date:i?t._d=new Date(+i[1]):"string"==typeof e?Q(t):b(e)?(t._a=e.slice(0),V(t)):_(e)?t._d=new Date(+e):"object"==typeof e?U(t):"number"==typeof e?t._d=new Date(e):ve.createFromInputFallback(t)}function ee(t,e,i,s,o,n,r){var a=new Date(t,e,i,s,o,n,r);return 1970>t&&a.setFullYear(t),a}function ie(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function se(t,e){if("string"==typeof t)if(isNaN(t)){if(t=e.weekdaysParse(t),"number"!=typeof t)return null}else t=parseInt(t,10);return t}function oe(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function ne(t,e,i){var s=we(Math.abs(t)/1e3),o=we(s/60),n=we(o/60),r=we(n/24),a=we(r/365),h=s0,h[4]=i,oe.apply({},h)}function re(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=ve(t).add("d",n),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function ae(t,e,i,s,o){var n,r,a=ie(t,0,1).getUTCDay();return a=0===a?7:a,i=null!=i?i:o,n=o-a+(a>s?7:0)-(o>a?7:0),r=7*(e-1)+(i-o)+n+1,{year:r>0?t:t-1,dayOfYear:r>0?r:T(t-1)+r}}function he(t){var e=t._i,i=t._f;return null===e||i===n&&""===e?ve.invalid({nullInput:!0}):("string"==typeof e&&(t._i=e=P().preparse(e)),ve.isMoment(e)?(t=m(e),t._d=new Date(+e._d)):i?b(i)?$(t):q(t):te(t),new p(t))}function de(t,e){var i,s;if(1===e.length&&b(e[0])&&(e=e[0]),!e.length)return ve();for(i=e[0],s=1;s=0?"+":"-";return e+v(Math.abs(t),6)},gg:function(){return v(this.weekYear()%100,2)},gggg:function(){return v(this.weekYear(),4)},ggggg:function(){return v(this.weekYear(),5)},GG:function(){return v(this.isoWeekYear()%100,2)},GGGG:function(){return v(this.isoWeekYear(),4)},GGGGG:function(){return v(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return v(C(this.milliseconds()/10),2)},SSS:function(){return v(this.milliseconds(),3)},SSSS:function(){return v(this.milliseconds(),3)},Z:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+":"+v(C(t)%60,2)},ZZ:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+v(C(t/60),2)+v(C(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},ui=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];li.length;)be=li.pop(),pi[be+"o"]=l(pi[be],be);for(;ci.length;)be=ci.pop(),pi[be+be]=d(pi[be],2);for(pi.DDDD=d(pi.DDD,3),f(c.prototype,{set:function(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(t){return this._months[t.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(t){return this._monthsShort[t.month()]},monthsParse:function(t){var e,i,s;for(this._monthsParse||(this._monthsParse=[]),e=0;12>e;e++)if(this._monthsParse[e]||(i=ve.utc([2e3,e]),s="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[e]=new RegExp(s.replace(".",""),"i")),this._monthsParse[e].test(t))return e},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(t){return this._weekdays[t.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(t){return this._weekdaysShort[t.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(t){return this._weekdaysMin[t.day()]},weekdaysParse:function(t){var e,i,s;for(this._weekdaysParse||(this._weekdaysParse=[]),e=0;7>e;e++)if(this._weekdaysParse[e]||(i=ve([2e3,1]).day(e),s="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(s.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(t){var e=this._longDateFormat[t];return!e&&this._longDateFormat[t.toUpperCase()]&&(e=this._longDateFormat[t.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t]=e),e},isPM:function(t){return"p"===(t+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(t,e){var i=this._calendar[t];return"function"==typeof i?i.apply(e):i},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(t,e,i,s){var o=this._relativeTime[i];return"function"==typeof o?o(t,e,i,s):o.replace(/%d/i,t)},pastFuture:function(t,e){var i=this._relativeTime[t>0?"future":"past"];return"function"==typeof i?i(e):i.replace(/%s/i,e)},ordinal:function(t){return this._ordinal.replace("%d",t)},_ordinal:"%d",preparse:function(t){return t},postformat:function(t){return t},week:function(t){return re(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),ve=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._i=t,o._f=e,o._l=i,o._strict=s,o._isUTC=!1,o._pf=a(),he(o)},ve.suppressDeprecationWarnings=!1,ve.createFromInputFallback=h("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i)}),ve.min=function(){var t=[].slice.call(arguments,0);return de("isBefore",t)},ve.max=function(){var t=[].slice.call(arguments,0);return de("isAfter",t)},ve.utc=function(t,e,i,s){var o;return"boolean"==typeof i&&(s=i,i=n),o={},o._isAMomentObject=!0,o._useUTC=!0,o._isUTC=!0,o._l=i,o._i=t,o._f=e,o._strict=s,o._pf=a(),he(o).utc()},ve.unix=function(t){return ve(1e3*t)},ve.duration=function(t,e){var i,s,o,n=t,r=null;return ve.isDuration(t)?n={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(n={},e?n[e]=t:n.milliseconds=t):(r=Ae.exec(t))?(i="-"===r[1]?-1:1,n={y:0,d:C(r[Ce])*i,h:C(r[Ee])*i,m:C(r[De])*i,s:C(r[Te])*i,ms:C(r[Oe])*i}):(r=ze.exec(t))&&(i="-"===r[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",",".")); +return(isNaN(e)?0:e)*i},n={y:o(r[2]),M:o(r[3]),d:o(r[4]),h:o(r[5]),m:o(r[6]),s:o(r[7]),w:o(r[8])}),s=new u(n),ve.isDuration(t)&&t.hasOwnProperty("_lang")&&(s._lang=t._lang),s},ve.version=_e,ve.defaultFormat=ei,ve.ISO_8601=function(){},ve.momentProperties=ke,ve.updateOffset=function(){},ve.relativeTimeThreshold=function(t,e){return di[t]===n?!1:(di[t]=e,!0)},ve.lang=function(t,e){var i;return t?(e?A(N(t),e):null===e?(z(t),t="en"):Le[t]||P(t),i=ve.duration.fn._lang=ve.fn._lang=P(t),i._abbr):ve.fn._lang._abbr},ve.langData=function(t){return t&&t._lang&&t._lang._abbr&&(t=t._lang._abbr),P(t)},ve.isMoment=function(t){return t instanceof p||null!=t&&t.hasOwnProperty("_isAMomentObject")},ve.isDuration=function(t){return t instanceof u},be=ui.length-1;be>=0;--be)M(ui[be]);ve.normalizeUnits=function(t){return w(t)},ve.invalid=function(t){var e=ve.utc(0/0);return null!=t?f(e._pf,t):e._pf.userInvalidated=!0,e},ve.parseZone=function(){return ve.apply(null,arguments).parseZone()},ve.parseTwoDigitYear=function(t){return C(t)+(C(t)>68?1900:2e3)},f(ve.fn=p.prototype,{clone:function(){return ve(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var t=ve(this).utc();return 00:!1},parsingFlags:function(){return f({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(t){var e=H(this,t||ve.defaultFormat);return this.lang().postformat(e)},add:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,1),this},subtract:function(t,e){var i;return i="string"==typeof t&&"string"==typeof e?ve.duration(isNaN(+e)?+t:+e,isNaN(+e)?e:t):"string"==typeof t?ve.duration(+e,t):ve.duration(t,e),y(this,i,-1),this},diff:function(t,e,i){var s,o,n=I(t,this),r=6e4*(this.zone()-n.zone());return e=w(e),"year"===e||"month"===e?(s=432e5*(this.daysInMonth()+n.daysInMonth()),o=12*(this.year()-n.year())+(this.month()-n.month()),o+=(this-ve(this).startOf("month")-(n-ve(n).startOf("month")))/s,o-=6e4*(this.zone()-ve(this).startOf("month").zone()-(n.zone()-ve(n).startOf("month").zone()))/s,"year"===e&&(o/=12)):(s=this-n,o="second"===e?s/1e3:"minute"===e?s/6e4:"hour"===e?s/36e5:"day"===e?(s-r)/864e5:"week"===e?(s-r)/6048e5:s),i?o:g(o)},from:function(t,e){return ve.duration(this.diff(t)).lang(this.lang()._abbr).humanize(!e)},fromNow:function(t){return this.from(ve(),t)},calendar:function(t){var e=t||ve(),i=I(e,this).startOf("day"),s=this.diff(i,"days",!0),o=-6>s?"sameElse":-1>s?"lastWeek":0>s?"lastDay":1>s?"sameDay":2>s?"nextDay":7>s?"nextWeek":"sameElse";return this.format(this.lang().calendar(o,this))},isLeapYear:function(){return O(this.year())},isDST:function(){return this.zone()+ve(t).startOf(e)},isBefore:function(t,e){return e="undefined"!=typeof e?e:"millisecond",+this.clone().startOf(e)<+ve(t).startOf(e)},isSame:function(t,e){return e=e||"ms",+this.clone().startOf(e)===+I(t,this).startOf(e)},min:h("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),this>t?this:t}),max:h("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=ve.apply(null,arguments),t>this?this:t}),zone:function(t,e){var i=this._offset||0;return null==t?this._isUTC?i:this._d.getTimezoneOffset():("string"==typeof t&&(t=W(t)),Math.abs(t)<16&&(t=60*t),this._offset=t,this._isUTC=!0,i!==t&&(!e||this._changeInProgress?y(this,ve.duration(i-t,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,ve.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(t){return t=t?ve(t).zone():0,(this.zone()-t)%60===0},daysInMonth:function(){return E(this.year(),this.month())},dayOfYear:function(t){var e=we((ve(this).startOf("day")-ve(this).startOf("year"))/864e5)+1;return null==t?e:this.add("d",t-e)},quarter:function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},weekYear:function(t){var e=re(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==t?e:this.add("y",t-e)},isoWeekYear:function(t){var e=re(this,1,4).year;return null==t?e:this.add("y",t-e)},week:function(t){var e=this.lang().week(this);return null==t?e:this.add("d",7*(t-e))},isoWeek:function(t){var e=re(this,1,4).week;return null==t?e:this.add("d",7*(t-e))},weekday:function(t){var e=(this.day()+7-this.lang()._week.dow)%7;return null==t?e:this.add("d",t-e)},isoWeekday:function(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)},isoWeeksInYear:function(){return D(this.year(),1,4)},weeksInYear:function(){var t=this._lang._week;return D(this.year(),t.dow,t.doy)},get:function(t){return t=w(t),this[t]()},set:function(t,e){return t=w(t),"function"==typeof this[t]&&this[t](e),this},lang:function(t){return t===n?this._lang:(this._lang=P(t),this)}}),ve.fn.millisecond=ve.fn.milliseconds=ue("Milliseconds",!1),ve.fn.second=ve.fn.seconds=ue("Seconds",!1),ve.fn.minute=ve.fn.minutes=ue("Minutes",!1),ve.fn.hour=ve.fn.hours=ue("Hours",!0),ve.fn.date=ue("Date",!0),ve.fn.dates=h("dates accessor is deprecated. Use date instead.",ue("Date",!0)),ve.fn.year=ue("FullYear",!0),ve.fn.years=h("years accessor is deprecated. Use year instead.",ue("FullYear",!0)),ve.fn.days=ve.fn.day,ve.fn.months=ve.fn.month,ve.fn.weeks=ve.fn.week,ve.fn.isoWeeks=ve.fn.isoWeek,ve.fn.quarters=ve.fn.quarter,ve.fn.toJSON=ve.fn.toISOString,f(ve.duration.fn=u.prototype,{_bubble:function(){var t,e,i,s,o=this._milliseconds,n=this._days,r=this._months,a=this._data;a.milliseconds=o%1e3,t=g(o/1e3),a.seconds=t%60,e=g(t/60),a.minutes=e%60,i=g(e/60),a.hours=i%24,n+=g(i/24),a.days=n%30,r+=g(n/30),a.months=r%12,s=g(r/12),a.years=s},weeks:function(){return g(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12)},humanize:function(t){var e=+this,i=ne(e,!t,this.lang());return t&&(i=this.lang().pastFuture(e,i)),this.lang().postformat(i)},add:function(t,e){var i=ve.duration(t,e);return this._milliseconds+=i._milliseconds,this._days+=i._days,this._months+=i._months,this._bubble(),this},subtract:function(t,e){var i=ve.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=w(t),this[t.toLowerCase()+"s"]()},as:function(t){return t=w(t),this["as"+t.charAt(0).toUpperCase()+t.slice(1)+"s"]()},lang:ve.fn.lang,toIsoString:function(){var t=Math.abs(this.years()),e=Math.abs(this.months()),i=Math.abs(this.days()),s=Math.abs(this.hours()),o=Math.abs(this.minutes()),n=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(t?t+"Y":"")+(e?e+"M":"")+(i?i+"D":"")+(s||o||n?"T":"")+(s?s+"H":"")+(o?o+"M":"")+(n?n+"S":""):"P0D"}});for(be in ni)ni.hasOwnProperty(be)&&(me(be,ni[be]),fe(be.toLowerCase()));me("Weeks",6048e5),ve.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},ve.lang("en",{ordinal:function(t){var e=t%10,i=1===C(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),Ne?o.exports=ve:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(xe.moment=ye),ve}.call(e,i,e,o),!(s!==n&&(o.exports=s)),ge(!0))}).call(this)}).call(e,function(){return this}(),i(5)(t))},function(t,e,i){function s(t){return i(o(t))}function o(t){return n[t]||function(){throw new Error("Cannot find module '"+t+"'.")}()}var n={};s.keys=function(){return Object.keys(n)},s.resolve=o,t.exports=s},function(t){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(s)):(s=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.getDOMElement=function(t,e,i){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},i.appendChild(s)),e[t].used.push(s),s},e.drawPoint=function(t,i,s,o,n){var r;return"circle"==s.options.drawPoints.style?(r=e.getSVGElement("circle",o,n),r.setAttributeNS(null,"cx",t),r.setAttributeNS(null,"cy",i),r.setAttributeNS(null,"r",.5*s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")):(r=e.getSVGElement("rect",o,n),r.setAttributeNS(null,"x",t-.5*s.options.drawPoints.size),r.setAttributeNS(null,"y",i-.5*s.options.drawPoints.size),r.setAttributeNS(null,"width",s.options.drawPoints.size),r.setAttributeNS(null,"height",s.options.drawPoints.size),r.setAttributeNS(null,"class",s.className+" point")),r},e.drawBar=function(t,i,s,o,n,r,a){var h=e.getSVGElement("rect",r,a);h.setAttributeNS(null,"x",t-.5*s),h.setAttributeNS(null,"y",i),h.setAttributeNS(null,"width",s),h.setAttributeNS(null,"height",o),h.setAttributeNS(null,"class",n)}},function(t,e,i){function s(t,e){if(!t||Array.isArray(t)||o.isDataTable(t)||(e=t,t=null),this._options=e||{},this._data={},this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i in this._options.type)if(this._options.type.hasOwnProperty(i)){var s=this._options.type[i];this._type[i]="Date"==s||"ISODate"==s||"ASPDate"==s?"Date":s}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t)}var o=i(1);s.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},s.prototype.subscribe=s.prototype.on,s.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},s.prototype.unsubscribe=s.prototype.off,s.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var s=[];t in this._subscribers&&(s=s.concat(this._subscribers[t])),"*"in this._subscribers&&(s=s.concat(this._subscribers["*"]));for(var o=0;or;r++)i=n._addItem(t[r]),s.push(i);else if(o.isDataTable(t))for(var h=this._getColumnNames(t),d=0,l=t.getNumberOfRows();l>d;d++){for(var c={},p=0,u=h.length;u>p;p++){var f=h[p];c[f]=t.getValue(d,p)}i=n._addItem(c),s.push(i)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),s.push(i)}return s.length&&this._trigger("add",{items:s},e),s},s.prototype.update=function(t,e){var i=[],s=[],n=this,r=n._fieldId,a=function(t){var e=t[r];n._data[e]?(e=n._updateItem(t),s.push(e)):(e=n._addItem(t),i.push(e))};if(Array.isArray(t))for(var h=0,d=t.length;d>h;h++)a(t[h]);else if(o.isDataTable(t))for(var l=this._getColumnNames(t),c=0,p=t.getNumberOfRows();p>c;c++){for(var u={},f=0,m=l.length;m>f;f++){var g=l[f];u[g]=t.getValue(c,f)}a(u)}else{if(!(t instanceof Object))throw new Error("Unknown dataType");a(t)}return i.length&&this._trigger("add",{items:i},e),s.length&&this._trigger("update",{items:s},e),i.concat(s)},s.prototype.get=function(){var t,e,i,s,n=this,r=o.getType(arguments[0]);"String"==r||"Number"==r?(t=arguments[0],i=arguments[1],s=arguments[2]):"Array"==r?(e=arguments[0],i=arguments[1],s=arguments[2]):(i=arguments[0],s=arguments[1]);var a;if(i&&i.returnType){var h=["DataTable","Array","Object"];if(a=-1==h.indexOf(i.returnType)?"Array":i.returnType,s&&a!=o.getType(s))throw new Error('Type of parameter "data" ('+o.getType(s)+") does not correspond with specified options.type ("+i.type+")");if("DataTable"==a&&!o.isDataTable(s))throw new Error('Parameter "data" must be a DataTable when options.type is "DataTable"')}else a=s&&"DataTable"==o.getType(s)?"DataTable":"Array";var d,l,c,p,u=i&&i.type||this._options.type,f=i&&i.filter,m=[];if(void 0!=t)d=n._getItem(t,u),f&&!f(d)&&(d=null);else if(void 0!=e)for(c=0,p=e.length;p>c;c++)d=n._getItem(e[c],u),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!f||f(d))&&m.push(d));if(i&&i.order&&void 0==t&&this._sort(m,i.order),i&&i.fields){var g=i.fields;if(void 0!=t)d=this._filterFields(d,g);else for(c=0,p=m.length;p>c;c++)m[c]=this._filterFields(m[c],g)}if("DataTable"==a){var v=this._getColumnNames(s);if(void 0!=t)n._appendRow(s,v,d);else for(c=0;cc;c++)s.push(m[c]);return s}return m},s.prototype.getIds=function(t){var e,i,s,o,n,r=this._data,a=t&&t.filter,h=t&&t.order,d=t&&t.type||this._options.type,l=[];if(a)if(h){n=[];for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&n.push(o));for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=this._getItem(s,d),a(o)&&l.push(o[this._fieldId]));else if(h){n=[];for(s in r)r.hasOwnProperty(s)&&n.push(r[s]);for(this._sort(n,h),e=0,i=n.length;i>e;e++)l[e]=n[e][this._fieldId]}else for(s in r)r.hasOwnProperty(s)&&(o=r[s],l.push(o[this._fieldId]));return l},s.prototype.getDataSet=function(){return this},s.prototype.forEach=function(t,e){var i,s,o=e&&e.filter,n=e&&e.type||this._options.type,r=this._data;if(e&&e.order)for(var a=this.get(e),h=0,d=a.length;d>h;h++)i=a[h],s=i[this._fieldId],t(i,s);else for(s in r)r.hasOwnProperty(s)&&(i=this._getItem(s,n),(!o||o(i))&&t(i,s))},s.prototype.map=function(t,e){var i,s=e&&e.filter,o=e&&e.type||this._options.type,n=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,o),(!s||s(i))&&n.push(t(i,a)));return e&&e.order&&this._sort(n,e.order),n},s.prototype._filterFields=function(t,e){var i={};for(var s in t)t.hasOwnProperty(s)&&-1!=e.indexOf(s)&&(i[s]=t[s]);return i},s.prototype._sort=function(t,e){if(o.isString(e)){var i=e;t.sort(function(t,e){var s=t[i],o=e[i];return s>o?1:o>s?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},s.prototype.remove=function(t,e){var i,s,o,n=[];if(Array.isArray(t))for(i=0,s=t.length;s>i;i++)o=this._remove(t[i]),null!=o&&n.push(o);else o=this._remove(t),null!=o&&n.push(o);return n.length&&this._trigger("remove",{items:n},e),n},s.prototype._remove=function(t){if(o.isNumber(t)||o.isString(t)){if(this._data[t])return delete this._data[t],t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],e}return null},s.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this._trigger("remove",{items:e},t),e},s.prototype.max=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||r>s)&&(i=n,s=r)}return i},s.prototype.min=function(t){var e=this._data,i=null,s=null;for(var o in e)if(e.hasOwnProperty(o)){var n=e[o],r=n[t];null!=r&&(!i||s>r)&&(i=n,s=r)}return i},s.prototype.distinct=function(t){var e,i=this._data,s=[],n=this._options.type&&this._options.type[t]||null,r=0;for(var a in i)if(i.hasOwnProperty(a)){var h=i[a],d=h[t],l=!1;for(e=0;r>e;e++)if(s[e]==d){l=!0;break}l||void 0===d||(s[r]=d,r++)}if(n)for(e=0;ei;i++)e[i]=t.getColumnId(i)||t.getColumnLabel(i);return e},s.prototype._appendRow=function(t,e,i){for(var s=t.addRow(),o=0,n=e.length;n>o;o++){var r=e[o];t.setValue(s,o,i[r])}},t.exports=s},function(t,e,i){function s(t,e){this._data=null,this._ids={},this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var o=i(1),n=i(7);s.prototype.setData=function(t){var e,i,s;if(this._data){this._data.unsubscribe&&this._data.unsubscribe("*",this.listener),e=[];for(var o in this._ids)this._ids.hasOwnProperty(o)&&e.push(o);this._ids={},this._trigger("remove",{items:e})}if(this._data=t,this._data){for(this._fieldId=this._options.fieldId||this._data&&this._data.options&&this._data.options.fieldId||"id",e=this._data.getIds({filter:this._options&&this._options.filter}),i=0,s=e.length;s>i;i++)o=e[i],this._ids[o]=!0;this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},s.prototype.get=function(){var t,e,i,s=this,n=o.getType(arguments[0]);"String"==n||"Number"==n||"Array"==n?(t=arguments[0],e=arguments[1],i=arguments[2]):(e=arguments[0],i=arguments[1]);var r=o.extend({},this._options,e);this._options.filter&&e&&e.filter&&(r.filter=function(t){return s._options.filter(t)&&e.filter(t)});var a=[];return void 0!=t&&a.push(t),a.push(r),a.push(i),this._data&&this._data.get.apply(this._data,a)},s.prototype.getIds=function(t){var e;if(this._data){var i,s=this._options.filter;i=t&&t.filter?s?function(e){return s(e)&&t.filter(e)}:t.filter:s,e=this._data.getIds({filter:i,order:t&&t.order})}else e=[];return e},s.prototype.getDataSet=function(){for(var t=this;t instanceof s;)t=t._data;return t||null},s.prototype._onEvent=function(t,e,i){var s,o,n,r,a=e&&e.items,h=this._data,d=[],l=[],c=[];if(a&&h){switch(t){case"add":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r&&(this._ids[n]=!0,d.push(n));break;case"update":for(s=0,o=a.length;o>s;s++)n=a[s],r=this.get(n),r?this._ids[n]?l.push(n):(this._ids[n]=!0,d.push(n)):this._ids[n]&&(delete this._ids[n],c.push(n));break;case"remove":for(s=0,o=a.length;o>s;s++)n=a[s],this._ids[n]&&(delete this._ids[n],c.push(n))}d.length&&this._trigger("add",{items:d},i),l.length&&this._trigger("update",{items:l},i),c.length&&this._trigger("remove",{items:c},i)}},s.prototype.on=n.prototype.on,s.prototype.off=n.prototype.off,s.prototype._trigger=n.prototype._trigger,s.prototype.subscribe=s.prototype.on,s.prototype.unsubscribe=s.prototype.off,t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this.containerElement=t,this.width="400px",this.height="400px",this.margin=10,this.defaultXCenter="55%",this.defaultYCenter="50%",this.xLabel="x",this.yLabel="y",this.zLabel="z",this.filterLabel="time",this.legendLabel="value",this.style=s.STYLE.DOT,this.showPerspective=!0,this.showGrid=!0,this.keepAspectRatio=!0,this.showShadow=!1,this.showGrayBottom=!1,this.showTooltip=!1,this.verticalRatio=.5,this.animationInterval=1e3,this.animationPreload=!1,this.camera=new l,this.eye=new h(0,0,-1),this.dataTable=null,this.dataPoints=null,this.colX=void 0,this.colY=void 0,this.colZ=void 0,this.colValue=void 0,this.colFilter=void 0,this.xMin=0,this.xStep=void 0,this.xMax=1,this.yMin=0,this.yStep=void 0,this.yMax=1,this.zMin=0,this.zStep=void 0,this.zMax=1,this.valueMin=0,this.valueMax=1,this.xBarWidth=1,this.yBarWidth=1,this.colorAxis="#4D4D4D",this.colorGrid="#D3D3D3",this.colorDot="#7DC1FF",this.colorDotBorder="#3267D2",this.create(),this.setOptions(i),e&&this.setData(e)}var o=i(10),n=i(7),r=i(8),a=i(1),h=i(11),d=i(12),l=i(13),c=i(14),p=i(15),u=i(16);o(s.prototype),s.prototype._setScale=function(){this.scale=new h(1/(this.xMax-this.xMin),1/(this.yMax-this.yMin),1/(this.zMax-this.zMin)),this.keepAspectRatio&&(this.scale.x3&&(this.colFilter=3);else{if(this.style!==s.STYLE.DOTCOLOR&&this.style!==s.STYLE.DOTSIZE&&this.style!==s.STYLE.BARCOLOR&&this.style!==s.STYLE.BARSIZE)throw'Unknown style "'+this.style+'"';this.colX=0,this.colY=1,this.colZ=2,this.colValue=3,t.getNumberOfColumns()>4&&(this.colFilter=4)}},s.prototype.getNumberOfRows=function(t){return t.length},s.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},s.prototype.getDistinctValues=function(t,e){for(var i=[],s=0;st[s][e]&&(i.min=t[s][e]),i.maxt;t++){var m=(t-p)/(f-p),g=240*m,v=this._hsv2rgb(g,1,1);c.strokeStyle=v,c.beginPath(),c.moveTo(h,r+t),c.lineTo(a,r+t),c.stroke()}c.strokeStyle=this.colorAxis,c.strokeRect(h,r,i,n)}if(this.style===s.STYLE.DOTSIZE&&(c.strokeStyle=this.colorAxis,c.fillStyle=this.colorDot,c.beginPath(),c.moveTo(h,r),c.lineTo(a,r),c.lineTo(a-i+e,d),c.lineTo(h,d),c.closePath(),c.fill(),c.stroke()),this.style===s.STYLE.DOTCOLOR||this.style===s.STYLE.DOTSIZE){var y=5,b=new u(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,o=this._convert3Dto2D(new h(x,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next()}for(g.lineWidth=1,s=void 0===this.defaultYStep,i=new u(this.yMin,this.yMax,this.yStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,o=this._convert3Dto2D(new h(n,i.getCurrent(),this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top",o.y+=b):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next();for(g.lineWidth=1,s=void 0===this.defaultZStep,i=new u(this.zMin,this.zMax,this.zStep,s),i.start(),i.getCurrent()0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax;!i.end();)t=this._convert3Dto2D(new h(n,r,i.getCurrent())),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(t.x-b,t.y),g.stroke(),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(i.getCurrent()+" ",t.x-5,t.y),i.next();g.lineWidth=1,t=this._convert3Dto2D(new h(n,r,this.zMin)),e=this._convert3Dto2D(new h(n,r,this.zMax)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),g.lineWidth=1,p=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),p=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(p.x,p.y),g.lineTo(f.x,f.y),g.stroke(),g.lineWidth=1,t=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke(),t=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),g.strokeStyle=this.colorAxis,g.beginPath(),g.moveTo(t.x,t.y),g.lineTo(e.x,e.y),g.stroke();var w=this.xLabel;w.length>0&&(c=.1/this.scale.y,n=(this.xMin+this.xMax)/2,r=Math.cos(_)>0?this.yMin-c:this.yMax+c,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)>0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)<0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(w,o.x,o.y));var S=this.yLabel;S.length>0&&(l=.1/this.scale.x,n=Math.sin(_)>0?this.xMin-l:this.xMax+l,r=(this.yMin+this.yMax)/2,o=this._convert3Dto2D(new h(n,r,this.zMin)),Math.cos(2*_)<0?(g.textAlign="center",g.textBaseline="top"):Math.sin(2*_)>0?(g.textAlign="right",g.textBaseline="middle"):(g.textAlign="left",g.textBaseline="middle"),g.fillStyle=this.colorAxis,g.fillText(S,o.x,o.y));var M=this.zLabel;M.length>0&&(d=30,n=Math.cos(_)>0?this.xMin:this.xMax,r=Math.sin(_)<0?this.yMin:this.yMax,a=(this.zMin+this.zMax)/2,o=this._convert3Dto2D(new h(n,r,a)),g.textAlign="right",g.textBaseline="middle",g.fillStyle=this.colorAxis,g.fillText(M,o.x-d,o.y))},s.prototype._hsv2rgb=function(t,e,i){var s,o,n,r,a,h;switch(r=i*e,a=Math.floor(t/60),h=r*(1-Math.abs(t/60%2-1)),a){case 0:s=r,o=h,n=0;break;case 1:s=h,o=r,n=0;break;case 2:s=0,o=r,n=h;break;case 3:s=0,o=h,n=r;break;case 4:s=h,o=0,n=r;break;case 5:s=r,o=0,n=h;break;default:s=0,o=0,n=0}return"RGB("+parseInt(255*s)+","+parseInt(255*o)+","+parseInt(255*n)+")"},s.prototype._redrawDataGrid=function(){var t,e,i,o,n,r,a,d,l,c,p,u,f,m=this.frame.canvas,g=m.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(n=0;n0}else r=!0;r?(f=(t.point.z+e.point.z+i.point.z+o.point.z)/4,c=240*(1-(f-this.zMin)*this.scale.z/this.verticalRatio),p=1,this.showShadow?(u=Math.min(1+S.x/M/2,1),a=this._hsv2rgb(c,p,u),d=a):(u=1,a=this._hsv2rgb(c,p,u),d=this.colorAxis)):(a="gray",d=this.colorAxis),l=.5,g.lineWidth=l,g.fillStyle=a,g.strokeStyle=d,g.beginPath(),g.moveTo(t.screen.x,t.screen.y),g.lineTo(e.screen.x,e.screen.y),g.lineTo(o.screen.x,o.screen.y),g.lineTo(i.screen.x,i.screen.y),g.closePath(),g.fill(),g.stroke()}}else for(n=0;np&&(p=0);var u,f,m;this.style===s.STYLE.DOTCOLOR?(u=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)):this.style===s.STYLE.DOTSIZE?(f=this.colorDot,m=this.colorDotBorder):(u=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(u,1,1),m=this._hsv2rgb(u,1,.8)),i.lineWidth=1,i.strokeStyle=m,i.fillStyle=f,i.beginPath(),i.arc(d.screen.x,d.screen.y,p,0,2*Math.PI,!0),i.fill(),i.stroke()}}},s.prototype._redrawDataBar=function(){var t,e,i,o,n=this.frame.canvas,r=n.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(t=0;t0&&(t=this.dataPoints[0],s.lineWidth=1,s.strokeStyle="blue",s.beginPath(),s.moveTo(t.screen.x,t.screen.y)),e=1;e0&&s.stroke()}},s.prototype._onMouseDown=function(t){if(t=t||window.event,this.leftButtonDown&&this._onMouseUp(t),this.leftButtonDown=t.which?1===t.which:1===t.button,this.leftButtonDown||this.touchDown){this.startMouseX=getMouseX(t),this.startMouseY=getMouseY(t),this.startStart=new Date(this.start),this.startEnd=new Date(this.end),this.startArmRotation=this.camera.getArmRotation(),this.frame.style.cursor="move";var e=this;this.onmousemove=function(t){e._onMouseMove(t)},this.onmouseup=function(t){e._onMouseUp(t)},a.addEventListener(document,"mousemove",e.onmousemove),a.addEventListener(document,"mouseup",e.onmouseup),a.preventDefault(t)}},s.prototype._onMouseMove=function(t){t=t||window.event;var e=parseFloat(getMouseX(t))-this.startMouseX,i=parseFloat(getMouseY(t))-this.startMouseY,s=this.startArmRotation.horizontal+e/200,o=this.startArmRotation.vertical+i/200,n=4,r=Math.sin(n/360*2*Math.PI);Math.abs(Math.sin(s))0?1:0>t?-1:0}var s=e[0],o=e[1],n=e[2],r=i((o.x-s.x)*(t.y-s.y)-(o.y-s.y)*(t.x-s.x)),a=i((n.x-o.x)*(t.y-o.y)-(n.y-o.y)*(t.x-o.x)),h=i((s.x-n.x)*(t.y-n.y)-(s.y-n.y)*(t.x-n.x));return!(0!=r&&0!=a&&r!=a||0!=a&&0!=h&&a!=h||0!=r&&0!=h&&r!=h)},s.prototype._dataPointFromXY=function(t,e){var i,o=100,n=null,r=null,a=null,h=new d(t,e);if(this.style===s.STYLE.BAR||this.style===s.STYLE.BARCOLOR||this.style===s.STYLE.BARSIZE)for(i=this.dataPoints.length-1;i>=0;i--){n=this.dataPoints[i];var l=n.surfaces;if(l)for(var c=l.length-1;c>=0;c--){var p=l[c],u=p.corners,f=[u[0].screen,u[1].screen,u[2].screen],m=[u[2].screen,u[3].screen,u[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,m))return n}}else for(i=0;ib)&&o>b&&(a=b,r=n)}}return r},s.prototype._showTooltip=function(t){var e,i,s;this.tooltip?(e=this.tooltip.dom.content,i=this.tooltip.dom.line,s=this.tooltip.dom.dot):(e=document.createElement("div"),e.style.position="absolute",e.style.padding="10px",e.style.border="1px solid #4d4d4d",e.style.color="#1a1a1a",e.style.background="rgba(255,255,255,0.7)",e.style.borderRadius="2px",e.style.boxShadow="5px 5px 10px rgba(128,128,128,0.5)",i=document.createElement("div"),i.style.position="absolute",i.style.height="40px",i.style.width="0",i.style.borderLeft="1px solid #4d4d4d",s=document.createElement("div"),s.style.position="absolute",s.style.height="0",s.style.width="0",s.style.border="5px solid #4d4d4d",s.style.borderRadius="5px",this.tooltip={dataPoint:null,dom:{content:e,line:i,dot:s}}),this._hideTooltip(),this.tooltip.dataPoint=t,e.innerHTML="function"==typeof this.showTooltip?this.showTooltip(t.point):"
x:"+t.point.x+"
y:"+t.point.y+"
z:"+t.point.z+"
",e.style.left="0",e.style.top="0",this.frame.appendChild(e),this.frame.appendChild(i),this.frame.appendChild(s);var o=e.offsetWidth,n=e.offsetHeight,r=i.offsetHeight,a=s.offsetWidth,h=s.offsetHeight,d=t.screen.x-o/2;d=Math.min(Math.max(d,10),this.frame.clientWidth-10-o),i.style.left=t.screen.x+"px",i.style.top=t.screen.y-r+"px",e.style.left=d+"px",e.style.top=t.screen.y-r-n+"px",s.style.left=t.screen.x-a/2+"px",s.style.top=t.screen.y-h/2+"px"},s.prototype._hideTooltip=function(){if(this.tooltip){this.tooltip.dataPoint=null;for(var t in this.tooltip.dom)if(this.tooltip.dom.hasOwnProperty(t)){var e=this.tooltip.dom[t];e&&e.parentNode&&e.parentNode.removeChild(e)}}},getMouseX=function(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0},getMouseY=function(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0},t.exports=s},function(t){function e(t){return t?i(t):void 0}function i(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){s.off(t,i),e.apply(this,arguments)}var s=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var s,o=0;os;++s)i[s].apply(this,e)}return this},e.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},e.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t){function e(t,e,i){this.x=void 0!==t?t:0,this.y=void 0!==e?e:0,this.z=void 0!==i?i:0}e.subtract=function(t,i){var s=new e;return s.x=t.x-i.x,s.y=t.y-i.y,s.z=t.z-i.z,s},e.add=function(t,i){var s=new e;return s.x=t.x+i.x,s.y=t.y+i.y,s.z=t.z+i.z,s},e.avg=function(t,i){return new e((t.x+i.x)/2,(t.y+i.y)/2,(t.z+i.z)/2)},e.crossProduct=function(t,i){var s=new e;return s.x=t.y*i.z-t.z*i.y,s.y=t.z*i.x-t.x*i.z,s.z=t.x*i.y-t.y*i.x,s},e.prototype.length=function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},t.exports=e},function(t){Point2d=function(t,e){this.x=void 0!==t?t:0,this.y=void 0!==e?e:0},t.exports=Point2d},function(t,e,i){var s=i(11);Camera=function(){this.armLocation=new s,this.armRotation={},this.armRotation.horizontal=0,this.armRotation.vertical=0,this.armLength=1.7,this.cameraLocation=new s,this.cameraRotation=new s(.5*Math.PI,0,0),this.calculateCameraOrientation()},Camera.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},Camera.prototype.setArmRotation=function(t,e){void 0!==t&&(this.armRotation.horizontal=t),void 0!==e&&(this.armRotation.vertical=e,this.armRotation.vertical<0&&(this.armRotation.vertical=0),this.armRotation.vertical>.5*Math.PI&&(this.armRotation.vertical=.5*Math.PI)),(void 0!==t||void 0!==e)&&this.calculateCameraOrientation()},Camera.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},Camera.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},Camera.prototype.getArmLength=function(){return this.armLength},Camera.prototype.getCameraLocation=function(){return this.cameraLocation},Camera.prototype.getCameraRotation=function(){return this.cameraRotation},Camera.prototype.calculateCameraOrientation=function(){this.cameraLocation.x=this.armLocation.x-this.armLength*Math.sin(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.y=this.armLocation.y-this.armLength*Math.cos(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.z=this.armLocation.z+this.armLength*Math.sin(this.armRotation.vertical),this.cameraRotation.x=Math.PI/2-this.armRotation.vertical,this.cameraRotation.y=0,this.cameraRotation.z=-this.armRotation.horizontal},t.exports=Camera},function(t,e,i){function s(t,e,i){this.data=t,this.column=e,this.graph=i,this.index=void 0,this.value=void 0,this.values=i.getDistinctValues(t.get(),this.column),this.values.sort(function(t,e){return t>e?1:e>t?-1:0}),this.values.length>0&&this.selectValue(0),this.dataPoints=[],this.loaded=!1,this.onLoadCallback=void 0,i.animationPreload?(this.loaded=!1,this.loadInBackground()):this.loaded=!0}var o=i(8);s.prototype.isLoaded=function(){return this.loaded},s.prototype.getLoadedProgress=function(){for(var t=this.values.length,e=0;this.dataPoints[e];)e++;return Math.round(e/t*100)},s.prototype.getLabel=function(){return this.graph.filterLabel},s.prototype.getColumn=function(){return this.column},s.prototype.getSelectedValue=function(){return void 0===this.index?void 0:this.values[this.index]},s.prototype.getValues=function(){return this.values},s.prototype.getValue=function(t){if(t>=this.values.length)throw"Error: index out of range";return this.values[t]},s.prototype._getDataPoints=function(t){if(void 0===t&&(t=this.index),void 0===t)return[];var e;if(this.dataPoints[t])e=this.dataPoints[t];else{var i={};i.column=this.column,i.value=this.values[t];var s=new o(this.data,{filter:function(t){return t[i.column]==i.value}}).get();e=this.graph._getDataPoints(s),this.dataPoints[t]=e}return e},s.prototype.setOnLoadCallback=function(t){this.onLoadCallback=t},s.prototype.selectValue=function(t){if(t>=this.values.length)throw"Error: index out of range";this.index=t,this.value=this.values[t]},s.prototype.loadInBackground=function(t){void 0===t&&(t=0);var e=this.graph.frame;if(t0&&(t--,this.setIndex(t))},s.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},s.prototype.setIndex=function(t){if(!(ts&&(s=0),s>this.values.length-1&&(s=this.values.length-1),s},s.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,s=i+3;return s},s.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,s=this.leftToIndex(i);this.setIndex(s),o.preventDefault()},s.prototype._onMouseUp=function(){this.frame.style.cursor="auto",o.removeEventListener(document,"mousemove",this.onmousemove),o.removeEventListener(document,"mouseup",this.onmouseup),o.preventDefault()},t.exports=s},function(t){function e(t,e,i,s){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,s)}e.prototype.setRange=function(t,e,i,s){this._start=t?t:0,this._end=e?e:0,this.setStep(i,s)},e.prototype.setStep=function(t,i){void 0===t||0>=t||(void 0!==i&&(this.prettyStep=i),this._step=this.prettyStep===!0?e.calculatePrettyStep(t):t)},e.calculatePrettyStep=function(t){var e=function(t){return Math.log(t)/Math.LN10},i=Math.pow(10,Math.round(e(t))),s=2*Math.pow(10,Math.round(e(t/2))),o=5*Math.pow(10,Math.round(e(t/5))),n=i;return Math.abs(s-t)<=Math.abs(n-t)&&(n=s),Math.abs(o-t)<=Math.abs(n-t)&&(n=o),0>=n&&(n=1),n},e.prototype.getCurrent=function(){return parseFloat(this._current.toPrecision(this.precision))},e.prototype.getStep=function(){return this._step},e.prototype.start=function(){this._current=this._start-this._start%this._step},e.prototype.next=function(){this._current+=this._step},e.prototype.end=function(){return this._current>this._end},t.exports=e},function(t,e,i){function s(t,e,i){for(var n in h.prototype)h.prototype.hasOwnProperty(n)&&!s.prototype.hasOwnProperty(n)&&(s.prototype[n]=h.prototype[n]);if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");var r=this;this.defaultOptions={start:null,end:null,autoResize:!0,orientation:"bottom",width:null,height:null,maxHeight:null,minHeight:null},this.options=o.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},util:{snap:null,toScreen:r._toScreen.bind(r),toGlobalScreen:r._toGlobalScreen.bind(r),toTime:r._toTime.bind(r),toGlobalTime:r._toGlobalTime.bind(r)}},this.range=new a(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new d(this.body),this.components.push(this.timeAxis),this.body.util.snap=this.timeAxis.snap.bind(this.timeAxis),this.currentTime=new l(this.body),this.components.push(this.currentTime),this.customTime=new c(this.body),this.components.push(this.customTime),this.itemSet=new p(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,i&&this.setOptions(i),e?this.setItems(e):this.redraw()}var o=(i(10),i(18),i(1)),n=i(7),r=i(8),a=i(20),h=i(23),d=i(24),l=i(26),c=i(27),p=i(28);s.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","orientation"];o.selectiveExtend(e,this.options,t),this._initAutoResize()}if(this.components.forEach(function(e){e.setOptions(t)}),t&&t.order)throw new Error("Option order is deprecated. There is no replacement for this feature.");this.redraw()},s.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof n||t instanceof r?t:new n(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.itemSet&&this.itemSet.setItems(e),i&&("start"in this.options||"end"in this.options)){this.fit();var s="start"in this.options?o.convert(this.options.start,"Date"):null,a="end"in this.options?o.convert(this.options.end,"Date"):null;this.setWindow(s,a)}},s.prototype.setGroups=function(t){var e;e=t?t instanceof n||t instanceof r?t:new n(t):null,this.groupsData=e,this.itemSet.setGroups(e)},s.prototype.setSelection=function(t){this.itemSet&&this.itemSet.setSelection(t)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.getItemRange=function(){var t=this.itemsData.getDataSet(),e=null,i=null;if(t){var s=t.min("start");e=s?o.convert(s.start,"Date").valueOf():null;var n=t.max("start");n&&(i=o.convert(n.start,"Date").valueOf());var r=t.max("end");r&&(i=null==i?o.convert(r.end,"Date").valueOf():Math.max(i,o.convert(r.end,"Date").valueOf()))}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},t.exports=s},function(t,e,i){t.exports="undefined"!=typeof window?window.Hammer||i(19):function(){throw Error("hammer.js is only available in a browser, not in node.js.")}},function(t,e,i){var s;!function(o,n){"use strict";function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){M.register(t)}),w.onTouch(a.DOCUMENT,v,M.detect),w.onTouch(a.DOCUMENT,y,M.detect),a.READY=!0)}var a=function C(t,e){return new C.Instance(t,e||{})};a.VERSION="1.1.3",a.defaults={behavior:{userSelect:"none",touchAction:"pan-y",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},a.DOCUMENT=document,a.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,a.HAS_TOUCHEVENTS="ontouchstart"in o,a.IS_MOBILE=/mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent),a.NO_MOUSEEVENTS=a.HAS_TOUCHEVENTS&&a.IS_MOBILE||a.HAS_POINTEREVENTS,a.CALCULATE_INTERVAL=25;var h={},d=a.DIRECTION_DOWN="down",l=a.DIRECTION_LEFT="left",c=a.DIRECTION_UP="up",p=a.DIRECTION_RIGHT="right",u=a.POINTER_MOUSE="mouse",f=a.POINTER_TOUCH="touch",m=a.POINTER_PEN="pen",g=a.EVENT_START="start",v=a.EVENT_MOVE="move",y=a.EVENT_END="end",b=a.EVENT_RELEASE="release",_=a.EVENT_TOUCH="touch";a.READY=!1,a.plugins=a.plugins||{},a.gestures=a.gestures||{};var x=a.utils={extend:function(t,e,i){for(var s in e)!e.hasOwnProperty(s)||t[s]!==n&&i||(t[s]=e[s]);return t},on:function(t,e,i){t.addEventListener(e,i,!1)},off:function(t,e,i){t.removeEventListener(e,i,!1)},each:function(t,e,i){var s,o;if("forEach"in t)t.forEach(e,i);else if(t.length!==n){for(s=0,o=t.length;o>s;s++)if(e.call(i,t[s],s,t)===!1)return}else for(s in t)if(t.hasOwnProperty(s)&&e.call(i,t[s],s,t)===!1)return},inStr:function(t,e){return t.indexOf(e)>-1},inArray:function(t,e){if(t.indexOf){var i=t.indexOf(e);return-1===i?!1:i}for(var s=0,o=t.length;o>s;s++)if(t[s]===e)return s;return!1},toArray:function(t){return Array.prototype.slice.call(t,0)},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){var e=[],i=[],s=[],o=[],n=Math.min,r=Math.max;return 1===t.length?{pageX:t[0].pageX,pageY:t[0].pageY,clientX:t[0].clientX,clientY:t[0].clientY}:(x.each(t,function(t){e.push(t.pageX),i.push(t.pageY),s.push(t.clientX),o.push(t.clientY)}),{pageX:(n.apply(Math,e)+r.apply(Math,e))/2,pageY:(n.apply(Math,i)+r.apply(Math,i))/2,clientX:(n.apply(Math,s)+r.apply(Math,s))/2,clientY:(n.apply(Math,o)+r.apply(Math,o))/2})},getVelocity:function(t,e,i){return{x:Math.abs(e/t)||0,y:Math.abs(i/t)||0}},getAngle:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return 180*Math.atan2(s,i)/Math.PI},getDirection:function(t,e){var i=Math.abs(t.clientX-e.clientX),s=Math.abs(t.clientY-e.clientY);return i>=s?t.clientX-e.clientX>0?l:p:t.clientY-e.clientY>0?c:d},getDistance:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return Math.sqrt(i*i+s*s)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==c||t==d},setPrefixedCss:function(t,e,i,s){var o=["","Webkit","Moz","O","ms"];e=x.toCamelCase(e);for(var n=0;n0&&this.started&&(r=v),this.started=!0;var d=this.collectEventData(i,r,o,t);return e!=y&&s.call(M,d),a&&(d.changedLength=h,d.eventType=a,s.call(M,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(M,d),this.started=!1),r},determineEventTypes:function(){var t;return t=a.HAS_POINTEREVENTS?o.PointerEvent?["pointerdown","pointermove","pointerup pointercancel lostpointercapture"]:["MSPointerDown","MSPointerMove","MSPointerUp MSPointerCancel MSLostPointerCapture"]:a.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],h[g]=t[0],h[v]=t[1],h[y]=t[2],h},getTouchList:function(t,e){if(a.HAS_POINTEREVENTS)return S.getTouchList();if(t.touches){if(e==v)return t.touches;var i=[],s=[].concat(x.toArray(t.touches),x.toArray(t.changedTouches)),o=[];return x.each(s,function(t){x.inArray(i,t.identifier)===!1&&o.push(t),i.push(t.identifier)}),o}return t.identifier=1,[t]},collectEventData:function(t,e,i,s){var o=f;return x.inStr(s.type,"mouse")||S.matchType(u,s)?o=u:S.matchType(m,s)&&(o=m),{center:x.getCenter(i),timeStamp:Date.now(),target:s.target,touches:i,eventType:e,pointerType:o,srcEvent:s,preventDefault:function(){var t=this.srcEvent;t.preventManipulation&&t.preventManipulation(),t.preventDefault&&t.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return M.stopDetect()}}}},S=a.PointerEvent={pointers:{},getTouchList:function(){var t=[];return x.each(this.pointers,function(e){t.push(e)}),t},updatePointer:function(t,e){t==y||t!=y&&1!==e.buttons?delete this.pointers[e.pointerId]:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e)},matchType:function(t,e){if(!e.pointerType)return!1;var i=e.pointerType,s={};return s[u]=i===(e.MSPOINTER_TYPE_MOUSE||u),s[f]=i===(e.MSPOINTER_TYPE_TOUCH||f),s[m]=i===(e.MSPOINTER_TYPE_PEN||m),s[t]},reset:function(){this.pointers={}}},M=a.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:x.extend({},e),lastEvent:!1,lastCalcEvent:!1,futureCalcEvent:!1,lastCalcData:{},name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);var e=this.current.inst,i=e.options;return x.each(this.gestures,function(s){!this.stopped&&e.enabled&&i[s.name]&&s.handler.call(s,t,e)},this),this.current&&(this.current.lastEvent=t),t.eventType==y&&this.stopDetect(),t}},stopDetect:function(){this.previous=x.extend({},this.current),this.current=null,this.stopped=!0},getCalculatedData:function(t,e,i,s,o){var n=this.current,r=!1,h=n.lastCalcEvent,d=n.lastCalcData;h&&t.timeStamp-h.timeStamp>a.CALCULATE_INTERVAL&&(e=h.center,i=t.timeStamp-h.timeStamp,s=t.center.clientX-h.center.clientX,o=t.center.clientY-h.center.clientY,r=!0),(t.eventType==_||t.eventType==b)&&(n.futureCalcEvent=t),(!n.lastCalcEvent||r)&&(d.velocity=x.getVelocity(i,s,o),d.angle=x.getAngle(e,t.center),d.direction=x.getDirection(e,t.center),n.lastCalcEvent=n.futureCalcEvent||t,n.futureCalcEvent=t),t.velocityX=d.velocity.x,t.velocityY=d.velocity.y,t.interimAngle=d.angle,t.interimDirection=d.direction},extendEventData:function(t){var e=this.current,i=e.startEvent,s=e.lastEvent||i;(t.eventType==_||t.eventType==b)&&(i.touches=[],x.each(t.touches,function(t){i.touches.push({clientX:t.clientX,clientY:t.clientY})}));var o=t.timeStamp-i.timeStamp,n=t.center.clientX-i.center.clientX,r=t.center.clientY-i.center.clientY;return this.getCalculatedData(t,s.center,o,n,r),x.extend(t,{startEvent:i,deltaTime:o,deltaX:n,deltaY:r,distance:x.getDistance(i.center,t.center),angle:x.getAngle(i.center,t.center),direction:x.getDirection(i.center,t.center),scale:x.getScale(i.touches,t.touches),rotation:x.getRotation(i.touches,t.touches)}),t},register:function(t){var e=t.defaults||{};return e[t.name]===n&&(e[t.name]=!0),x.extend(a.defaults,e,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.indexe.index?1:0}),this.gestures}};a.Instance=function(t,e){var i=this;r(),this.element=t,this.enabled=!0,x.each(e,function(t,i){delete e[i],e[x.toCamelCase(i)]=t}),this.options=x.extend(x.extend({},a.defaults),e||{}),this.options.behavior&&x.toggleBehavior(this.element,this.options.behavior,!0),this.eventStartHandler=w.onTouch(t,g,function(t){i.enabled&&t.eventType==g?M.startDetect(i,t):t.eventType==_&&M.detect(t)}),this.eventHandlers=[]},a.Instance.prototype={on:function(t,e){var i=this;return w.on(i.element,t,e,function(t){i.eventHandlers.push({gesture:t,handler:e})}),i},off:function(t,e){var i=this;return w.off(i.element,t,e,function(t){var s=x.inArray({gesture:t,handler:e});s!==!1&&i.eventHandlers.splice(s,1)}),i},trigger:function(t,e){e||(e={});var i=a.DOCUMENT.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e;var s=this.element;return x.hasParent(e.target,s)&&(s=e.target),s.dispatchEvent(i),this},enable:function(t){return this.enabled=t,this},dispose:function(){var t,e;for(x.toggleBehavior(this.element,this.options.behavior,!1),t=-1;e=this.eventHandlers[++t];)x.off(this.element,e.gesture,e.handler);return this.eventHandlers=[],w.off(this.element,h[g],this.eventStartHandler),null}},function(t){function e(e,s){var o=M.current;if(!(s.options.dragMaxTouches>0&&e.touches.length>s.options.dragMaxTouches))switch(e.eventType){case g:i=!1;break;case v:if(e.distance0)){var r=Math.abs(s.options.dragMinDistance/e.distance);n.pageX+=e.deltaX*r,n.pageY+=e.deltaY*r,n.clientX+=e.deltaX*r,n.clientY+=e.deltaY*r,e=M.extendEventData(e)}(o.lastEvent.dragLockToAxis||s.options.dragLockToAxis&&s.options.dragLockMinDistance<=e.distance)&&(e.dragLockToAxis=!0);var a=o.lastEvent.direction;e.dragLockToAxis&&a!==e.direction&&(e.direction=x.isVertical(a)?e.deltaY<0?c:d:e.deltaX<0?l:p),i||(s.trigger(t+"start",e),i=!0),s.trigger(t,e),s.trigger(t+e.direction,e);var h=x.isVertical(e.direction);(s.options.dragBlockVertical&&h||s.options.dragBlockHorizontal&&!h)&&e.preventDefault();break;case b:i&&e.changedLength<=s.options.dragMaxTouches&&(s.trigger(t+"end",e),i=!1);break;case y:i=!1}}var i=!1;a.gestures.Drag={name:t,index:50,handler:e,defaults:{dragMinDistance:10,dragDistanceCorrection:!0,dragMaxTouches:1,dragBlockHorizontal:!1,dragBlockVertical:!1,dragLockToAxis:!1,dragLockMinDistance:25}}}("drag"),a.gestures.Gesture={name:"gesture",index:1337,handler:function(t,e){e.trigger(this.name,t)}},function(t){function e(e,s){var o=s.options,n=M.current;switch(e.eventType){case g:clearTimeout(i),n.name=t,i=setTimeout(function(){n&&n.name==t&&s.trigger(t,e)},o.holdTimeout);break;case v:e.distance>o.holdThreshold&&clearTimeout(i);break;case b:clearTimeout(i)}}var i;a.gestures.Hold={name:t,index:10,defaults:{holdTimeout:500,holdThreshold:2},handler:e}}("hold"),a.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==b&&e.trigger(this.name,t)}},a.gestures.Swipe={name:"swipe",index:40,defaults:{swipeMinTouches:1,swipeMaxTouches:1,swipeVelocityX:.6,swipeVelocityY:.6},handler:function(t,e){if(t.eventType==b){var i=t.touches.length,s=e.options;if(is.swipeMaxTouches)return;(t.velocityX>s.swipeVelocityX||t.velocityY>s.swipeVelocityY)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},function(t){function e(e,s){var o,n,r=s.options,a=M.current,h=M.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t,e,i){function s(t,e){var i=h().hours(0).minutes(0).seconds(0).milliseconds(0);this.start=i.clone().add("days",-3).valueOf(),this.end=i.clone().add("days",4).valueOf(),this.body=t,this.defaultOptions={start:null,end:null,direction:"horizontal",moveable:!0,zoomable:!0,min:null,max:null,zoomMin:10,zoomMax:31536e10},this.options=r.extend({},this.defaultOptions),this.props={touch:{}},this.body.emitter.on("dragstart",this._onDragStart.bind(this)),this.body.emitter.on("drag",this._onDrag.bind(this)),this.body.emitter.on("dragend",this._onDragEnd.bind(this)),this.body.emitter.on("hold",this._onHold.bind(this)),this.body.emitter.on("mousewheel",this._onMouseWheel.bind(this)),this.body.emitter.on("DOMMouseScroll",this._onMouseWheel.bind(this)),this.body.emitter.on("touch",this._onTouch.bind(this)),this.body.emitter.on("pinch",this._onPinch.bind(this)),this.setOptions(e)}function o(t){if("horizontal"!=t&&"vertical"!=t)throw new TypeError('Unknown direction "'+t+'". Choose "horizontal" or "vertical".')}function n(t,e){return{x:t.pageX-r.getAbsoluteLeft(e),y:t.pageY-r.getAbsoluteTop(e)}}var r=i(1),a=i(21),h=i(2),d=i(22);s.prototype=new d,s.prototype.setOptions=function(t){if(t){var e=["direction","min","max","zoomMin","zoomMax","moveable","zoomable"];r.selectiveExtend(e,this.options,t),("start"in t||"end"in t)&&this.setRange(t.start,t.end)}},s.prototype.setRange=function(t,e){var i=this._applyRange(t,e);if(i){var s={start:new Date(this.start),end:new Date(this.end)};this.body.emitter.emit("rangechange",s),this.body.emitter.emit("rangechanged",s)}},s.prototype._applyRange=function(t,e){var i,s=null!=t?r.convert(t,"Date").valueOf():this.start,o=null!=e?r.convert(e,"Date").valueOf():this.end,n=null!=this.options.max?r.convert(this.options.max,"Date").valueOf():null,a=null!=this.options.min?r.convert(this.options.min,"Date").valueOf():null;if(isNaN(s)||null===s)throw new Error('Invalid start "'+t+'"');if(isNaN(o)||null===o)throw new Error('Invalid end "'+e+'"');if(s>o&&(o=s),null!==a&&a>s&&(i=a-s,s+=i,o+=i,null!=n&&o>n&&(o=n)),null!==n&&o>n&&(i=o-n,s-=i,o-=i,null!=a&&a>s&&(s=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>o-s&&(this.end-this.start===h?(s=this.start,o=this.end):(i=h-(o-s),s-=i/2,o+=i/2))}if(null!==this.options.zoomMax){var d=parseFloat(this.options.zoomMax);0>d&&(d=0),o-s>d&&(this.end-this.start===d?(s=this.start,o=this.end):(i=o-s-d,s+=i/2,o-=i/2))}var l=this.start!=s||this.end!=o;return this.start=s,this.end=o,l},s.prototype.getRange=function(){return{start:this.start,end:this.end}},s.prototype.conversion=function(t){return s.conversion(this.start,this.end,t)},s.conversion=function(t,e,i){return 0!=i&&e-t!=0?{offset:t,scale:i/(e-t)}:{offset:0,scale:1}},s.prototype._onDragStart=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},s.prototype._onDrag=function(t){if(this.options.moveable){var e=this.options.direction;if(o(e),this.props.touch.allowDragging){var i="horizontal"==e?t.gesture.deltaX:t.gesture.deltaY,s=this.props.touch.end-this.props.touch.start,n="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,r=-i/n*s;this._applyRange(this.props.touch.start+r,this.props.touch.end+r),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end)})}}},s.prototype._onDragEnd=function(){this.options.moveable&&this.props.touch.allowDragging&&(this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end)}))},s.prototype._onMouseWheel=function(t){if(this.options.zoomable&&this.options.moveable){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i;i=0>e?1-e/5:1/(1+e/5);var s=a.fakeGesture(this,t),o=n(s.center,this.body.dom.center),r=this._pointerToDate(o);this.zoom(i,r)}t.preventDefault()}},s.prototype._onTouch=function(){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null},s.prototype._onHold=function(){this.props.touch.allowDragging=!1},s.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable&&(this.props.touch.allowDragging=!1,t.gesture.touches.length>1)){this.props.touch.center||(this.props.touch.center=n(t.gesture.center,this.body.dom.center));var e=1/t.gesture.scale,i=this._pointerToDate(this.props.touch.center),s=parseInt(i+(this.props.touch.start-i)*e),o=parseInt(i+(this.props.touch.end-i)*e);this.setRange(s,o)}},s.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(o(i),"horizontal"==i){var s=this.body.domProps.center.width;return e=this.conversion(s),t.x/e.scale+e.offset}var n=this.body.domProps.center.height;return e=this.conversion(n),t.y/e.scale+e.offset},s.prototype.zoom=function(t,e){null==e&&(e=(this.start+this.end)/2);var i=e+(this.start-e)*t,s=e+(this.end-e)*t;this.setRange(i,s)},s.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,s=this.end+e*t;this.start=i,this.end=s},s.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,s=this.start-i,o=this.end-i;this.setRange(s,o)},t.exports=s},function(t,e,i){var s=i(18);e.fakeGesture=function(t,e){var i=null,o=s.event.getTouchList(e,i),n=s.event.collectEventData(this,i,o,e);return isNaN(n.center.pageX)&&(n.center.pageX=e.pageX),isNaN(n.center.pageY)&&(n.center.pageY=e.pageY),n}},function(t){function e(){this.options=null,this.props=null}e.prototype.setOptions=function(t){t&&util.extend(this.options,t)},e.prototype.redraw=function(){return!1},e.prototype.destroy=function(){},e.prototype._isResized=function(){var t=this.props._previousWidth!==this.props.width||this.props._previousHeight!==this.props.height;return this.props._previousWidth=this.props.width,this.props._previousHeight=this.props.height,t},t.exports=e},function(t,e,i){function s(){}{var o=i(10),n=i(18),r=i(1);i(7),i(8),i(20),i(24),i(26),i(27),i(28)}o(s.prototype),s.prototype._create=function(t){this.dom={},this.dom.root=document.createElement("div"),this.dom.background=document.createElement("div"),this.dom.backgroundVertical=document.createElement("div"),this.dom.backgroundHorizontal=document.createElement("div"),this.dom.centerContainer=document.createElement("div"),this.dom.leftContainer=document.createElement("div"),this.dom.rightContainer=document.createElement("div"),this.dom.center=document.createElement("div"),this.dom.left=document.createElement("div"),this.dom.right=document.createElement("div"),this.dom.top=document.createElement("div"),this.dom.bottom=document.createElement("div"),this.dom.shadowTop=document.createElement("div"),this.dom.shadowBottom=document.createElement("div"),this.dom.shadowTopLeft=document.createElement("div"),this.dom.shadowBottomLeft=document.createElement("div"),this.dom.shadowTopRight=document.createElement("div"),this.dom.shadowBottomRight=document.createElement("div"),this.dom.background.className="vispanel background",this.dom.backgroundVertical.className="vispanel background vertical",this.dom.backgroundHorizontal.className="vispanel background horizontal",this.dom.centerContainer.className="vispanel center",this.dom.leftContainer.className="vispanel left",this.dom.rightContainer.className="vispanel right",this.dom.top.className="vispanel top",this.dom.bottom.className="vispanel bottom",this.dom.left.className="content",this.dom.center.className="content",this.dom.right.className="content",this.dom.shadowTop.className="shadow top",this.dom.shadowBottom.className="shadow bottom",this.dom.shadowTopLeft.className="shadow top",this.dom.shadowBottomLeft.className="shadow bottom",this.dom.shadowTopRight.className="shadow top",this.dom.shadowBottomRight.className="shadow bottom",this.dom.root.appendChild(this.dom.background),this.dom.root.appendChild(this.dom.backgroundVertical),this.dom.root.appendChild(this.dom.backgroundHorizontal),this.dom.root.appendChild(this.dom.centerContainer),this.dom.root.appendChild(this.dom.leftContainer),this.dom.root.appendChild(this.dom.rightContainer),this.dom.root.appendChild(this.dom.top),this.dom.root.appendChild(this.dom.bottom),this.dom.centerContainer.appendChild(this.dom.center),this.dom.leftContainer.appendChild(this.dom.left),this.dom.rightContainer.appendChild(this.dom.right),this.dom.centerContainer.appendChild(this.dom.shadowTop),this.dom.centerContainer.appendChild(this.dom.shadowBottom),this.dom.leftContainer.appendChild(this.dom.shadowTopLeft),this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft),this.dom.rightContainer.appendChild(this.dom.shadowTopRight),this.dom.rightContainer.appendChild(this.dom.shadowBottomRight),this.on("rangechange",this.redraw.bind(this)),this.on("change",this.redraw.bind(this)),this.on("touch",this._onTouch.bind(this)),this.on("pinch",this._onPinch.bind(this)),this.on("dragstart",this._onDragStart.bind(this)),this.on("drag",this._onDrag.bind(this)),this.hammer=n(this.dom.root,{prevent_default:!0}),this.listeners={};var e=this,i=["touch","pinch","tap","doubletap","hold","dragstart","drag","dragend","mousewheel","DOMMouseScroll"];if(i.forEach(function(t){var i=function(){var i=[t].concat(Array.prototype.slice.call(arguments,0));e.emit.apply(e,i)};e.hammer.on(t,i),e.listeners[t]=i}),this.props={root:{},background:{},centerContainer:{},leftContainer:{},rightContainer:{},center:{},left:{},right:{},top:{},bottom:{},border:{},scrollTop:0,scrollTopMin:0},this.touch={},!t)throw new Error("No container provided");t.appendChild(this.dom.root)},s.prototype.destroy=function(){this.clear(),this.off(),this._stopAutoResize(),this.dom.root.parentNode&&this.dom.root.parentNode.removeChild(this.dom.root),this.dom=null;for(var t in this.listeners)this.listeners.hasOwnProperty(t)&&delete this.listeners[t];this.listeners=null,this.hammer=null,this.components.forEach(function(t){t.destroy()}),this.body=null},s.prototype.setCustomTime=function(t){if(!this.customTime)throw new Error("Cannot get custom time: Custom time bar is not enabled");this.customTime.setCustomTime(t)},s.prototype.getCustomTime=function(){if(!this.customTime)throw new Error("Cannot get custom time: Custom time bar is not enabled");return this.customTime.getCustomTime()},s.prototype.getVisibleItems=function(){return this.itemSet&&this.itemSet.getVisibleItems()||[]},s.prototype.clear=function(t){(!t||t.items)&&this.setItems(null),(!t||t.groups)&&this.setGroups(null),(!t||t.options)&&(this.components.forEach(function(t){t.setOptions(t.defaultOptions)}),this.setOptions(this.defaultOptions))},s.prototype.fit=function(){var t=this.getItemRange(),e=t.min,i=t.max;if(null!=e&&null!=i){var s=i.valueOf()-e.valueOf();0>=s&&(s=864e5),e=new Date(e.valueOf()-.05*s),i=new Date(i.valueOf()+.05*s)}(null!==e||null!==i)&&this.range.setRange(e,i)},s.prototype.setWindow=function(t,e){if(1==arguments.length){var i=arguments[0];this.range.setRange(i.start,i.end)}else this.range.setRange(t,e)},s.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},s.prototype.redraw=function(){var t=!1,e=this.options,i=this.props,s=this.dom;if(s){s.root.className="vis timeline root "+e.orientation,s.root.style.maxHeight=r.option.asSize(e.maxHeight,""),s.root.style.minHeight=r.option.asSize(e.minHeight,""),s.root.style.width=r.option.asSize(e.width,""),i.border.left=(s.centerContainer.offsetWidth-s.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(s.centerContainer.offsetHeight-s.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var o=s.root.offsetHeight-s.root.clientHeight,n=s.root.offsetWidth-s.root.clientWidth;i.center.height=s.center.offsetHeight,i.left.height=s.left.offsetHeight,i.right.height=s.right.offsetHeight,i.top.height=s.top.clientHeight||-i.border.top,i.bottom.height=s.bottom.clientHeight||-i.border.bottom;var a=Math.max(i.left.height,i.center.height,i.right.height),h=i.top.height+a+i.bottom.height+o+i.border.top+i.border.bottom;s.root.style.height=r.option.asSize(e.height,h+"px"),i.root.height=s.root.offsetHeight,i.background.height=i.root.height-o;var d=i.root.height-i.top.height-i.bottom.height-o;i.centerContainer.height=d,i.leftContainer.height=d,i.rightContainer.height=i.leftContainer.height,i.root.width=s.root.offsetWidth,i.background.width=i.root.width-n,i.left.width=s.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=s.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var l=i.root.width-i.left.width-i.right.width-n;i.center.width=l,i.centerContainer.width=l,i.top.width=l,i.bottom.width=l,s.background.style.height=i.background.height+"px",s.backgroundVertical.style.height=i.background.height+"px",s.backgroundHorizontal.style.height=i.centerContainer.height+"px",s.centerContainer.style.height=i.centerContainer.height+"px",s.leftContainer.style.height=i.leftContainer.height+"px",s.rightContainer.style.height=i.rightContainer.height+"px",s.background.style.width=i.background.width+"px",s.backgroundVertical.style.width=i.centerContainer.width+"px",s.backgroundHorizontal.style.width=i.background.width+"px",s.centerContainer.style.width=i.center.width+"px",s.top.style.width=i.top.width+"px",s.bottom.style.width=i.bottom.width+"px",s.background.style.left="0",s.background.style.top="0",s.backgroundVertical.style.left=i.left.width+"px",s.backgroundVertical.style.top="0",s.backgroundHorizontal.style.left="0",s.backgroundHorizontal.style.top=i.top.height+"px",s.centerContainer.style.left=i.left.width+"px",s.centerContainer.style.top=i.top.height+"px",s.leftContainer.style.left="0",s.leftContainer.style.top=i.top.height+"px",s.rightContainer.style.left=i.left.width+i.center.width+"px",s.rightContainer.style.top=i.top.height+"px",s.top.style.left=i.left.width+"px",s.top.style.top="0",s.bottom.style.left=i.left.width+"px",s.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop(); +var c=this.props.scrollTop;"bottom"==e.orientation&&(c+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),s.center.style.left="0",s.center.style.top=c+"px",s.left.style.left="0",s.left.style.top=c+"px",s.right.style.left="0",s.right.style.top=c+"px";var p=0==this.props.scrollTop?"hidden":"",u=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";s.shadowTop.style.visibility=p,s.shadowBottom.style.visibility=u,s.shadowTopLeft.style.visibility=p,s.shadowBottomLeft.style.visibility=u,s.shadowTopRight.style.visibility=p,s.shadowBottomRight.style.visibility=u,this.components.forEach(function(e){t=e.redraw()||t}),t&&this.redraw()}},s.prototype.repaint=function(){throw new Error("Function repaint is deprecated. Use redraw instead.")},s.prototype._toTime=function(t){var e=this.range.conversion(this.props.center.width);return new Date(t/e.scale+e.offset)},s.prototype._toGlobalTime=function(t){var e=this.range.conversion(this.props.root.width);return new Date(t/e.scale+e.offset)},s.prototype._toScreen=function(t){var e=this.range.conversion(this.props.center.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._toGlobalScreen=function(t){var e=this.range.conversion(this.props.root.width);return(t.valueOf()-e.offset)*e.scale},s.prototype._initAutoResize=function(){1==this.options.autoResize?this._startAutoResize():this._stopAutoResize()},s.prototype._startAutoResize=function(){var t=this;this._stopAutoResize(),this._onResize=function(){return 1!=t.options.autoResize?void t._stopAutoResize():void(t.dom.root&&(t.dom.root.clientWidth!=t.props.lastWidth||t.dom.root.clientHeight!=t.props.lastHeight)&&(t.props.lastWidth=t.dom.root.clientWidth,t.props.lastHeight=t.dom.root.clientHeight,t.emit("change")))},r.addEventListener(window,"resize",this._onResize),this.watchTimer=setInterval(this._onResize,1e3)},s.prototype._stopAutoResize=function(){this.watchTimer&&(clearInterval(this.watchTimer),this.watchTimer=void 0),r.removeEventListener(window,"resize",this._onResize),this._onResize=null},s.prototype._onTouch=function(){this.touch.allowDragging=!0},s.prototype._onPinch=function(){this.touch.allowDragging=!1},s.prototype._onDragStart=function(){this.touch.initialScrollTop=this.props.scrollTop},s.prototype._onDrag=function(t){if(this.touch.allowDragging){var e=t.gesture.deltaY,i=this._getScrollTop(),s=this._setScrollTop(this.touch.initialScrollTop+e);s!=i&&this.redraw()}},s.prototype._setScrollTop=function(t){return this.props.scrollTop=t,this._updateScrollTop(),this.props.scrollTop},s.prototype._updateScrollTop=function(){var t=Math.min(this.props.centerContainer.height-this.props.center.height,0);return t!=this.props.scrollTopMin&&("bottom"==this.options.orientation&&(this.props.scrollTop+=t-this.props.scrollTopMin),this.props.scrollTopMin=t),this.props.scrollTop>0&&(this.props.scrollTop=0),this.props.scrollTopd;){d++;var l=n.getCurrent(),c=this.body.util.toScreen(l),p=n.isMajor();this.options.showMinorLabels&&this._repaintMinorText(c,n.getLabelMinor(),t),p&&this.options.showMajorLabels?(c>0&&(void 0==h&&(h=c),this._repaintMajorText(c,n.getLabelMajor(),t)),this._repaintMajorLine(c,t)):this._repaintMinorLine(c,t),n.next()}if(this.options.showMajorLabels){var u=this.body.util.toTime(0),f=n.getLabelMajor(u),m=f.length*(this.props.majorCharWidth||10)+10;(void 0==h||h>m)&&this._repaintMajorText(0,f,t)}o.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},s.prototype._repaintMinorText=function(t,e,i){var s=this.dom.redundant.minorTexts.shift();if(!s){var o=document.createTextNode("");s=document.createElement("div"),s.appendChild(o),s.className="text minor",this.dom.foreground.appendChild(s)}this.dom.minorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?this.props.majorLabelHeight+"px":"0",s.style.left=t+"px"},s.prototype._repaintMajorText=function(t,e,i){var s=this.dom.redundant.majorTexts.shift();if(!s){var o=document.createTextNode(e);s=document.createElement("div"),s.className="text major",s.appendChild(o),this.dom.foreground.appendChild(s)}this.dom.majorTexts.push(s),s.childNodes[0].nodeValue=e,s.style.top="top"==i?"0":this.props.minorLabelHeight+"px",s.style.left=t+"px"},s.prototype._repaintMinorLine=function(t,e){var i=this.dom.redundant.minorLines.shift();i||(i=document.createElement("div"),i.className="grid vertical minor",this.dom.background.appendChild(i)),this.dom.minorLines.push(i);var s=this.props;i.style.top="top"==e?s.majorLabelHeight+"px":this.body.domProps.top.height+"px",i.style.height=s.minorLineHeight+"px",i.style.left=t-s.minorLineWidth/2+"px"},s.prototype._repaintMajorLine=function(t,e){var i=this.dom.redundant.majorLines.shift();i||(i=document.createElement("DIV"),i.className="grid vertical major",this.dom.background.appendChild(i)),this.dom.majorLines.push(i);var s=this.props;i.style.top="top"==e?"0":this.body.domProps.top.height+"px",i.style.left=t-s.majorLineWidth/2+"px",i.style.height=s.majorLineHeight+"px"},s.prototype._calculateCharSize=function(){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,this.dom.measureCharMajor||(this.dom.measureCharMajor=document.createElement("DIV"),this.dom.measureCharMajor.className="text minor 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},s.prototype.snap=function(t){return this.step.snap(t)},t.exports=s},function(t,e,i){function s(t,e,i){this.current=new Date,this._start=new Date,this._end=new Date,this.autoScale=!0,this.scale=s.SCALE.DAY,this.step=1,this.setRange(t,e,i)}var o=i(2);s.SCALE={MILLISECOND:1,SECOND:2,MINUTE:3,HOUR:4,DAY:5,WEEKDAY:6,MONTH:7,YEAR:8},s.prototype.setRange=function(t,e,i){if(!(t instanceof Date&&e instanceof Date))throw"No legal start or end date in method setRange";this._start=void 0!=t?new Date(t.valueOf()):new Date,this._end=void 0!=e?new Date(e.valueOf()):new Date,this.autoScale&&this.setMinimumStep(i)},s.prototype.first=function(){this.current=new Date(this._start.valueOf()),this.roundToMinor()},s.prototype.roundToMinor=function(){switch(this.scale){case s.SCALE.YEAR:this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case s.SCALE.MONTH:this.current.setDate(1);case s.SCALE.DAY:case s.SCALE.WEEKDAY:this.current.setHours(0);case s.SCALE.HOUR:this.current.setMinutes(0);case s.SCALE.MINUTE:this.current.setSeconds(0);case s.SCALE.SECOND:this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},s.prototype.hasNext=function(){return this.current.valueOf()<=this._end.valueOf()},s.prototype.next=function(){var t=this.current.valueOf();if(this.current.getMonth()<6)switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current=new Date(this.current.valueOf()+1e3*this.step);break;case s.SCALE.MINUTE:this.current=new Date(this.current.valueOf()+1e3*this.step*60);break;case s.SCALE.HOUR:this.current=new Date(this.current.valueOf()+1e3*this.step*60*60);var e=this.current.getHours();this.current.setHours(e-e%this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case s.SCALE.MILLISECOND:this.current=new Date(this.current.valueOf()+this.step);break;case s.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()+this.step);break;case s.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()+this.step);break;case s.SCALE.HOUR:this.current.setHours(this.current.getHours()+this.step);break;case s.SCALE.WEEKDAY:case s.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case s.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case s.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case s.SCALE.MILLISECOND:this.current.getMilliseconds()0&&(this.step=e),this.autoScale=!1},s.prototype.setAutoScale=function(t){this.autoScale=t},s.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,r=6e4,a=1e3,h=1;1e3*e>t&&(this.scale=s.SCALE.YEAR,this.step=1e3),500*e>t&&(this.scale=s.SCALE.YEAR,this.step=500),100*e>t&&(this.scale=s.SCALE.YEAR,this.step=100),50*e>t&&(this.scale=s.SCALE.YEAR,this.step=50),10*e>t&&(this.scale=s.SCALE.YEAR,this.step=10),5*e>t&&(this.scale=s.SCALE.YEAR,this.step=5),e>t&&(this.scale=s.SCALE.YEAR,this.step=1),3*i>t&&(this.scale=s.SCALE.MONTH,this.step=3),i>t&&(this.scale=s.SCALE.MONTH,this.step=1),5*o>t&&(this.scale=s.SCALE.DAY,this.step=5),2*o>t&&(this.scale=s.SCALE.DAY,this.step=2),o>t&&(this.scale=s.SCALE.DAY,this.step=1),o/2>t&&(this.scale=s.SCALE.WEEKDAY,this.step=1),4*n>t&&(this.scale=s.SCALE.HOUR,this.step=4),n>t&&(this.scale=s.SCALE.HOUR,this.step=1),15*r>t&&(this.scale=s.SCALE.MINUTE,this.step=15),10*r>t&&(this.scale=s.SCALE.MINUTE,this.step=10),5*r>t&&(this.scale=s.SCALE.MINUTE,this.step=5),r>t&&(this.scale=s.SCALE.MINUTE,this.step=1),15*a>t&&(this.scale=s.SCALE.SECOND,this.step=15),10*a>t&&(this.scale=s.SCALE.SECOND,this.step=10),5*a>t&&(this.scale=s.SCALE.SECOND,this.step=5),a>t&&(this.scale=s.SCALE.SECOND,this.step=1),200*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=200),100*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=100),50*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=50),10*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=10),5*h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=5),h>t&&(this.scale=s.SCALE.MILLISECOND,this.step=1)}},s.prototype.snap=function(t){var e=new Date(t.valueOf());if(this.scale==s.SCALE.YEAR){var i=e.getFullYear()+Math.round(e.getMonth()/12);e.setFullYear(Math.round(i/this.step)*this.step),e.setMonth(0),e.setDate(0),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MONTH)e.getDate()>15?(e.setDate(1),e.setMonth(e.getMonth()+1)):e.setDate(1),e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0);else if(this.scale==s.SCALE.DAY){switch(this.step){case 5:case 2:e.setHours(24*Math.round(e.getHours()/24));break;default:e.setHours(12*Math.round(e.getHours()/12))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.WEEKDAY){switch(this.step){case 5:case 2:e.setHours(12*Math.round(e.getHours()/12));break;default:e.setHours(6*Math.round(e.getHours()/6))}e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.HOUR){switch(this.step){case 4:e.setMinutes(60*Math.round(e.getMinutes()/60));break;default:e.setMinutes(30*Math.round(e.getMinutes()/30))}e.setSeconds(0),e.setMilliseconds(0)}else if(this.scale==s.SCALE.MINUTE){switch(this.step){case 15:case 10:e.setMinutes(5*Math.round(e.getMinutes()/5)),e.setSeconds(0);break;case 5:e.setSeconds(60*Math.round(e.getSeconds()/60));break;default:e.setSeconds(30*Math.round(e.getSeconds()/30))}e.setMilliseconds(0)}else if(this.scale==s.SCALE.SECOND)switch(this.step){case 15:case 10:e.setSeconds(5*Math.round(e.getSeconds()/5)),e.setMilliseconds(0);break;case 5:e.setMilliseconds(1e3*Math.round(e.getMilliseconds()/1e3));break;default:e.setMilliseconds(500*Math.round(e.getMilliseconds()/500))}else if(this.scale==s.SCALE.MILLISECOND){var o=this.step>5?this.step/2:1;e.setMilliseconds(Math.round(e.getMilliseconds()/o)*o)}return e},s.prototype.isMajor=function(){switch(this.scale){case s.SCALE.MILLISECOND:return 0==this.current.getMilliseconds();case s.SCALE.SECOND:return 0==this.current.getSeconds();case s.SCALE.MINUTE:return 0==this.current.getHours()&&0==this.current.getMinutes();case s.SCALE.HOUR:return 0==this.current.getHours();case s.SCALE.WEEKDAY:case s.SCALE.DAY:return 1==this.current.getDate();case s.SCALE.MONTH:return 0==this.current.getMonth();case s.SCALE.YEAR:return!1;default:return!1}},s.prototype.getLabelMinor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("SSS");case s.SCALE.SECOND:return o(t).format("s");case s.SCALE.MINUTE:return o(t).format("HH:mm");case s.SCALE.HOUR:return o(t).format("HH:mm");case s.SCALE.WEEKDAY:return o(t).format("ddd D");case s.SCALE.DAY:return o(t).format("D");case s.SCALE.MONTH:return o(t).format("MMM");case s.SCALE.YEAR:return o(t).format("YYYY");default:return""}},s.prototype.getLabelMajor=function(t){switch(void 0==t&&(t=this.current),this.scale){case s.SCALE.MILLISECOND:return o(t).format("HH:mm:ss");case s.SCALE.SECOND:return o(t).format("D MMMM HH:mm");case s.SCALE.MINUTE:case s.SCALE.HOUR:return o(t).format("ddd D MMMM");case s.SCALE.WEEKDAY:case s.SCALE.DAY:return o(t).format("MMMM YYYY");case s.SCALE.MONTH:return o(t).format("YYYY");case s.SCALE.YEAR:return"";default:return""}},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCurrentTime:!0},this.options=o.extend({},this.defaultOptions),this._create(),this.setOptions(e)}var o=i(1),n=i(22);s.prototype=new n,s.prototype._create=function(){var t=document.createElement("div");t.className="currenttime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t},s.prototype.destroy=function(){this.options.showCurrentTime=!1,this.redraw(),this.body=null},s.prototype.setOptions=function(t){t&&o.selectiveExtend(["showCurrentTime"],this.options,t)},s.prototype.redraw=function(){if(this.options.showCurrentTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar),this.start());var e=new Date,i=this.body.util.toScreen(e);this.bar.style.left=i+"px",this.bar.title="Current time: "+e}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),this.stop();return!1},s.prototype.start=function(){function t(){e.stop();var i=e.body.range.conversion(e.body.domProps.center.width).scale,s=1/i/10;30>s&&(s=30),s>1e3&&(s=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,s)}var e=this;t()},s.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={showCustomTime:!1},this.options=n.extend({},this.defaultOptions),this.customTime=new Date,this.eventParams={},this._create(),this.setOptions(e)}var o=i(18),n=i(1),r=i(22);s.prototype=new r,s.prototype.setOptions=function(t){t&&n.selectiveExtend(["showCustomTime"],this.options,t)},s.prototype._create=function(){var t=document.createElement("div");t.className="customtime",t.style.position="absolute",t.style.top="0px",t.style.height="100%",this.bar=t;var e=document.createElement("div");e.style.position="relative",e.style.top="0px",e.style.left="-10px",e.style.height="100%",e.style.width="20px",t.appendChild(e),this.hammer=o(t,{prevent_default:!0}),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this))},s.prototype.destroy=function(){this.options.showCustomTime=!1,this.redraw(),this.hammer.enable(!1),this.hammer=null,this.body=null},s.prototype.redraw=function(){if(this.options.showCustomTime){var t=this.body.dom.backgroundVertical;this.bar.parentNode!=t&&(this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar),t.appendChild(this.bar));var e=this.body.util.toScreen(this.customTime);this.bar.style.left=e+"px",this.bar.title="Time: "+this.customTime}else this.bar.parentNode&&this.bar.parentNode.removeChild(this.bar);return!1},s.prototype.setCustomTime=function(t){this.customTime=new Date(t.valueOf()),this.redraw()},s.prototype.getCustomTime=function(){return new Date(this.customTime.valueOf())},s.prototype._onDragStart=function(t){this.eventParams.dragging=!0,this.eventParams.customTime=this.customTime,t.stopPropagation(),t.preventDefault()},s.prototype._onDrag=function(t){if(this.eventParams.dragging){var e=t.gesture.deltaX,i=this.body.util.toScreen(this.eventParams.customTime)+e,s=this.body.util.toTime(i);this.setCustomTime(s),this.body.emitter.emit("timechange",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault()}},s.prototype._onDragEnd=function(t){this.eventParams.dragging&&(this.body.emitter.emit("timechanged",{time:new Date(this.customTime.valueOf())}),t.stopPropagation(),t.preventDefault())},t.exports=s},function(t,e,i){function s(t,e){this.body=t,this.defaultOptions={type:null,orientation:"bottom",align:"center",stack:!0,groupOrder:null,selectable:!0,editable:{updateTime:!1,updateGroup:!1,add:!1,remove:!1},onAdd:function(t,e){e(t)},onUpdate:function(t,e){e(t)},onMove:function(t,e){e(t)},onRemove:function(t,e){e(t)},margin:{item:{horizontal:10,vertical:10},axis:20},padding:5},this.options=r.extend({},this.defaultOptions),this.itemOptions={type:{start:"Date",end:"Date"}},this.conversion={toScreen:t.util.toScreen,toTime:t.util.toTime},this.dom={},this.props={},this.hammer=null;var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.groups={},this.groupIds=[],this.selection=[],this.stackDirty=!0,this.touchParams={},this._create(),this.setOptions(e)}function o(t,e){if(e&&e.groupId!=t.data.group){var i=t.parent;i.remove(t),i.order(),e.add(t),e.order(),t.data.group=e.groupId}}var n=i(18),r=i(1),a=i(7),h=i(8),d=i(22),l=i(29),c=i(33),p=i(34),u=i(31),f="__ungrouped__";s.prototype=new d,s.types={box:c,range:u,point:p},s.prototype._create=function(){var t=document.createElement("div");t.className="itemset",t["timeline-itemset"]=this,this.dom.frame=t;var e=document.createElement("div");e.className="background",t.appendChild(e),this.dom.background=e;var i=document.createElement("div");i.className="foreground",t.appendChild(i),this.dom.foreground=i;var s=document.createElement("div");s.className="axis",this.dom.axis=s;var o=document.createElement("div");o.className="labelset",this.dom.labelSet=o,this._updateUngrouped(),this.hammer=n(this.body.dom.centerContainer,{prevent_default:!0}),this.hammer.on("touch",this._onTouch.bind(this)),this.hammer.on("dragstart",this._onDragStart.bind(this)),this.hammer.on("drag",this._onDrag.bind(this)),this.hammer.on("dragend",this._onDragEnd.bind(this)),this.hammer.on("tap",this._onSelectItem.bind(this)),this.hammer.on("hold",this._onMultiSelectItem.bind(this)),this.hammer.on("doubletap",this._onAddItem.bind(this)),this.show()},s.prototype.setOptions=function(t){if(t){var e=["type","align","orientation","padding","stack","selectable","groupOrder"];r.selectiveExtend(e,this.options,t),"margin"in t&&("number"==typeof t.margin?(this.options.margin.axis=t.margin,this.options.margin.item.horizontal=t.margin,this.options.margin.item.vertical=t.margin):"object"==typeof t.margin&&(r.selectiveExtend(["axis"],this.options.margin,t.margin),"item"in t.margin&&("number"==typeof t.margin.item?(this.options.margin.item.horizontal=t.margin.item,this.options.margin.item.vertical=t.margin.item):"object"==typeof t.margin.item&&r.selectiveExtend(["horizontal","vertical"],this.options.margin.item,t.margin.item)))),"editable"in t&&("boolean"==typeof t.editable?(this.options.editable.updateTime=t.editable,this.options.editable.updateGroup=t.editable,this.options.editable.add=t.editable,this.options.editable.remove=t.editable):"object"==typeof t.editable&&r.selectiveExtend(["updateTime","updateGroup","add","remove"],this.options.editable,t.editable));var i=function(e){if(e in t){var i=t[e];if(!(i instanceof Function))throw new Error("option "+e+" must be a function "+e+"(item, callback)");this.options[e]=i}}.bind(this);["onAdd","onUpdate","onRemove","onMove"].forEach(i),this.markDirty()}},s.prototype.markDirty=function(){this.groupIds=[],this.stackDirty=!0},s.prototype.destroy=function(){this.hide(),this.setItems(null),this.setGroups(null),this.hammer=null,this.body=null,this.conversion=null},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame),this.dom.axis.parentNode&&this.dom.axis.parentNode.removeChild(this.dom.axis),this.dom.labelSet.parentNode&&this.dom.labelSet.parentNode.removeChild(this.dom.labelSet)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame),this.dom.axis.parentNode||this.body.dom.backgroundVertical.appendChild(this.dom.axis),this.dom.labelSet.parentNode||this.body.dom.left.appendChild(this.dom.labelSet)},s.prototype.setSelection=function(t){var e,i,s,o;if(t){if(!Array.isArray(t))throw new TypeError("Array expected");for(e=0,i=this.selection.length;i>e;e++)s=this.selection[e],o=this.items[s],o&&o.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)s=t[e],o=this.items[s],o&&(this.selection.push(s),o.select())}},s.prototype.getSelection=function(){return this.selection.concat([])},s.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),s=[];for(var o in this.groups)if(this.groups.hasOwnProperty(o))for(var n=this.groups[o],r=n.visibleItems,a=0;ae&&s.push(h.id)}return s},s.prototype._deselect=function(t){for(var e=this.selection,i=0,s=e.length;s>i;i++)if(e[i]==t){e.splice(i,1);break}},s.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=r.option.asSize,s=this.options,o=s.orientation,n=!1,a=this.dom.frame,h=s.editable.updateTime||s.editable.updateGroup;a.className="itemset"+(h?" editable":""),n=this._orderGroups()||n;var d=e.end-e.start,l=d!=this.lastVisibleInterval||this.props.width!=this.props.lastWidth;l&&(this.stackDirty=!0),this.lastVisibleInterval=d,this.props.lastWidth=this.props.width;var c=this.stackDirty,p=this._firstGroup(),u={item:t.item,axis:t.axis},f={item:t.item,axis:t.item.vertical/2},m=0,g=t.axis+t.item.vertical;return r.forEach(this.groups,function(t){var i=t==p?u:f,s=t.redraw(e,i,c);n=s||n,m+=t.height}),m=Math.max(m,g),this.stackDirty=!1,a.style.height=i(m),this.props.top=a.offsetTop,this.props.left=a.offsetLeft,this.props.width=a.offsetWidth,this.props.height=m,this.dom.axis.style.top=i("top"==o?this.body.domProps.top.height+this.body.domProps.border.top:this.body.domProps.top.height+this.body.domProps.centerContainer.height),this.dom.axis.style.left=this.body.domProps.border.left+"px",n=this._isResized()||n},s.prototype._firstGroup=function(){var t="top"==this.options.orientation?0:this.groupIds.length-1,e=this.groupIds[t],i=this.groups[e]||this.groups[f];return i||null},s.prototype._updateUngrouped=function(){var t=this.groups[f];if(this.groupsData)t&&(t.hide(),delete this.groups[f]);else if(!t){var e=null,i=null;t=new l(e,i,this),this.groups[f]=t;for(var s in this.items)this.items.hasOwnProperty(s)&&t.add(this.items[s]);t.show()}},s.prototype.getLabelSet=function(){return this.dom.labelSet},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(r.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var o=this.id;r.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,o)}),e=this.itemsData.getIds(),this._onAdd(e),this._updateUngrouped()}},s.prototype.getItems=function(){return this.itemsData},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(r.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof a||t instanceof h))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;r.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._updateUngrouped(),this._order(),this.body.emitter.emit("change")},s.prototype.getGroups=function(){return this.groupsData},s.prototype.removeItem=function(t){var e=this.itemsData.get(t),i=this.itemsData.getDataSet();e&&this.options.onRemove(e,function(e){e&&i.remove(t)})},s.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i=e.itemsData.get(t,e.itemOptions),o=e.items[t],n=i.type||e.options.type||(i.end?"range":"box"),r=s.types[n];if(o&&(r&&o instanceof r?e._updateItem(o,i):(e._removeItem(o),o=null)),!o){if(!r)throw new TypeError("rangeoverflow"==n?'Item type "rangeoverflow" is deprecated. Use css styling instead: .vis.timeline .item.range .content {overflow: visible;}':'Unknown item type "'+n+'"');o=new r(i,e.conversion,e.options),o.id=t,e._addItem(o)}}),this._order(),this.stackDirty=!0,this.body.emitter.emit("change")},s.prototype._onAdd=s.prototype._onUpdate,s.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var s=i.items[t];s&&(e++,i._removeItem(s))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change"))},s.prototype._order=function(){r.forEach(this.groups,function(t){t.order()})},s.prototype._onUpdateGroups=function(t){this._onAddGroups(t)},s.prototype._onAddGroups=function(t){var e=this;t.forEach(function(t){var i=e.groupsData.get(t),s=e.groups[t];if(s)s.setData(i);else{if(t==f)throw new Error("Illegal group id. "+t+" is a reserved id.");var o=Object.create(e.options);r.extend(o,{height:null}),s=new l(t,i,e),e.groups[t]=s;for(var n in e.items)if(e.items.hasOwnProperty(n)){var a=e.items[n];a.data.group==t&&s.add(a)}s.order(),s.show()}}),this.body.emitter.emit("change")},s.prototype._onRemoveGroups=function(t){var e=this.groups;t.forEach(function(t){var i=e[t];i&&(i.hide(),delete e[t])}),this.markDirty(),this.body.emitter.emit("change")},s.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!r.equalArray(t,this.groupIds);if(e){var i=this.groups;t.forEach(function(t){i[t].hide()}),t.forEach(function(t){i[t].show()}),this.groupIds=t}return e}return!1},s.prototype._addItem=function(t){this.items[t.id]=t;var e=this.groupsData?t.data.group:f,i=this.groups[e];i&&i.add(t)},s.prototype._updateItem=function(t,e){var i=t.data.group;if(t.data=e,t.displayed&&t.redraw(),i!=t.data.group){var s=this.groups[i];s&&s.remove(t);var o=this.groupsData?t.data.group:f,n=this.groups[o];n&&n.add(t)}},s.prototype._removeItem=function(t){t.hide(),delete this.items[t.id];var e=this.selection.indexOf(t.id);-1!=e&&this.selection.splice(e,1);var i=this.groupsData?t.data.group:f,s=this.groups[i];s&&s.remove(t)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0||o.length>0)&&this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}},s.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.body.util.snap||null,o=s.itemFromTarget(t);if(o){var n=e.itemsData.get(o.id);this.options.onUpdate(n,function(t){t&&e.itemsData.update(t)})}else{var a=r.getAbsoluteLeft(this.dom.frame),h=t.gesture.center.pageX-a,d=this.body.util.toTime(h),l={start:i?i(d):d,content:"new item"};if("range"===this.options.type){var c=this.body.util.toTime(h+this.props.width/5);l.end=i?i(c):c}l[this.itemsData.fieldId]=r.randomUUID();var p=s.groupFromTarget(t);p&&(l.group=p.groupId),this.options.onAdd(l,function(t){t&&e.itemsData.add(l)})}}},s.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e,i=s.itemFromTarget(t);if(i){e=this.getSelection();var o=e.indexOf(i.id);-1==o?e.push(i.id):e.splice(o,1),this.setSelection(e),this.body.emitter.emit("select",{items:this.getSelection()}),t.stopPropagation()}}},s.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},s.groupFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-group"))return e["timeline-group"];e=e.parentNode}return null},s.itemSetFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-itemset"))return e["timeline-itemset"];e=e.parentNode}return null},t.exports=s},function(t,e,i){function s(t,e,i){this.groupId=t,this.itemSet=i,this.dom={},this.props={label:{width:0,height:0}},this.className=null,this.items={},this.visibleItems=[],this.orderedItems={byStart:[],byEnd:[]},this._create(),this.setData(e)}var o=i(1),n=i(30),r=i(31);s.prototype._create=function(){var t=document.createElement("div");t.className="vlabel",this.dom.label=t;var e=document.createElement("div");e.className="inner",t.appendChild(e),this.dom.inner=e;var i=document.createElement("div");i.className="group",i["timeline-group"]=this,this.dom.foreground=i,this.dom.background=document.createElement("div"),this.dom.background.className="group",this.dom.axis=document.createElement("div"),this.dom.axis.className="group",this.dom.marker=document.createElement("div"),this.dom.marker.style.visibility="hidden",this.dom.marker.innerHTML="?",this.dom.background.appendChild(this.dom.marker)},s.prototype.setData=function(t){var e=t&&t.content;e instanceof Element?this.dom.inner.appendChild(e):this.dom.inner.innerHTML=void 0!==e&&null!==e?e:this.groupId||"",this.dom.label.title=t&&t.title||"",this.dom.inner.firstChild?o.removeClassName(this.dom.inner,"hidden"):o.addClassName(this.dom.inner,"hidden");var i=t&&t.className||null;i!=this.className&&(this.className&&(o.removeClassName(this.dom.label,i),o.removeClassName(this.dom.foreground,i),o.removeClassName(this.dom.background,i),o.removeClassName(this.dom.axis,i)),o.addClassName(this.dom.label,i),o.addClassName(this.dom.foreground,i),o.addClassName(this.dom.background,i),o.addClassName(this.dom.axis,i))},s.prototype.getLabelWidth=function(){return this.props.label.width},s.prototype.redraw=function(t,e,i){var s=!1;this.visibleItems=this._updateVisibleItems(this.orderedItems,this.visibleItems,t);var r=this.dom.marker.clientHeight;r!=this.lastMarkerHeight&&(this.lastMarkerHeight=r,o.forEach(this.items,function(t){t.dirty=!0,t.displayed&&t.redraw()}),i=!0),this.itemSet.options.stack?n.stack(this.visibleItems,e,i):n.nostack(this.visibleItems,e);var a,h=this.visibleItems;if(h.length){var d=h[0].top,l=h[0].top+h[0].height;if(o.forEach(h,function(t){d=Math.min(d,t.top),l=Math.max(l,t.top+t.height)}),d>e.axis){var c=d-e.axis;l-=c,o.forEach(h,function(t){t.top-=c})}a=l+e.item.vertical/2}else a=e.axis+e.item.vertical;a=Math.max(a,this.props.label.height);var p=this.dom.foreground;this.top=p.offsetTop,this.left=p.offsetLeft,this.width=p.offsetWidth,s=o.updateProperty(this,"height",a)||s,s=o.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||s,s=o.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||s,this.dom.background.style.height=a+"px",this.dom.foreground.style.height=a+"px",this.dom.label.style.height=a+"px";for(var u=0,f=this.visibleItems.length;f>u;u++){var m=this.visibleItems[u];m.repositionY()}return s},s.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},s.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var s=this.dom.axis;s.parentNode&&s.parentNode.removeChild(s)},s.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},s.prototype.remove=function(t){delete this.items[t.id],t.setParent(this.itemSet);var e=this.visibleItems.indexOf(t);-1!=e&&this.visibleItems.splice(e,1)},s.prototype.removeFromDataSet=function(t){this.itemSet.removeItem(t.id)},s.prototype.order=function(){var t=o.toArray(this.items);this.orderedItems.byStart=t,this.orderedItems.byEnd=this._constructByEndArray(t),n.orderByStart(this.orderedItems.byStart),n.orderByEnd(this.orderedItems.byEnd)},s.prototype._constructByEndArray=function(t){for(var e=[],i=0;i0)for(n=0;n=0&&!this._checkIfInvisible(t.byStart[n],r,i);n--);for(n=s+1;n=0&&!this._checkIfInvisible(t.byEnd[n],r,i);n--);for(n=a+1;no;o++)t[o].top=null;for(o=0,n=t.length;n>o;o++){var r=t[o];if(null===r.top){r.top=i.axis;do{for(var a=null,h=0,d=t.length;d>h;h++){var l=t[h];if(null!==l.top&&l!==r&&e.collision(r,l,i.item)){a=l;break}}null!=a&&(r.top=a.top+a.height+i.item.vertical)}while(a)}}},e.nostack=function(t,e){var i,s;for(i=0,s=t.length;s>i;i++)t[i].top=e.axis},e.collision=function(t,e,s){return t.left-s.horizontal+ie.left&&t.top-s.vertical+ie.top}},function(t,e,i){function s(t,e,i){if(this.props={content:{width:0}},this.overflow=!1,t){if(void 0==t.start)throw new Error('Property "start" missing in item '+t.id);if(void 0==t.end)throw new Error('Property "end" missing in item '+t.id)}n.call(this,t,e,i)}var o=i(18),n=i(32);s.prototype=new n(null,null,null),s.prototype.baseClassName="item range",s.prototype.isVisible=function(t){return this.data.startt.start},s.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.content=document.createElement("div"),t.content.className="content",t.box.appendChild(t.content),t.box["timeline-item"]=this),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw time axis: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.data.content!=this.content){if(this.content=this.data.content,this.content instanceof Element)t.content.innerHTML="",t.content.appendChild(this.content);else{if(void 0==this.data.content)throw new Error('Property "content" missing in item '+this.data.id);t.content.innerHTML=this.content}this.dirty=!0}this.data.title!=this.title&&(t.box.title=this.data.title,this.title=this.data.title);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" selected":"");this.className!=i&&(this.className=i,t.box.className=this.baseClassName+i,this.dirty=!0),this.dirty&&(this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dirty=!1),this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},s.prototype.show=function(){this.displayed||this.redraw()},s.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.top=null,this.left=null,this.displayed=!1}},s.prototype.repositionX=function(){var t,e=this.props,i=this.parent.width,s=this.conversion.toScreen(this.data.start),o=this.conversion.toScreen(this.data.end),n=this.options.padding;-i>s&&(s=-i),o>2*i&&(o=2*i);var r=Math.max(o-s,1);this.overflow?(t=Math.max(-s,0),this.left=s,this.width=r+this.props.content.width):(t=0>s?Math.min(-s,o-s-e.content.width-2*n):0,this.left=s,this.width=r),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.dom.content.style.left=t+"px"},s.prototype.repositionY=function(){var t=this.options.orientation,e=this.dom.box;e.style.top="top"==t?this.top+"px":this.parent.height-this.top-this.height+"px"},s.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="drag-left",t.dragLeftItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},s.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="drag-right",t.dragRightItem=this,o(t,{preventDefault:!0}).on("drag",function(){}),this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null)},t.exports=s},function(t,e,i){function s(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.dirty=!0,this.top=null,this.left=null,this.width=null,this.height=null}var o=i(18);s.prototype.select=function(){this.selected=!0,this.displayed&&this.redraw()},s.prototype.unselect=function(){this.selected=!1,this.displayed&&this.redraw()},s.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},s.prototype.isVisible=function(){return!1},s.prototype.show=function(){return!1},s.prototype.hide=function(){return!1},s.prototype.redraw=function(){},s.prototype.repositionX=function(){},s.prototype.repositionY=function(){},s.prototype._repaintDeleteButton=function(t){if(this.selected&&this.options.editable.remove&&!this.dom.deleteButton){var e=this,i=document.createElement("div");i.className="delete",i.title="Delete this item",o(i,{preventDefault:!0}).on("tap",function(t){e.parent.removeFromDataSet(e),t.stopPropagation()}),t.appendChild(i),this.dom.deleteButton=i}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},t.exports=s},function(t,e,i){function s(t,e,i){if(this.props={dot:{width:0,height:0},line:{width:0,height:0}},t&&void 0==t.start)throw new Error('Property "start" missing in item '+t);o.call(this,t,e,i)}var o=i(32);s.prototype=new o(null,null,null),s.prototype.isVisible=function(t){var e=(t.end-t.start)/4;return this.data.start>t.start-e&&this.data.startt.start-e&&this.data.startr?r:t,e=null==e?r:r>e?r:e}return{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},t.exports=s},function(t,e,i){function s(t,e){this.id=o.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,allowOverlap:!0,align:"center"},catmullRom:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{showMinorLabels:!0,showMajorLabels:!0,icons:!1,width:"40px",visible:!0,min:void 0,max:void 0},legend:{enabled:!1,icons:!0,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-right"}}},this.options=o.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={};var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e){i._onAdd(e.items)},update:function(t,e){i._onUpdate(e.items)},remove:function(t,e){i._onRemove(e.items)}},this.groupListeners={add:function(t,e){i._onAddGroups(e.items)},update:function(t,e){i._onUpdateGroups(e.items)},remove:function(t,e){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.body.emitter.on("rangechange",function(){if(0!=i.lastStart){var t=i.body.range.start-i.lastStart,e=i.body.range.end-i.body.range.start;if(0!=i.width){var s=i.width/e,o=t*s;i.svg.style.left=-i.width-o+"px"}}}),this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=o.option.asSize(-i.width),i._updateGraph.apply(i)}),this._create(),this.body.emitter.emit("change")}var o=i(1),n=i(6),r=i(7),a=i(8),h=i(22),d=i(37),l=i(39),c=i(40),p="__ungrouped__";s.prototype=new h,s.prototype._create=function(){var t=document.createElement("div");t.className="LineGraph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new d(this.body,this.options.dataAxis,this.svg),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg),delete this.options.dataAxis.orientation,this.legendLeft=new c(this.body,this.options.legend,"left"),this.legendRight=new c(this.body,this.options.legend,"right"),this.show()},s.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort"];o.selectiveDeepExtend(e,this.options,t),o.mergeOptions(this.options,t,"catmullRom"),o.mergeOptions(this.options,t,"drawPoints"),o.mergeOptions(this.options,t,"shaded"),o.mergeOptions(this.options,t,"legend"),t.catmullRom&&"object"==typeof t.catmullRom&&t.catmullRom.parametrization&&("uniform"==t.catmullRom.parametrization?this.options.catmullRom.alpha=0:"chordal"==t.catmullRom.parametrization?this.options.catmullRom.alpha=1:(this.options.catmullRom.parametrization="centripetal",this.options.catmullRom.alpha=.5)),this.yAxisLeft&&void 0!==t.dataAxis&&(this.yAxisLeft.setOptions(this.options.dataAxis),this.yAxisRight.setOptions(this.options.dataAxis)),this.legendLeft&&void 0!==t.legend&&(this.legendLeft.setOptions(this.options.legend),this.legendRight.setOptions(this.options.legend)),this.groups.hasOwnProperty(p)&&this.groups[p].setOptions(t)}this.dom.frame&&this._updateGraph()},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setItems=function(t){var e,i=this,s=this.itemsData;if(t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(s&&(o.forEach(this.itemListeners,function(t,e){s.off(e,t)}),e=s.getIds(),this._onRemove(e)),this.itemsData){var n=this.id;o.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,n)}),e=this.itemsData.getIds(),this._onAdd(e)}this._updateUngrouped(),this._updateGraph(),this.redraw()},s.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(o.forEach(this.groupListeners,function(t,e){i.groupsData.unsubscribe(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var s=this.id;o.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,s)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._onUpdate()},s.prototype._onUpdate=function(){this._updateUngrouped(),this._updateAllGroupData(),this._updateGraph(),this.redraw()},s.prototype._onAdd=function(t){this._onUpdate(t)},s.prototype._onRemove=function(t){this._onUpdate(t)},s.prototype._onUpdateGroups=function(t){for(var e=0;e0){for(s=0;su){e.push(g);break}e.push(g)}}else for(var m=0;mp&&g.x0?(i=this._preprocessData(e,t),h.push({min:i.min,max:i.max}),r.push(i.data)):(h.push({}),r.push([]))}else h.push({}),r.push([]);if(d=this._updateYAxis(l,h),1==d)return n.cleanupElements(this.svgElements),void this.body.emitter.emit("change");for(s=0;s0){for(var p=0;pi?i:a,d=s>d?s:d):(r=!0,h=h>i?i:h,l=s>l?s:l))}1==n&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}return o=this._toggleAxisVisiblity(n,this.yAxisLeft)||o,o=this._toggleAxisVisiblity(r,this.yAxisRight)||o,1==r&&1==n?(this.yAxisLeft.drawIcons=!0,this.yAxisRight.drawIcons=!0):(this.yAxisLeft.drawIcons=!1,this.yAxisRight.drawIcons=!1),this.yAxisRight.master=!n,0==this.yAxisRight.master?(this.yAxisLeft.lineOffset=1==r?this.yAxisRight.width:0,o=this.yAxisLeft.redraw()||o,this.yAxisRight.stepPixelsForced=this.yAxisLeft.stepPixels,o=this.yAxisRight.redraw()||o):o=this.yAxisRight.redraw()||o,o},s.prototype._toggleAxisVisiblity=function(t,e){var i=!1;return 0==t?e.dom.frame.parentNode&&(e.hide(),i=!0):e.dom.frame.parentNode||(e.show(),i=!0),i},s.prototype._drawBarGraph=function(t,e){if(null!=t&&t.length>0){for(var i,s=.1*e.options.barChart.width,o=0,r={},a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-t[a].x))),0==i&&(void 0===r[t[a].x]&&(r[t[a].x]={amount:0,resolved:0}),r[t[a].x].amount+=1);for(var h,a=0;a0&&(i=Math.min(i,Math.abs(t[a-1].x-h)));var d=this._getSafeDrawData(i,e,s)}else{var l=a+(r[h].amount-r[h].resolved),c=a-(r[h].resolved+1);l0&&(i=Math.min(i,Math.abs(t[c].x-h)));var d=this._getSafeDrawData(i,e,s);r[h].resolved+=1,0==e.options.barChart.allowOverlap&&(d.width=d.width/r[h].amount,d.offset+=r[h].resolved*d.width-.5*d.width*(r[h].amount+1),"left"==e.options.barChart.align?o-=.5*d.width:"right"==e.options.barChart.align&&(o+=.5*d.width))}n.drawBar(t[a].x+d.offset,t[a].y,d.width,e.zeroPosition-t[a].y,e.className+" bar",this.svgElements,this.svg),1==e.options.drawPoints.enabled&&n.drawPoint(t[a].x+d.offset,t[a].y,e,this.svgElements,this.svg)}}},s.prototype._getSafeDrawData=function(t,e,i){var s,o;return t0?(s=i>t?i:t,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*t:"right"==e.options.barChart.align&&(o+=.5*t)):(s=e.options.barChart.width,o=0,e.options.slots&&(s/=e.options.slots.total,o=e.options.slots.slot*s-.5*s*(e.options.slots.total+1)),"left"==e.options.barChart.align?o-=.5*e.options.barChart.width:"right"==e.options.barChart.align&&(o+=.5*e.options.barChart.width)),{width:s,offset:o}},s.prototype._drawLineGraph=function(t,e){if(null!=t&&t.length>0){var i,s,o=Number(this.svg.style.height.replace("px",""));if(i=n.getSVGElement("path",this.svgElements,this.svg),i.setAttributeNS(null,"class",e.className),s=1==e.options.catmullRom.enabled?this._catmullRom(t,e):this._linear(t),1==e.options.shaded.enabled){var r,a=n.getSVGElement("path",this.svgElements,this.svg);r="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+s+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+o+" "+s+"L"+t[t.length-1].x+","+o,a.setAttributeNS(null,"class",e.className+" fill"),a.setAttributeNS(null,"d",r)}i.setAttributeNS(null,"d","M"+s),1==e.options.drawPoints.enabled&&this._drawPoints(t,e,this.svgElements,this.svg)}},s.prototype._drawPoints=function(t,e,i,s,o){void 0===o&&(o=0);for(var r=0;rp;p+=r)i=n(t[p].x)+this.width-1,s=t[p].y,o.push({x:i,y:s}),h=h>s?s:h,d=s>d?s:d;return{min:h,max:d,data:o}},s.prototype._convertYvalues=function(t,e){var i,s,o=[],n=this.yAxisLeft,r=Number(this.svg.style.height.replace("px",""));"right"==e.options.yAxisOrientation&&(n=this.yAxisRight);for(var a=0;al;l++)e=0==l?t[0]:t[l-1],i=t[l],s=t[l+1],o=d>l+2?t[l+2]:s,n={x:(-e.x+6*i.x+s.x)*h,y:(-e.y+6*i.y+s.y)*h},r={x:(i.x+6*s.x-o.x)*h,y:(i.y+6*s.y-o.y)*h},a+="C"+n.x+","+n.y+" "+r.x+","+r.y+" "+s.x+","+s.y+" ";return a},s.prototype._catmullRom=function(t,e){var i=e.options.catmullRom.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var s,o,n,r,a,h,d,l,c,p,u,f,m,g,v,y,b,_,x,w=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",S=t.length,M=0;S-1>M;M++)s=0==M?t[0]:t[M-1],o=t[M],n=t[M+1],r=S>M+2?t[M+2]:n,d=Math.sqrt(Math.pow(s.x-o.x,2)+Math.pow(s.y-o.y,2)),l=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),c=Math.sqrt(Math.pow(n.x-r.x,2)+Math.pow(n.y-r.y,2)),g=Math.pow(c,i),y=Math.pow(c,2*i),v=Math.pow(l,i),b=Math.pow(l,2*i),x=Math.pow(d,i),_=Math.pow(d,2*i),p=2*_+3*x*v+b,u=2*y+3*g*v+b,f=3*x*(x+v),f>0&&(f=1/f),m=3*g*(g+v),m>0&&(m=1/m),a={x:(-b*s.x+p*o.x+_*n.x)*f,y:(-b*s.y+p*o.y+_*n.y)*f},h={x:(y*o.x+u*n.x-b*r.x)*m,y:(y*o.y+u*n.y-b*r.y)*m},0==a.x&&0==a.y&&(a=o),0==h.x&&0==h.y&&(h=n),w+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+n.x+","+n.y+" ";return w},s.prototype._linear=function(t){for(var e="",i=0;ih;h++)i.previous();o=this.height/s}this.valueAtZero=i.marginEnd;var d=0,l=1;i.next(),this.maxLabelSize=0;for(var c=0;l=0&&this._redrawLabel(c-2,i.getCurrent(),t,"yAxis major",this.props.majorCharHeight),this._redrawLine(c,t,"grid horizontal major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(c,t,"grid horizontal minor",this.options.minorLinesOffset,this.props.minorLineWidth),i.next(),l++}this.conversionFactor=d/((o-1)*i.step);var u=1==this.options.icons?this.options.iconWidth+this.options.labelOffsetX+15:this.options.labelOffsetX+15;return this.maxLabelSize>this.width-u&&1==this.options.visible?(this.width=this.maxLabelSize+u,this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+u),this.options.width=this.width+"px",n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),this.redraw(),!0):(n.cleanupElements(this.DOMelements.lines),n.cleanupElements(this.DOMelements.labels),!1)},s.prototype._redrawLabel=function(t,e,i,s,o){var r=n.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=s,r.innerHTML=e,"left"==i?(r.style.left="-"+this.options.labelOffsetX+"px",r.style.textAlign="right"):(r.style.right="-"+this.options.labelOffsetX+"px",r.style.textAlign="left"),r.style.top=t-.5*o+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSizen&&(h=n);for(var d=!1,l=h;Math.abs(l)<=Math.abs(n);l++){a=Math.pow(10,l);for(var c=0;c=o){d=!0,r=c;break}}if(1==d)break}this.stepIndex=r,this.scale=a,this.step=a*this.minorSteps[r]},e.prototype.first=function(){this.setFirst()},e.prototype.setFirst=function(){var t=this._start-this.scale*this.minorSteps[this.stepIndex],e=this._end+this.scale*this.minorSteps[this.stepIndex];this.marginEnd=this.roundToMinor(e),this.marginStart=this.roundToMinor(t),this.marginRange=this.marginEnd-this.marginStart,this.current=this.marginEnd},e.prototype.roundToMinor=function(t){var e=t-t%(this.scale*this.minorSteps[this.stepIndex]);return t%(this.scale*this.minorSteps[this.stepIndex])>.5*this.scale*this.minorSteps[this.stepIndex]?e+this.scale*this.minorSteps[this.stepIndex]:e},e.prototype.hasNext=function(){return this.current>=this.marginStart},e.prototype.next=function(){var t=this.current;this.current-=this.step,this.current==t&&(this.current=this._end)},e.prototype.previous=function(){this.current+=this.step,this.marginEnd+=this.step,this.marginRange=this.marginEnd-this.marginStart},e.prototype.getCurrent=function(){for(var t=""+Number(this.current).toPrecision(5),e=t.length-1;e>0;e--){if("0"!=t[e]){if("."==t[e]||","==t[e]){t=t.slice(0,e);break}break}t=t.slice(0,e)}return t},e.prototype.snap=function(){},e.prototype.isMajor=function(){return this.current%(this.scale*this.majorSteps[this.stepIndex])==0},t.exports=e},function(t,e,i){function s(t,e,i,s){this.id=e;var n=["sampling","style","sort","yAxisOrientation","barChart","drawPoints","shaded","catmullRom","slots"];this.options=o.selectiveBridgeObject(n,i),this.usingDefaultStyle=void 0===t.className,this.groupsUsingDefaultStyles=s,this.zeroPosition=0,this.update(t),1==this.usingDefaultStyle&&(this.groupsUsingDefaultStyles[0]+=1),this.itemsData=[],this.visible=void 0===t.visible?!0:t.visible}var o=i(1),n=i(6);s.prototype.setItems=function(t){null!=t?(this.itemsData=t,1==this.options.sort&&this.itemsData.sort(function(t,e){return t.x-e.x})):this.itemsData=[]},s.prototype.setZeroPosition=function(t){this.zeroPosition=t},s.prototype.setOptions=function(t){if(void 0!==t){var e=["sampling","style","sort","yAxisOrientation","barChart","slots"];o.selectiveDeepExtend(e,this.options,t),o.mergeOptions(this.options,t,"catmullRom"),o.mergeOptions(this.options,t,"drawPoints"),o.mergeOptions(this.options,t,"shaded"),t.catmullRom&&"object"==typeof t.catmullRom&&t.catmullRom.parametrization&&("uniform"==t.catmullRom.parametrization?this.options.catmullRom.alpha=0:"chordal"==t.catmullRom.parametrization?this.options.catmullRom.alpha=1:(this.options.catmullRom.parametrization="centripetal",this.options.catmullRom.alpha=.5))}},s.prototype.update=function(t){this.group=t,this.content=t.content||"graph",this.className=t.className||this.className||"graphGroup"+this.groupsUsingDefaultStyles[0]%10,this.visible=void 0===t.visible?!0:t.visible,this.setOptions(t.options)},s.prototype.drawIcon=function(t,e,i,s,o,r){var a,h,d=.5*r,l=n.getSVGElement("rect",i,s);if(l.setAttributeNS(null,"x",t),l.setAttributeNS(null,"y",e-d),l.setAttributeNS(null,"width",o),l.setAttributeNS(null,"height",2*d),l.setAttributeNS(null,"class","outline"),"line"==this.options.style)a=n.getSVGElement("path",i,s),a.setAttributeNS(null,"class",this.className),a.setAttributeNS(null,"d","M"+t+","+e+" L"+(t+o)+","+e),1==this.options.shaded.enabled&&(h=n.getSVGElement("path",i,s),"top"==this.options.shaded.orientation?h.setAttributeNS(null,"d","M"+t+", "+(e-d)+"L"+t+","+e+" L"+(t+o)+","+e+" L"+(t+o)+","+(e-d)):h.setAttributeNS(null,"d","M"+t+","+e+" L"+t+","+(e+d)+" L"+(t+o)+","+(e+d)+"L"+(t+o)+","+e),h.setAttributeNS(null,"class",this.className+" iconFill")),1==this.options.drawPoints.enabled&&n.drawPoint(t+.5*o,e,this,i,s);else{var c=Math.round(.3*o),p=Math.round(.4*r),u=Math.round(.75*r),f=Math.round((o-2*c)/3);n.drawBar(t+.5*c+f,e+d-p-1,c,p,this.className+" bar",i,s),n.drawBar(t+1.5*c+f+2,e+d-u-1,c,u,this.className+" bar",i,s)}},s.prototype.getLegend=function(t,e){var i=document.createElementNS("http://www.w3.org/2000/svg","svg");return this.drawIcon(0,.5*e,[],i,t,e),{icon:i,label:this.content,orientation:this.options.yAxisOrientation}},t.exports=s},function(t,e,i){function s(t,e,i){this.body=t,this.defaultOptions={enabled:!0,icons:!0,iconSize:20,iconSpacing:6,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-left"}},this.side=i,this.options=o.extend({},this.defaultOptions),this.svgElements={},this.dom={},this.groups={},this.amountOfGroups=0,this._create(),this.setOptions(e)}var o=i(1),n=i(6),r=i(22);s.prototype=new r,s.prototype.addGroup=function(t,e){this.groups.hasOwnProperty(t)||(this.groups[t]=e),this.amountOfGroups+=1},s.prototype.updateGroup=function(t,e){this.groups[t]=e},s.prototype.removeGroup=function(t){this.groups.hasOwnProperty(t)&&(delete this.groups[t],this.amountOfGroups-=1)},s.prototype._create=function(){this.dom.frame=document.createElement("div"),this.dom.frame.className="legend",this.dom.frame.style.position="absolute",this.dom.frame.style.top="10px",this.dom.frame.style.display="block",this.dom.textArea=document.createElement("div"),this.dom.textArea.className="legendText",this.dom.textArea.style.position="relative",this.dom.textArea.style.top="0px",this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="absolute",this.svg.style.top="0px",this.svg.style.width=this.options.iconSize+5+"px",this.dom.frame.appendChild(this.svg),this.dom.frame.appendChild(this.dom.textArea)},s.prototype.hide=function(){this.dom.frame.parentNode&&this.dom.frame.parentNode.removeChild(this.dom.frame)},s.prototype.show=function(){this.dom.frame.parentNode||this.body.dom.center.appendChild(this.dom.frame)},s.prototype.setOptions=function(t){var e=["enabled","orientation","icons","left","right"];o.selectiveDeepExtend(e,this.options,t)},s.prototype.redraw=function(){var t=0;for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&t++;if(0==this.options[this.side].visible||0==this.amountOfGroups||0==this.options.enabled||0==t)this.hide();else{this.show(),"top-left"==this.options[this.side].position||"bottom-left"==this.options[this.side].position?(this.dom.frame.style.left="4px",this.dom.frame.style.textAlign="left",this.dom.textArea.style.textAlign="left",this.dom.textArea.style.left=this.options.iconSize+15+"px",this.dom.textArea.style.right="",this.svg.style.left="0px",this.svg.style.right=""):(this.dom.frame.style.right="4px",this.dom.frame.style.textAlign="right",this.dom.textArea.style.textAlign="right",this.dom.textArea.style.right=this.options.iconSize+15+"px",this.dom.textArea.style.left="",this.svg.style.right="0px",this.svg.style.left=""),"top-left"==this.options[this.side].position||"top-right"==this.options[this.side].position?(this.dom.frame.style.top=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.bottom=""):(this.dom.frame.style.bottom=4-Number(this.body.dom.center.style.top.replace("px",""))+"px",this.dom.frame.style.top=""),0==this.options.icons?(this.dom.frame.style.width=this.dom.textArea.offsetWidth+10+"px",this.dom.textArea.style.right="",this.dom.textArea.style.left="",this.svg.style.width="0px"):(this.dom.frame.style.width=this.options.iconSize+15+this.dom.textArea.offsetWidth+10+"px",this.drawLegendIcons());var i="";for(var e in this.groups)this.groups.hasOwnProperty(e)&&1==this.groups[e].visible&&(i+=this.groups[e].content+"
");this.dom.textArea.innerHTML=i,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},s.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){n.prepareElements(this.svgElements);var t=window.getComputedStyle(this.dom.frame).paddingTop,e=Number(t.replace("px","")),i=e,s=this.options.iconSize,o=.75*this.options.iconSize,r=e+.5*o+3;this.svg.style.width=s+5+e+"px";for(var a in this.groups)this.groups.hasOwnProperty(a)&&1==this.groups[a].visible&&(this.groups[a].drawIcon(i,r,this.svgElements,this.svg,s,o),r+=o+this.options.iconSpacing);n.cleanupElements(this.svgElements)}},t.exports=s},function(t,e,i){function s(t,e,i){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");this._initializeMixinLoaders(),this.containerElement=t,this.renderRefreshRate=60,this.renderTimestep=1e3/this.renderRefreshRate,this.renderTime=.5*this.renderTimestep,this.maxPhysicsTicksPerRender=3,this.physicsDiscreteStepsize=.5,this.initializing=!0,this.triggerFunctions={add:null,edit:null,editEdge:null,connect:null,del:null},this.defaultOptions={nodes:{mass:1,radiusMin:10,radiusMax:30,radius:10,shape:"ellipse",image:void 0,widthMin:16,widthMax:64,fixed:!1,fontColor:"black",fontSize:14,fontFace:"verdana",level:-1,color:{border:"#2B7CE9",background:"#97C2FC",highlight:{border:"#2B7CE9",background:"#D2E5FF"},hover:{border:"#2B7CE9",background:"#D2E5FF"}},borderColor:"#2B7CE9",backgroundColor:"#97C2FC",highlightColor:"#D2E5FF",group:void 0,borderWidth:1},edges:{widthMin:1,widthMax:15,width:1,widthSelectionMultiplier:2,hoverWidth:1.5,style:"line",color:{color:"#848484",highlight:"#848484",hover:"#848484"},fontColor:"#343434",fontSize:14,fontFace:"arial",fontFill:"white",arrowScaleFactor:1,dash:{length:10,gap:5,altLength:void 0},inheritColor:"from"},configurePhysics:!1,physics:{barnesHut:{enabled:!0,theta:1/.6,gravitationalConstant:-2e3,centralGravity:.3,springLength:95,springConstant:.04,damping:.09},repulsion:{centralGravity:0,springLength:200,springConstant:.05,nodeDistance:100,damping:.09},hierarchicalRepulsion:{enabled:!1,centralGravity:0,springLength:100,springConstant:.01,nodeDistance:150,damping:.09},damping:null,centralGravity:null,springLength:null,springConstant:null},clustering:{enabled:!1,initialMaxNodes:100,clusterThreshold:500,reduceToNodes:300,chainThreshold:.4,clusterEdgeThreshold:20,sectorThreshold:100,screenSizeThreshold:.2,fontSizeMultiplier:4,maxFontSize:1e3,forceAmplification:.1,distanceAmplification:.1,edgeGrowth:20,nodeScaling:{width:1,height:1,radius:1},maxNodeSizeIncrements:600,activeAreaBoxSize:80,clusterLevelDifference:2},navigation:{enabled:!1},keyboard:{enabled:!1,speed:{x:10,y:10,zoom:.02}},dataManipulation:{enabled:!1,initiallyVisible:!1},hierarchicalLayout:{enabled:!1,levelSeparation:150,nodeSpacing:100,direction:"UD"},freezeForStabilization:!1,smoothCurves:{enabled:!0,dynamic:!0,type:"continuous",roundness:.5},dynamicSmoothCurves:!0,maxVelocity:30,minVelocity:.1,stabilize:!0,stabilizationIterations:1e3,labels:{add:"Add Node",edit:"Edit",link:"Add Link",del:"Delete selected",editNode:"Edit Node",editEdge:"Edit Edge",back:"Back",addDescription:"Click in an empty space to place a new node.",linkDescription:"Click on a node and drag the edge to another node to connect them.",editEdgeDescription:"Click on the control points and drag them to a node to connect to it.",addError:"The function for add does not support two arguments (data,callback).",linkError:"The function for connect does not support two arguments (data,callback).",editError:"The function for edit does not support two arguments (data, callback).",editBoundError:"No edit function has been bound to this button.",deleteError:"The function for delete does not support two arguments (data, callback).",deleteClusterError:"Clusters cannot be deleted."},tooltip:{delay:300,fontColor:"black",fontSize:14,fontFace:"verdana",color:{border:"#666",background:"#FFFFC6"}},dragNetwork:!0,dragNodes:!0,zoomable:!0,hover:!1,hideEdgesOnDrag:!1,hideNodesOnDrag:!1,width:"100%",height:"100%",selectable:!0},this.constants=a.extend({},this.defaultOptions),this.hoverObj={nodes:{},edges:{}},this.controlNodesActive=!1;var o=this;this.groups=new u,this.images=new f,this.images.setOnloadCallback(function(){o._redraw()}),this.xIncrement=0,this.yIncrement=0,this.zoomIncrement=0,this._loadPhysicsSystem(),this._create(),this._loadSectorSystem(),this._loadClusterSystem(),this._loadSelectionSystem(),this._loadHierarchySystem(),this._setTranslation(this.frame.clientWidth/2,this.frame.clientHeight/2),this._setScale(1),this.setOptions(i),this.freezeSimulation=!1,this.cachedFunctions={},this.calculationNodes={},this.calculationNodeIndices=[],this.nodeIndices=[],this.nodes={},this.edges={},this.canvasTopLeft={x:0,y:0},this.canvasBottomRight={x:0,y:0},this.pointerPosition={x:0,y:0},this.areaCenter={},this.scale=1,this.previousScale=this.scale,this.nodesData=null,this.edgesData=null,this.nodesListeners={add:function(t,e){o._addNodes(e.items),o.start()},update:function(t,e){o._updateNodes(e.items),o.start()},remove:function(t,e){o._removeNodes(e.items),o.start()}},this.edgesListeners={add:function(t,e){o._addEdges(e.items),o.start()},update:function(t,e){o._updateEdges(e.items),o.start()},remove:function(t,e){o._removeEdges(e.items),o.start()}},this.moving=!0,this.timer=void 0,this.setData(e,this.constants.clustering.enabled||this.constants.hierarchicalLayout.enabled),this.initializing=!1,1==this.constants.hierarchicalLayout.enabled?this._setupHierarchicalLayout():0==this.constants.stabilize&&this.zoomExtent(!0,this.constants.clustering.enabled),this.constants.clustering.enabled&&this.startWithClustering()}var o=i(10),n=i(18),r=i(42),a=i(1),h=i(21),d=i(7),l=i(8),c=i(43),p=i(44),u=i(45),f=i(46),m=i(47),g=i(48),v=i(49),y=i(50);i(61),o(s.prototype),s.prototype._getScriptPath=function(){for(var t=document.getElementsByTagName("script"),e=0;et.x&&(s=t.x),ot.y&&(e=t.y),i=this.constants.clustering.initialMaxNodes?49.07548/(o+142.05338)+91444e-8:12.662/(o+7.4147)+.0964822:1==this.constants.clustering.enabled&&o>=this.constants.clustering.initialMaxNodes?77.5271985/(o+187.266146)+476710517e-13:30.5062972/(o+19.93597763)+.08413486;var n=Math.min(this.frame.canvas.clientWidth/600,this.frame.canvas.clientHeight/600);i*=n}else{var r=1.1*(Math.abs(s.minX)+Math.abs(s.maxX)),a=1.1*(Math.abs(s.minY)+Math.abs(s.maxY)),h=this.frame.canvas.clientWidth/r,d=this.frame.canvas.clientHeight/a;i=d>=h?h:d}i>1&&(i=1),this._setScale(i),this._centerNetwork(s),0==e&&(this.moving=!0,this.start())},s.prototype._updateNodeIndexList=function(){this._clearNodeIndexList();for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodeIndices.push(t)},s.prototype.setData=function(t,e){if(void 0===e&&(e=!1),t&&t.dot&&(t.nodes||t.edges))throw new SyntaxError('Data must contain either parameter "dot" or parameter pair "nodes" and "edges", but not both.');if(this.setOptions(t&&t.options),t&&t.dot){if(t&&t.dot){var i=c.DOTToGraph(t.dot);return void this.setData(i)}}else if(t&&t.gephi){if(t&&t.gephi){var s=p.parseGephi(t.gephi);return void this.setData(s)}}else this._setNodes(t&&t.nodes),this._setEdges(t&&t.edges);if(this._putDataInSector(),!e)if(this.constants.stabilize){var o=this;setTimeout(function(){o._stabilize(),o.start()},0)}else this.start()},s.prototype.setOptions=function(t){if(t){var e,i=["nodes","edges","smoothCurves","hierarchicalLayout","clustering","navigation","keyboard","dataManipulation","onAdd","onEdit","onEditEdge","onConnect","onDelete"];if(a.selectiveNotDeepExtend(i,this.constants,t),a.selectiveNotDeepExtend(["color"],this.constants.nodes,t.nodes),a.selectiveNotDeepExtend(["color","length"],this.constants.edges,t.edges),t.physics&&(a.mergeOptions(this.constants.physics,t.physics,"barnesHut"),a.mergeOptions(this.constants.physics,t.physics,"repulsion"),t.physics.hierarchicalRepulsion)){this.constants.hierarchicalLayout.enabled=!0,this.constants.physics.hierarchicalRepulsion.enabled=!0,this.constants.physics.barnesHut.enabled=!1;for(e in t.physics.hierarchicalRepulsion)t.physics.hierarchicalRepulsion.hasOwnProperty(e)&&(this.constants.physics.hierarchicalRepulsion[e]=t.physics.hierarchicalRepulsion[e])}if(t.onAdd&&(this.triggerFunctions.add=t.onAdd),t.onEdit&&(this.triggerFunctions.edit=t.onEdit),t.onEditEdge&&(this.triggerFunctions.editEdge=t.onEditEdge),t.onConnect&&(this.triggerFunctions.connect=t.onConnect),t.onDelete&&(this.triggerFunctions.del=t.onDelete),a.mergeOptions(this.constants,t,"smoothCurves"),a.mergeOptions(this.constants,t,"hierarchicalLayout"),a.mergeOptions(this.constants,t,"clustering"),a.mergeOptions(this.constants,t,"navigation"),a.mergeOptions(this.constants,t,"keyboard"),a.mergeOptions(this.constants,t,"dataManipulation"),t.dataManipulation&&(this.editMode=this.constants.dataManipulation.initiallyVisible),t.edges&&(void 0!==t.edges.color&&(a.isString(t.edges.color)?(this.constants.edges.color={},this.constants.edges.color.color=t.edges.color,this.constants.edges.color.highlight=t.edges.color,this.constants.edges.color.hover=t.edges.color):(void 0!==t.edges.color.color&&(this.constants.edges.color.color=t.edges.color.color),void 0!==t.edges.color.highlight&&(this.constants.edges.color.highlight=t.edges.color.highlight),void 0!==t.edges.color.hover&&(this.constants.edges.color.hover=t.edges.color.hover))),t.edges.fontColor||void 0!==t.edges.color&&(a.isString(t.edges.color)?this.constants.edges.fontColor=t.edges.color:void 0!==t.edges.color.color&&(this.constants.edges.fontColor=t.edges.color.color))),t.nodes&&t.nodes.color){var s=a.parseColor(t.nodes.color); +this.constants.nodes.color.background=s.background,this.constants.nodes.color.border=s.border,this.constants.nodes.color.highlight.background=s.highlight.background,this.constants.nodes.color.highlight.border=s.highlight.border,this.constants.nodes.color.hover.background=s.hover.background,this.constants.nodes.color.hover.border=s.hover.border}if(t.groups)for(var o in t.groups)if(t.groups.hasOwnProperty(o)){var n=t.groups[o];this.groups.add(o,n)}if(t.tooltip){for(e in t.tooltip)t.tooltip.hasOwnProperty(e)&&(this.constants.tooltip[e]=t.tooltip[e]);t.tooltip.color&&(this.constants.tooltip.color=a.parseColor(t.tooltip.color))}}this._loadPhysicsSystem(),this._loadNavigationControls(),this._loadManipulationSystem(),this._configureSmoothCurves(),this._createKeyBinds(),this.setSize(this.constants.width,this.constants.height),this.moving=!0,this.start()},s.prototype._create=function(){for(;this.containerElement.hasChildNodes();)this.containerElement.removeChild(this.containerElement.firstChild);if(this.frame=document.createElement("div"),this.frame.className="network-frame",this.frame.style.position="relative",this.frame.style.overflow="hidden",this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),!this.frame.canvas.getContext){var t=document.createElement("DIV");t.style.color="red",t.style.fontWeight="bold",t.style.padding="10px",t.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(t)}var e=this;this.drag={},this.pinch={},this.hammer=n(this.frame.canvas,{prevent_default:!0}),this.hammer.on("tap",e._onTap.bind(e)),this.hammer.on("doubletap",e._onDoubleTap.bind(e)),this.hammer.on("hold",e._onHold.bind(e)),this.hammer.on("pinch",e._onPinch.bind(e)),this.hammer.on("touch",e._onTouch.bind(e)),this.hammer.on("dragstart",e._onDragStart.bind(e)),this.hammer.on("drag",e._onDrag.bind(e)),this.hammer.on("dragend",e._onDragEnd.bind(e)),this.hammer.on("release",e._onRelease.bind(e)),this.hammer.on("mousewheel",e._onMouseWheel.bind(e)),this.hammer.on("DOMMouseScroll",e._onMouseWheel.bind(e)),this.hammer.on("mousemove",e._onMouseMoveTitle.bind(e)),this.containerElement.appendChild(this.frame)},s.prototype._createKeyBinds=function(){var t=this;this.mousetrap=r,this.mousetrap.reset(),1==this.constants.keyboard.enabled&&(this.mousetrap.bind("up",this._moveUp.bind(t),"keydown"),this.mousetrap.bind("up",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("down",this._moveDown.bind(t),"keydown"),this.mousetrap.bind("down",this._yStopMoving.bind(t),"keyup"),this.mousetrap.bind("left",this._moveLeft.bind(t),"keydown"),this.mousetrap.bind("left",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("right",this._moveRight.bind(t),"keydown"),this.mousetrap.bind("right",this._xStopMoving.bind(t),"keyup"),this.mousetrap.bind("=",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("=",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("-",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("-",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("[",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("[",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("]",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("]",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pageup",this._zoomIn.bind(t),"keydown"),this.mousetrap.bind("pageup",this._stopZoom.bind(t),"keyup"),this.mousetrap.bind("pagedown",this._zoomOut.bind(t),"keydown"),this.mousetrap.bind("pagedown",this._stopZoom.bind(t),"keyup")),1==this.constants.dataManipulation.enabled&&(this.mousetrap.bind("escape",this._createManipulatorBar.bind(t)),this.mousetrap.bind("del",this._deleteSelected.bind(t)))},s.prototype._getPointer=function(t){return{x:t.pageX-a.getAbsoluteLeft(this.frame.canvas),y:t.pageY-a.getAbsoluteTop(this.frame.canvas)}},s.prototype._onTouch=function(t){this.drag.pointer=this._getPointer(t.gesture.center),this.drag.pinched=!1,this.pinch.scale=this._getScale(),this._handleTouch(this.drag.pointer)},s.prototype._onDragStart=function(){this._handleDragStart()},s.prototype._handleDragStart=function(){var t=this.drag,e=this._getNodeAt(t.pointer);if(t.dragging=!0,t.selection=[],t.translation=this._getTranslation(),t.nodeId=null,null!=e){t.nodeId=e.id,e.isSelected()||this._selectObject(e,!1);for(var i in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(i)){var s=this.selectionObj.nodes[i],o={id:s.id,node:s,x:s.x,y:s.y,xFixed:s.xFixed,yFixed:s.yFixed};s.xFixed=!0,s.yFixed=!0,t.selection.push(o)}}},s.prototype._onDrag=function(t){this._handleOnDrag(t)},s.prototype._handleOnDrag=function(t){if(!this.drag.pinched){var e=this._getPointer(t.gesture.center),i=this,s=this.drag,o=s.selection;if(o&&o.length&&1==this.constants.dragNodes){var n=e.x-s.pointer.x,r=e.y-s.pointer.y;o.forEach(function(t){var e=t.node;t.xFixed||(e.x=i._XconvertDOMtoCanvas(i._XconvertCanvasToDOM(t.x)+n)),t.yFixed||(e.y=i._YconvertDOMtoCanvas(i._YconvertCanvasToDOM(t.y)+r))}),this.moving||(this.moving=!0,this.start())}else if(1==this.constants.dragNetwork){var a=e.x-this.drag.pointer.x,h=e.y-this.drag.pointer.y;this._setTranslation(this.drag.translation.x+a,this.drag.translation.y+h),this._redraw()}}},s.prototype._onDragEnd=function(){this.drag.dragging=!1;var t=this.drag.selection;t&&t.length?(t.forEach(function(t){t.node.xFixed=t.xFixed,t.node.yFixed=t.yFixed}),this.moving=!0,this.start()):this._redraw()},s.prototype._onTap=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleTap(e)},s.prototype._onDoubleTap=function(t){var e=this._getPointer(t.gesture.center);this._handleDoubleTap(e)},s.prototype._onHold=function(t){var e=this._getPointer(t.gesture.center);this.pointerPosition=e,this._handleOnHold(e)},s.prototype._onRelease=function(t){var e=this._getPointer(t.gesture.center);this._handleOnRelease(e)},s.prototype._onPinch=function(t){var e=this._getPointer(t.gesture.center);this.drag.pinched=!0,"scale"in this.pinch||(this.pinch.scale=1);var i=this.pinch.scale*t.gesture.scale;this._zoom(i,e)},s.prototype._zoom=function(t,e){if(1==this.constants.zoomable){var i=this._getScale();1e-5>t&&(t=1e-5),t>10&&(t=10);var s=null;void 0!==this.drag&&1==this.drag.dragging&&(s=this.DOMtoCanvas(this.drag.pointer));var o=this._getTranslation(),n=t/i,r=(1-n)*e.x+o.x*n,a=(1-n)*e.y+o.y*n;if(this.areaCenter={x:this._XconvertDOMtoCanvas(e.x),y:this._YconvertDOMtoCanvas(e.y)},this._setScale(t),this._setTranslation(r,a),this.updateClustersDefault(),null!=s){var h=this.canvasToDOM(s);this.drag.pointer.x=h.x,this.drag.pointer.y=h.y}return this._redraw(),t>i?this.emit("zoom",{direction:"+"}):this.emit("zoom",{direction:"-"}),t}},s.prototype._onMouseWheel=function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i=this._getScale(),s=e/10;0>e&&(s/=1-s),i*=1+s;var o=h.fakeGesture(this,t),n=this._getPointer(o.center);this._zoom(i,n)}t.preventDefault()},s.prototype._onMouseMoveTitle=function(t){var e=h.fakeGesture(this,t),i=this._getPointer(e.center);this.popupObj&&this._checkHidePopup(i);var s=this,o=function(){s._checkShowPopup(i)};if(this.popupTimer&&clearInterval(this.popupTimer),this.drag.dragging||(this.popupTimer=setTimeout(o,this.constants.tooltip.delay)),1==this.constants.hover){for(var n in this.hoverObj.edges)this.hoverObj.edges.hasOwnProperty(n)&&(this.hoverObj.edges[n].hover=!1,delete this.hoverObj.edges[n]);var r=this._getNodeAt(i);null==r&&(r=this._getEdgeAt(i)),null!=r&&this._hoverObject(r);for(var a in this.hoverObj.nodes)this.hoverObj.nodes.hasOwnProperty(a)&&(r instanceof m&&r.id!=a||r instanceof g||null==r)&&(this._blurObject(this.hoverObj.nodes[a]),delete this.hoverObj.nodes[a]);this.redraw()}},s.prototype._checkShowPopup=function(t){var e,i={left:this._XconvertDOMtoCanvas(t.x),top:this._YconvertDOMtoCanvas(t.y),right:this._XconvertDOMtoCanvas(t.x),bottom:this._YconvertDOMtoCanvas(t.y)},s=this.popupObj;if(void 0==this.popupObj){var o=this.nodes;for(e in o)if(o.hasOwnProperty(e)){var n=o[e];if(void 0!==n.getTitle()&&n.isOverlappingWith(i)){this.popupObj=n;break}}}if(void 0===this.popupObj){var r=this.edges;for(e in r)if(r.hasOwnProperty(e)){var a=r[e];if(a.connected&&void 0!==a.getTitle()&&a.isOverlappingWith(i)){this.popupObj=a;break}}}if(this.popupObj){if(this.popupObj!=s){var h=this;h.popup||(h.popup=new v(h.frame,h.constants.tooltip)),h.popup.setPosition(t.x-3,t.y-3),h.popup.setText(h.popupObj.getTitle()),h.popup.show()}}else this.popup&&this.popup.hide()},s.prototype._checkHidePopup=function(t){this.popupObj&&this._getNodeAt(t)||(this.popupObj=void 0,this.popup&&this.popup.hide())},s.prototype.setSize=function(t,e){this.frame.style.width=t,this.frame.style.height=e,this.frame.canvas.style.width="100%",this.frame.canvas.style.height="100%",this.frame.canvas.width=this.frame.canvas.clientWidth,this.frame.canvas.height=this.frame.canvas.clientHeight,void 0!==this.manipulationDiv&&(this.manipulationDiv.style.width=this.frame.canvas.clientWidth+"px"),void 0!==this.navigationDivs&&void 0!==this.navigationDivs.wrapper&&(this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px"),this.emit("resize",{width:this.frame.canvas.width,height:this.frame.canvas.height})},s.prototype._setNodes=function(t){var e=this.nodesData;if(t instanceof d||t instanceof l)this.nodesData=t;else if(t instanceof Array)this.nodesData=new d,this.nodesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.nodesData=new d}if(e&&a.forEach(this.nodesListeners,function(t,i){e.off(i,t)}),this.nodes={},this.nodesData){var i=this;a.forEach(this.nodesListeners,function(t,e){i.nodesData.on(e,t)});var s=this.nodesData.getIds();this._addNodes(s)}this._updateSelection()},s.prototype._addNodes=function(t){for(var e,i=0,s=t.length;s>i;i++){e=t[i];var o=this.nodesData.get(e),n=new m(o,this.images,this.groups,this.constants);if(this.nodes[e]=n,!(0!=n.xFixed&&0!=n.yFixed||null!==n.x&&null!==n.y)){var r=1*t.length+10,a=2*Math.PI*Math.random();0==n.xFixed&&(n.x=r*Math.cos(a)),0==n.yFixed&&(n.y=r*Math.sin(a))}this.moving=!0}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateValueRange(this.nodes),this.updateLabels()},s.prototype._updateNodes=function(t){for(var e=this.nodes,i=this.nodesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n],a=i.get(n);r?r.setProperties(a,this.constants):(r=new m(properties,this.images,this.groups,this.constants),e[n]=r)}this.moving=!0,1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateNodeIndexList(),this._reconnectEdges(),this._updateValueRange(e)},s.prototype._removeNodes=function(t){for(var e=this.nodes,i=0,s=t.length;s>i;i++){var o=t[i];delete e[o]}this._updateNodeIndexList(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes(),this._reconnectEdges(),this._updateSelection(),this._updateValueRange(e)},s.prototype._setEdges=function(t){var e=this.edgesData;if(t instanceof d||t instanceof l)this.edgesData=t;else if(t instanceof Array)this.edgesData=new d,this.edgesData.add(t);else{if(t)throw new TypeError("Array or DataSet expected");this.edgesData=new d}if(e&&a.forEach(this.edgesListeners,function(t,i){e.off(i,t)}),this.edges={},this.edgesData){var i=this;a.forEach(this.edgesListeners,function(t,e){i.edgesData.on(e,t)});var s=this.edgesData.getIds();this._addEdges(s)}this._reconnectEdges()},s.prototype._addEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=e[n];r&&r.disconnect();var a=i.get(n,{showInternalIds:!0});e[n]=new g(a,this,this.constants)}this.moving=!0,this._updateValueRange(e),this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._updateEdges=function(t){for(var e=this.edges,i=this.edgesData,s=0,o=t.length;o>s;s++){var n=t[s],r=i.get(n),a=e[n];a?(a.disconnect(),a.setProperties(r,this.constants),a.connect()):(a=new g(r,this,this.constants),this.edges[n]=a)}this._createBezierNodes(),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this.moving=!0,this._updateValueRange(e)},s.prototype._removeEdges=function(t){for(var e=this.edges,i=0,s=t.length;s>i;i++){var o=t[i],n=e[o];n&&(null!=n.via&&delete this.sectors.support.nodes[n.via.id],n.disconnect(),delete e[o])}this.moving=!0,this._updateValueRange(e),1==this.constants.hierarchicalLayout.enabled&&0==this.initializing&&(this._resetLevels(),this._setupHierarchicalLayout()),this._updateCalculationNodes()},s.prototype._reconnectEdges=function(){var t,e=this.nodes,i=this.edges;for(t in e)e.hasOwnProperty(t)&&(e[t].edges=[]);for(t in i)if(i.hasOwnProperty(t)){var s=i[t];s.from=null,s.to=null,s.connect()}},s.prototype._updateValueRange=function(t){var e,i=void 0,s=void 0;for(e in t)if(t.hasOwnProperty(e)){var o=t[e].getValue();void 0!==o&&(i=void 0===i?o:Math.min(o,i),s=void 0===s?o:Math.max(o,s))}if(void 0!==i&&void 0!==s)for(e in t)t.hasOwnProperty(e)&&t[e].setValueRange(i,s)},s.prototype.redraw=function(){this.setSize(this.constants.width,this.constants.height),this._redraw()},s.prototype._redraw=function(){var t=this.frame.canvas.getContext("2d"),e=this.frame.canvas.width,i=this.frame.canvas.height;t.clearRect(0,0,e,i),t.save(),t.translate(this.translation.x,this.translation.y),t.scale(this.scale,this.scale),this.canvasTopLeft={x:this._XconvertDOMtoCanvas(0),y:this._YconvertDOMtoCanvas(0)},this.canvasBottomRight={x:this._XconvertDOMtoCanvas(this.frame.canvas.clientWidth),y:this._YconvertDOMtoCanvas(this.frame.canvas.clientHeight)},this._doInAllSectors("_drawAllSectorNodes",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideEdgesOnDrag)&&this._doInAllSectors("_drawEdges",t),(0==this.drag.dragging||void 0===this.drag.dragging||0==this.constants.hideNodesOnDrag)&&this._doInAllSectors("_drawNodes",t,!1),1==this.controlNodesActive&&this._doInAllSectors("_drawControlNodes",t),t.restore()},s.prototype._setTranslation=function(t,e){void 0===this.translation&&(this.translation={x:0,y:0}),void 0!==t&&(this.translation.x=t),void 0!==e&&(this.translation.y=e),this.emit("viewChanged")},s.prototype._getTranslation=function(){return{x:this.translation.x,y:this.translation.y}},s.prototype._setScale=function(t){this.scale=t},s.prototype._getScale=function(){return this.scale},s.prototype._XconvertDOMtoCanvas=function(t){return(t-this.translation.x)/this.scale},s.prototype._XconvertCanvasToDOM=function(t){return t*this.scale+this.translation.x},s.prototype._YconvertDOMtoCanvas=function(t){return(t-this.translation.y)/this.scale},s.prototype._YconvertCanvasToDOM=function(t){return t*this.scale+this.translation.y},s.prototype.canvasToDOM=function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}},s.prototype.DOMtoCanvas=function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}},s.prototype._drawNodes=function(t,e){void 0===e&&(e=!1);var i=this.nodes,s=[];for(var o in i)i.hasOwnProperty(o)&&(i[o].setScaleAndPos(this.scale,this.canvasTopLeft,this.canvasBottomRight),i[o].isSelected()?s.push(o):(i[o].inArea()||e)&&i[o].draw(t));for(var n=0,r=s.length;r>n;n++)(i[s[n]].inArea()||e)&&i[s[n]].draw(t)},s.prototype._drawEdges=function(t){var e=this.edges;for(var i in e)if(e.hasOwnProperty(i)){var s=e[i];s.setScale(this.scale),s.connected&&e[i].draw(t)}},s.prototype._drawControlNodes=function(t){var e=this.edges;for(var i in e)e.hasOwnProperty(i)&&e[i]._drawControlNodes(t)},s.prototype._stabilize=function(){1==this.constants.freezeForStabilization&&this._freezeDefinedNodes();for(var t=0;this.moving&&t0)for(e in s)s.hasOwnProperty(e)&&(s[e].discreteStepLimited(i,this.constants.maxVelocity),o=!0);else for(e in s)s.hasOwnProperty(e)&&(s[e].discreteStep(i),o=!0);if(1==o&&(void 0===t||1==t)){var n=this.constants.minVelocity/Math.max(this.scale,.05);n>.5*this.constants.maxVelocity?this.moving=!0:(this.moving=this._isMoving(n),0==this.moving&&this.emit("stabilized",{iterations:null}),this.moving=this.moving||this.configurePhysics)}},s.prototype._physicsTick=function(){this.freezeSimulation||1==this.moving&&(this._doInAllActiveSectors("_initializeForceCalculation"),this._doInAllActiveSectors("_discreteStepNodes"),1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic&&this._doInSupportSector("_discreteStepNodes",!1),this._findCenter(this._getRange()))},s.prototype._animationStep=function(){this.timer=void 0,this._handleNavigation(),this.start();var t=Date.now(),e=1;this._physicsTick();for(var i=Date.now()-t;i<.9*(this.renderTimestep-this.renderTime)&&e-1?!1:"INPUT"==i||"SELECT"==i||"TEXTAREA"==i||e.contentEditable&&"true"==e.contentEditable}function o(t,e){return t.sort().join(",")===e.sort().join(",")}function n(t){t=t||{};var e,i=!1;for(e in E)t[e]?i=!0:E[e]=0;i||(T=!1)}function r(t,e,i,s,n){var r,a,h=[];if(!M[t])return[];for("keyup"==i&&c(t)&&(e=[t]),r=0;r95&&112>t||_.hasOwnProperty(t)&&(y[_[t]]=t)}return y}function f(t,e,i){return i||(i=u()[t]?"keydown":"keypress"),"keypress"==i&&e.length&&(i="keydown"),i}function m(t,e,s,o){E[t]=0,o||(o=f(e[0],[]));var r,a=function(){T=o,++E[t],p()},d=function(t){h(s,t),"keyup"!==o&&(D=i(t)),setTimeout(n,10)};for(r=0;r1)return m(t,d,e,i);for(h="+"===t?["+"]:t.split("+"),n=0;n":".","?":"/","|":"\\"},S={option:"alt",command:"meta","return":"enter",escape:"esc"},M={},C={},E={},D=!1,T=!1,O=1;20>O;++O)_[111+O]="f"+O;for(O=0;9>=O;++O)_[O+96]=O;e(document,"keypress",l),e(document,"keydown",l),e(document,"keyup",l);var L={bind:function(t,e,i){return v(t instanceof Array?t:[t],e,i),C[t+":"+i]=e,this},unbind:function(t,e){return C[t+":"+e]&&(delete C[t+":"+e],this.bind(t,function(){},e)),this},trigger:function(t,e){return C[t+":"+e](),this},reset:function(){return M={},C={},this}};t.exports=L},function(t,e){function i(t){return D=t,u()}function s(){T=0,O=D.charAt(0)}function o(){T++,O=D.charAt(T)}function n(){return D.charAt(T+1)}function r(t){return N.test(t)}function a(t,e){if(t||(t={}),e)for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}function h(t,e,i){for(var s=e.split("."),o=t;s.length;){var n=s.shift();s.length?(o[n]||(o[n]={}),o=o[n]):o[n]=i}}function d(t,e){for(var i,s,o=null,n=[t],r=t;r.parent;)n.push(r.parent),r=r.parent;if(r.nodes)for(i=0,s=r.nodes.length;s>i;i++)if(e.id===r.nodes[i].id){o=r.nodes[i];break}for(o||(o={id:e.id},t.node&&(o.attr=a(o.attr,t.node))),i=n.length-1;i>=0;i--){var h=n[i];h.nodes||(h.nodes=[]),-1==h.nodes.indexOf(o)&&h.nodes.push(o)}e.attr&&(o.attr=a(o.attr,e.attr))}function l(t,e){if(t.edges||(t.edges=[]),t.edges.push(e),t.edge){var i=a({},t.edge);e.attr=a(i,e.attr)}}function c(t,e,i,s,o){var n={from:e,to:i,type:s};return t.edge&&(n.attr=a({},t.edge)),n.attr=a(n.attr||{},o),n}function p(){for(k=C.NULL,L="";" "==O||" "==O||"\n"==O||"\r"==O;)o();do{var t=!1;if("#"==O){for(var e=T-1;" "==D.charAt(e)||" "==D.charAt(e);)e--;if("\n"==D.charAt(e)||""==D.charAt(e)){for(;""!=O&&"\n"!=O;)o();t=!0}}if("/"==O&&"/"==n()){for(;""!=O&&"\n"!=O;)o();t=!0}if("/"==O&&"*"==n()){for(;""!=O;){if("*"==O&&"/"==n()){o(),o();break}o()}t=!0}for(;" "==O||" "==O||"\n"==O||"\r"==O;)o()}while(t);if(""==O)return void(k=C.DELIMITER);var i=O+n();if(E[i])return k=C.DELIMITER,L=i,o(),void o();if(E[O])return k=C.DELIMITER,L=O,void o();if(r(O)||"-"==O){for(L+=O,o();r(O);)L+=O,o();return"false"==L?L=!1:"true"==L?L=!0:isNaN(Number(L))||(L=Number(L)),void(k=C.IDENTIFIER)}if('"'==O){for(o();""!=O&&('"'!=O||'"'==O&&'"'==n());)L+=O,'"'==O&&o(),o();if('"'!=O)throw x('End of string " expected');return o(),void(k=C.IDENTIFIER)}for(k=C.UNKNOWN;""!=O;)L+=O,o();throw new SyntaxError('Syntax error in part "'+w(L,30)+'"')}function u(){var t={};if(s(),p(),"strict"==L&&(t.strict=!0,p()),("graph"==L||"digraph"==L)&&(t.type=L,p()),k==C.IDENTIFIER&&(t.id=L,p()),"{"!=L)throw x("Angle bracket { expected");if(p(),f(t),"}"!=L)throw x("Angle bracket } expected");if(p(),""!==L)throw x("End of file expected");return p(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==L&&"}"!=L;)m(t),";"==L&&p()}function m(t){var e=g(t);if(e)return void b(t,e);var i=v(t);if(!i){if(k!=C.IDENTIFIER)throw x("Identifier expected");var s=L;if(p(),"="==L){if(p(),k!=C.IDENTIFIER)throw x("Identifier expected");t[s]=L,p()}else y(t,s)}}function g(t){var e=null;if("subgraph"==L&&(e={},e.type="subgraph",p(),k==C.IDENTIFIER&&(e.id=L,p())),"{"==L){if(p(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=L)throw x("Angle bracket } expected");p(),delete e.node,delete e.edge,delete e.graph,delete e.parent,t.subgraphs||(t.subgraphs=[]),t.subgraphs.push(e)}return e}function v(t){return"node"==L?(p(),t.node=_(),"node"):"edge"==L?(p(),t.edge=_(),"edge"):"graph"==L?(p(),t.graph=_(),"graph"):null}function y(t,e){var i={id:e},s=_();s&&(i.attr=s),d(t,i),b(t,e)}function b(t,e){for(;"->"==L||"--"==L;){var i,s=L;p();var o=g(t);if(o)i=o;else{if(k!=C.IDENTIFIER)throw x("Identifier or subgraph expected");i=L,d(t,{id:i}),p()}var n=_(),r=c(t,e,i,s,n);l(t,r),e=i}}function _(){for(var t=null;"["==L;){for(p(),t={};""!==L&&"]"!=L;){if(k!=C.IDENTIFIER)throw x("Attribute name expected");var e=L;if(p(),"="!=L)throw x("Equal sign = expected");if(p(),k!=C.IDENTIFIER)throw x("Attribute value expected");var i=L;h(t,e,i),p(),","==L&&p()}if("]"!=L)throw x("Bracket ] expected");p()}return t}function x(t){return new SyntaxError(t+', got "'+w(L,30)+'" (char '+T+")")}function w(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function S(t,e,i){t instanceof Array?t.forEach(function(t){e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}):e instanceof Array?e.forEach(function(e){i(t,e)}):i(t,e)}function M(t){function e(t){var e={from:t.from,to:t.to};return a(e,t.attr),e.style="->"==t.type?"arrow":"line",e}var s=i(t),o={nodes:[],edges:[],options:{}};return s.nodes&&s.nodes.forEach(function(t){var e={id:t.id,label:String(t.label||t.id)};a(e,t.attr),e.image&&(e.shape="image"),o.nodes.push(e)}),s.edges&&s.edges.forEach(function(t){var i,s;i=t.from instanceof Object?t.from.nodes:{id:t.from},s=t.to instanceof Object?t.to.nodes:{id:t.to},t.from instanceof Object&&t.from.edges&&t.from.edges.forEach(function(t){var i=e(t);o.edges.push(i)}),S(i,s,function(i,s){var n=c(o,i.id,s.id,t.type,t.attr),r=e(n);o.edges.push(r)}),t.to instanceof Object&&t.to.edges&&t.to.edges.forEach(function(t){var i=e(t);o.edges.push(i)})}),s.attr&&(o.options=s.attr),o}var C={NULL:0,DELIMITER:1,IDENTIFIER:2,UNKNOWN:3},E={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},D="",T=0,O="",L="",k=C.NULL,N=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=M},function(t,e){function i(t,e){var i=[],s=[];this.options={edges:{inheritColor:!0},nodes:{allowedToMove:!1,parseColor:!1}},void 0!==e&&(this.options.nodes.allowedToMove=e.allowedToMove|!1,this.options.nodes.parseColor=e.parseColor|!1,this.options.edges.inheritColor=e.inheritColor|!0);for(var o=t.edges,n=t.nodes,r=0;re?this.vx>0?e:-e:this.vx,this.x+=this.vx*t}if(this.yFixed)this.fy=0;else{var o=this.damping*this.vy,n=(this.fy-o)/this.options.mass;this.vy+=n*t,this.vy=Math.abs(this.vy)>e?this.vy>0?e:-e:this.vy,this.y+=this.vy*t}},s.prototype.isFixed=function(){return this.xFixed&&this.yFixed},s.prototype.isMoving=function(t){var e=Math.sqrt(Math.pow(this.vx,2)+Math.pow(this.vy,2));return e>t},s.prototype.isSelected=function(){return this.selected},s.prototype.getValue=function(){return this.value},s.prototype.getDistance=function(t,e){var i=this.x-t,s=this.y-e;return Math.sqrt(i*i+s*s)},s.prototype.setValueRange=function(t,e){if(!this.radiusFixed&&void 0!==this.value)if(e==t)this.options.radius=(this.options.radiusMin+this.options.radiusMax)/2;else{var i=(this.options.radiusMax-this.options.radiusMin)/(e-t);this.options.radius=(this.value-t)*i+this.options.radiusMin}this.baseRadiusValue=this.options.radius},s.prototype.draw=function(){throw"Draw method not initialized for node"},s.prototype.resize=function(){throw"Resize method not initialized for node"},s.prototype.isOverlappingWith=function(t){return this.leftt.left&&this.topt.top},s.prototype._resizeImage=function(){if(!this.width||!this.height){var t,e;if(this.value){this.options.radius=this.baseRadiusValue;var i=this.imageObj.height/this.imageObj.width;void 0!==i?(t=this.options.radius||this.imageObj.width,e=this.options.radius*i||this.imageObj.height):(t=0,e=0)}else t=this.imageObj.width,e=this.imageObj.height;this.width=t,this.height=e,this.growthIndicator=0,this.width>0&&this.height>0&&(this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t)}},s.prototype._drawImage=function(t){this._resizeImage(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e;if(0!=this.imageObj.width){if(this.clusterSize>1){var i=this.clusterSize>1?10:0;i*=this.networkScaleInv,i=Math.min(.2*this.width,i),t.globalAlpha=.5,t.drawImage(this.imageObj,this.left-i,this.top-i,this.width+2*i,this.height+2*i)}t.globalAlpha=1,t.drawImage(this.imageObj,this.left,this.top,this.width,this.height),e=this.y+this.height/2}else e=this.y;this._label(t,this.label,this.x,e,void 0,"top")},s.prototype._resizeBox=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawBox=function(t){this._resizeBox(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.roundRect(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth,this.options.radius),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.options.color.background,t.roundRect(this.left,this.top,this.width,this.height,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeDatabase=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=i.width+2*e;this.width=s,this.height=s,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-s}},s.prototype._drawDatabase=function(t){this._resizeDatabase(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.database(this.x-this.width/2-2*t.lineWidth,this.y-.5*this.height-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.database(this.x-this.width/2,this.y-.5*this.height,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeCircle=function(t){if(!this.width){var e=5,i=this.getTextSize(t),s=Math.max(i.width,i.height)+2*e;this.options.radius=s/2,this.width=s,this.height=s,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.options.radius-.5*s}},s.prototype._drawCircle=function(t){this._resizeCircle(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var e=2.5,i=this.options.borderWidth,s=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.circle(this.x,this.y,this.options.radius+2*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.circle(this.x,this.y,this.options.radius),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._resizeEllipse=function(t){if(!this.width){var e=this.getTextSize(t);this.width=1.5*e.width,this.height=2*e.height,this.width1&&(t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.ellipse(this.left-2*t.lineWidth,this.top-2*t.lineWidth,this.width+4*t.lineWidth,this.height+4*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?s:i)+(this.clusterSize>1?e:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t.ellipse(this.left,this.top,this.width,this.height),t.fill(),t.stroke(),this._label(t,this.label,this.x,this.y)},s.prototype._drawDot=function(t){this._drawShape(t,"circle")},s.prototype._drawTriangle=function(t){this._drawShape(t,"triangle")},s.prototype._drawTriangleDown=function(t){this._drawShape(t,"triangleDown")},s.prototype._drawSquare=function(t){this._drawShape(t,"square")},s.prototype._drawStar=function(t){this._drawShape(t,"star")},s.prototype._resizeShape=function(){if(!this.width){this.options.radius=this.baseRadiusValue;var t=2*this.options.radius;this.width=t,this.height=t,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=.5*Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-t}},s.prototype._drawShape=function(t,e){this._resizeShape(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2;var i=2.5,s=this.options.borderWidth,o=this.options.borderWidthSelected||2*this.options.borderWidth,n=2;switch(e){case"dot":n=2;break;case"square":n=2;break;case"triangle":n=3;break;case"triangleDown":n=3;break;case"star":n=4}t.strokeStyle=this.selected?this.options.color.highlight.border:this.hover?this.options.color.hover.border:this.options.color.border,this.clusterSize>1&&(t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t[e](this.x,this.y,this.options.radius+n*t.lineWidth),t.stroke()),t.lineWidth=(this.selected?o:s)+(this.clusterSize>1?i:0),t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=this.selected?this.options.color.highlight.background:this.hover?this.options.color.hover.background:this.options.color.background,t[e](this.x,this.y,this.options.radius),t.fill(),t.stroke(),this.label&&this._label(t,this.label,this.x,this.y+this.height/2,void 0,"top",!0)},s.prototype._resizeText=function(t){if(!this.width){var e=5,i=this.getTextSize(t);this.width=i.width+2*e,this.height=i.height+2*e,this.width+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeWidthFactor,this.height+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeHeightFactor,this.options.radius+=Math.min(this.clusterSize-1,this.maxNodeSizeIncrements)*this.clusterSizeRadiusFactor,this.growthIndicator=this.width-(i.width+2*e)}},s.prototype._drawText=function(t){this._resizeText(t),this.left=this.x-this.width/2,this.top=this.y-this.height/2,this._label(t,this.label,this.x,this.y)},s.prototype._label=function(t,e,i,s,o,n,r){if(e&&Number(this.options.fontSize)*this.networkScale>this.fontDrawThreshold){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace,t.fillStyle=this.options.fontColor||"black",t.textAlign=o||"center",t.textBaseline=n||"middle";var a=e.split("\n"),h=a.length,d=Number(this.options.fontSize)+4,l=s+(1-h)/2*d;1==r&&(l=s+(1-h)/(2*d));for(var c=0;h>c;c++)t.fillText(a[c],i,l),l+=d}},s.prototype.getTextSize=function(t){if(void 0!==this.label){t.font=(this.selected?"bold ":"")+this.options.fontSize+"px "+this.options.fontFace;for(var e=this.label.split("\n"),i=(Number(this.options.fontSize)+4)*e.length,s=0,o=0,n=e.length;n>o;o++)s=Math.max(s,t.measureText(e[o]).width);return{width:s,height:i}}return{width:0,height:0}},s.prototype.inArea=function(){return void 0!==this.width?this.x+this.width*this.networkScaleInv>=this.canvasTopLeft.x&&this.x-this.width*this.networkScaleInv=this.canvasTopLeft.y&&this.y-this.height*this.networkScaleInv=this.canvasTopLeft.x&&this.x=this.canvasTopLeft.y&&this.yh}return!1},s.prototype._getColor=function(){var t=this.options.color;return"to"==this.options.inheritColor?t={highlight:this.to.options.color.highlight.border,hover:this.to.options.color.hover.border,color:this.to.options.color.border}:("from"==this.options.inheritColor||1==this.options.inheritColor)&&(t={highlight:this.from.options.color.highlight.border,hover:this.from.options.color.hover.border,color:this.from.options.color.border}),1==this.selected?t.highlight:1==this.hover?t.hover:t.color},s.prototype._drawLine=function(t){if(t.strokeStyle=this._getColor(),t.lineWidth=this._getLineWidth(),this.from!=this.to){var e,i=this._line(t);if(this.label){if(1==this.options.smoothCurves.enabled&&null!=i){var s=.5*(.5*(this.from.x+i.x)+.5*(this.to.x+i.x)),o=.5*(.5*(this.from.y+i.y)+.5*(this.to.y+i.y));e={x:s,y:o}}else e=this._pointOnLine(.5);this._label(t,this.label,e.x,e.y)}}else{var n,r,a=this.physics.springLength/4,h=this.from;h.width||h.resize(t),h.width>h.height?(n=h.x+h.width/2,r=h.y-a):(n=h.x+a,r=h.y-h.height/2),this._circle(t,n,r,a),e=this._pointOnCircle(n,r,a,.5),this._label(t,this.label,e.x,e.y)}},s.prototype._getLineWidth=function(){return 1==this.selected?Math.min(this.widthSelected,this.options.widthMax)*this.networkScaleInv:1==this.hover?Math.min(this.options.hoverWidth,this.options.widthMax)*this.networkScaleInv:this.options.width*this.networkScaleInv},s.prototype._getViaCoordinates=function(){var t=null,e=null,i=this.options.smoothCurves.roundness,s=this.options.smoothCurves.type,o=Math.abs(this.from.x-this.to.x),n=Math.abs(this.from.y-this.to.y);return"discrete"==s||"diagonalCross"==s?Math.abs(this.from.x-this.to.x)this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n)),"discrete"==s&&(t=i*n>o?this.from.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xthis.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o)),"discrete"==s&&(e=i*o>n?this.from.y:e)):"straightCross"==s?Math.abs(this.from.x-this.to.x)Math.abs(this.from.y-this.to.y)&&(t=this.from.xthis.to.y?this.from.xthis.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n,t=this.to.x>t?this.to.x:t):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n,t=this.to.x>t?this.to.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>this.to.y?this.from.xe?this.to.y:e):this.from.x>this.to.x&&(t=this.from.x-i*o,e=this.from.y-i*o,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*o,e=this.from.y+i*o,e=this.to.yl.height?(a=l.x+.5*l.width,h=l.y-d):(a=l.x+d,h=l.y-.5*l.height),this._circle(t,a,h,d);var s=.2*Math.PI,o=(10+5*this.options.width)*this.options.arrowScaleFactor;e=this._pointOnCircle(a,h,d,.5),t.arrow(e.x,e.y,s,o),t.fill(),t.stroke(),this.label&&(e=this._pointOnCircle(a,h,d,.5),this._label(t,this.label,e.x,e.y))}},s.prototype._drawArrow=function(t){1==this.selected?(t.strokeStyle=this.options.color.highlight,t.fillStyle=this.options.color.highlight):1==this.hover?(t.strokeStyle=this.options.color.hover,t.fillStyle=this.options.color.hover):(t.strokeStyle=this.options.color.color,t.fillStyle=this.options.color.color),t.lineWidth=this._getLineWidth();var e,i;if(this.from!=this.to){e=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x);var s,o=this.to.x-this.from.x,n=this.to.y-this.from.y,r=Math.sqrt(o*o+n*n),a=this.from.distanceToBorder(t,e+Math.PI),h=(r-a)/r,d=h*this.from.x+(1-h)*this.to.x,l=h*this.from.y+(1-h)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?s=this.via:1==this.options.smoothCurves.enabled&&(s=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=s.x&&(e=Math.atan2(this.to.y-s.y,this.to.x-s.x),o=this.to.x-s.x,n=this.to.y-s.y,r=Math.sqrt(o*o+n*n));var c,p,u=this.to.distanceToBorder(t,e),f=(r-u)/r;if(1==this.options.smoothCurves.enabled&&null!=s.x?(c=(1-f)*s.x+f*this.to.x,p=(1-f)*s.y+f*this.to.y):(c=(1-f)*this.from.x+f*this.to.x,p=(1-f)*this.from.y+f*this.to.y),t.beginPath(),t.moveTo(d,l),1==this.options.smoothCurves.enabled&&null!=s.x?t.quadraticCurveTo(s.x,s.y,c,p):t.lineTo(c,p),t.stroke(),i=(10+5*this.options.width)*this.options.arrowScaleFactor,t.arrow(c,p,e,i),t.fill(),t.stroke(),this.label){var m;if(1==this.options.smoothCurves.enabled&&null!=s){var g=.5*(.5*(this.from.x+s.x)+.5*(this.to.x+s.x)),v=.5*(.5*(this.from.y+s.y)+.5*(this.to.y+s.y));m={x:g,y:v}}else m=this._pointOnLine(.5);this._label(t,this.label,m.x,m.y)}}else{var y,b,_,x=this.from,w=.25*Math.max(100,this.physics.springLength);x.width||x.resize(t),x.width>x.height?(y=x.x+.5*x.width,b=x.y-w,_={x:y,y:x.y,angle:.9*Math.PI}):(y=x.x+w,b=x.y-.5*x.height,_={x:x.x,y:b,angle:.6*Math.PI}),t.beginPath(),t.arc(y,b,w,0,2*Math.PI,!1),t.stroke();var i=(10+5*this.options.width)*this.options.arrowScaleFactor;t.arrow(_.x,_.y,_.angle,i),t.fill(),t.stroke(),this.label&&(m=this._pointOnCircle(y,b,w,.5),this._label(t,this.label,m.x,m.y))}},s.prototype._getDistanceToEdge=function(t,e,i,s,o,n){if(this.from!=this.to){if(1==this.options.smoothCurves.enabled){var r,a;if(1==this.options.smoothCurves.enabled&&1==this.options.smoothCurves.dynamic)r=this.via.x,a=this.via.y;else{var h=this._getViaCoordinates();r=h.x,a=h.y}var d,l,c,p,u,f,m,g=1e9;for(l=0;10>l;l++)c=.1*l,p=Math.pow(1-c,2)*t+2*c*(1-c)*r+Math.pow(c,2)*i,u=Math.pow(1-c,2)*e+2*c*(1-c)*a+Math.pow(c,2)*s,l>0&&(d=this._getDistanceToLine(f,m,p,u,o,n),g=g>d?d:g),f=p,m=u;return g}return this._getDistanceToLine(t,e,i,s,o,n)}var p,u,v,y,b=this.physics.springLength/4,_=this.from;return _.width||_.resize(ctx),_.width>_.height?(p=_.x+_.width/2,u=_.y-b):(p=_.x+b,u=_.y-_.height/2),v=p-o,y=u-n,Math.abs(Math.sqrt(v*v+y*y)-b)},s.prototype._getDistanceToLine=function(t,e,i,s,o,n){var r=i-t,a=s-e,h=r*r+a*a,d=((o-t)*r+(n-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,c=e+d*a,p=l-o,u=c-n;return Math.sqrt(p*p+u*u)},s.prototype.setScale=function(t){this.networkScaleInv=1/t +},s.prototype.select=function(){this.selected=!0},s.prototype.unselect=function(){this.selected=!1},s.prototype.positionBezierNode=function(){null!==this.via&&null!==this.from&&null!==this.to&&(this.via.x=.5*(this.from.x+this.to.x),this.via.y=.5*(this.from.y+this.to.y))},s.prototype._drawControlNodes=function(t){if(1==this.controlNodesEnabled){if(null===this.controlNodes.from&&null===this.controlNodes.to){var e="edgeIdFrom:".concat(this.id),i="edgeIdTo:".concat(this.id),s={nodes:{group:"",radius:8},physics:{damping:0},clustering:{maxNodeSizeIncrements:0,nodeScaling:{width:0,height:0,radius:0}}};this.controlNodes.from=new n({id:e,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s),this.controlNodes.to=new n({id:i,shape:"dot",color:{background:"#ff4e00",border:"#3c3c3c",highlight:{background:"#07f968"}}},{},{},s)}0==this.controlNodes.from.selected&&0==this.controlNodes.to.selected&&(this.controlNodes.positions=this.getControlNodePositions(t),this.controlNodes.from.x=this.controlNodes.positions.from.x,this.controlNodes.from.y=this.controlNodes.positions.from.y,this.controlNodes.to.x=this.controlNodes.positions.to.x,this.controlNodes.to.y=this.controlNodes.positions.to.y),this.controlNodes.from.draw(t),this.controlNodes.to.draw(t)}else this.controlNodes={from:null,to:null,positions:{}}},s.prototype._enableControlNodes=function(){this.controlNodesEnabled=!0},s.prototype._disableControlNodes=function(){this.controlNodesEnabled=!1},s.prototype._getSelectedControlNode=function(t,e){var i=this.controlNodes.positions,s=Math.sqrt(Math.pow(t-i.from.x,2)+Math.pow(e-i.from.y,2)),o=Math.sqrt(Math.pow(t-i.to.x,2)+Math.pow(e-i.to.y,2));return 15>s?(this.connectedNode=this.from,this.from=this.controlNodes.from,this.controlNodes.from):15>o?(this.connectedNode=this.to,this.to=this.controlNodes.to,this.controlNodes.to):null},s.prototype._restoreControlNodes=function(){1==this.controlNodes.from.selected&&(this.from=this.connectedNode,this.connectedNode=null,this.controlNodes.from.unselect()),1==this.controlNodes.to.selected&&(this.to=this.connectedNode,this.connectedNode=null,this.controlNodes.to.unselect())},s.prototype.getControlNodePositions=function(t){var e,i=Math.atan2(this.to.y-this.from.y,this.to.x-this.from.x),s=this.to.x-this.from.x,o=this.to.y-this.from.y,n=Math.sqrt(s*s+o*o),r=this.from.distanceToBorder(t,i+Math.PI),a=(n-r)/n,h=a*this.from.x+(1-a)*this.to.x,d=a*this.from.y+(1-a)*this.to.y;1==this.options.smoothCurves.dynamic&&1==this.options.smoothCurves.enabled?e=this.via:1==this.options.smoothCurves.enabled&&(e=this._getViaCoordinates()),1==this.options.smoothCurves.enabled&&null!=e.x&&(i=Math.atan2(this.to.y-e.y,this.to.x-e.x),s=this.to.x-e.x,o=this.to.y-e.y,n=Math.sqrt(s*s+o*o));var l,c,p=this.to.distanceToBorder(t,i),u=(n-p)/n;return 1==this.options.smoothCurves.enabled&&null!=e.x?(l=(1-u)*e.x+u*this.to.x,c=(1-u)*e.y+u*this.to.y):(l=(1-u)*this.from.x+u*this.to.x,c=(1-u)*this.from.y+u*this.to.y),{from:{x:h,y:d},to:{x:l,y:c}}},t.exports=s},function(t){function e(t,e,i,s,o){this.container=t?t:document.body,void 0===o&&("object"==typeof e?(o=e,e=void 0):"object"==typeof s?(o=s,s=void 0):o={fontColor:"black",fontSize:14,fontFace:"verdana",color:{border:"#666",background:"#FFFFC6"}}),this.x=0,this.y=0,this.padding=5,void 0!==e&&void 0!==i&&this.setPosition(e,i),void 0!==s&&this.setText(s),this.frame=document.createElement("div");var n=this.frame.style;n.position="absolute",n.visibility="hidden",n.border="1px solid "+o.color.border,n.color=o.fontColor,n.fontSize=o.fontSize+"px",n.fontFamily=o.fontFace,n.padding=this.padding+"px",n.backgroundColor=o.color.background,n.borderRadius="3px",n.MozBorderRadius="3px",n.WebkitBorderRadius="3px",n.boxShadow="3px 3px 10px rgba(128, 128, 128, 0.5)",n.whiteSpace="nowrap",this.container.appendChild(this.frame)}e.prototype.setPosition=function(t,e){this.x=parseInt(t),this.y=parseInt(e)},e.prototype.setText=function(t){this.frame.innerHTML=t},e.prototype.show=function(t){if(void 0===t&&(t=!0),t){var e=this.frame.clientHeight,i=this.frame.clientWidth,s=this.frame.parentNode.clientHeight,o=this.frame.parentNode.clientWidth,n=this.y-e;n+e+this.padding>s&&(n=s-e-this.padding),no&&(r=o-i-this.padding),rthis.constants.clustering.clusterThreshold&&1==this.constants.clustering.enabled&&this.clusterToFit(this.constants.clustering.reduceToNodes,!1),this._calculateForces())},e._calculateForces=function(){this._calculateGravitationalForces(),this._calculateNodeForces(),this.constants.physics.springConstant>0&&(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic?this._calculateSpringForcesWithSupport():1==this.constants.physics.hierarchicalRepulsion.enabled?this._calculateHierarchicalSpringForces():this._calculateSpringForces())},e._updateCalculationNodes=function(){if(1==this.constants.smoothCurves.enabled&&1==this.constants.smoothCurves.dynamic){this.calculationNodes={},this.calculationNodeIndices=[];for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.calculationNodes[t]=this.nodes[t]);var e=this.sectors.support.nodes;for(var i in e)e.hasOwnProperty(i)&&(this.edges.hasOwnProperty(e[i].parentEdgeId)?this.calculationNodes[i]=e[i]:e[i]._setForce(0,0));for(var s in this.calculationNodes)this.calculationNodes.hasOwnProperty(s)&&this.calculationNodeIndices.push(s)}else this.calculationNodes=this.nodes,this.calculationNodeIndices=this.nodeIndices},e._calculateGravitationalForces=function(){var t,e,i,s,o,n=this.calculationNodes,r=this.constants.physics.centralGravity,a=0;for(o=0;oSimulation Mode:Barnes HutRepulsionHierarchical
Options:
',this.containerElement.parentElement.insertBefore(this.physicsConfiguration,this.containerElement),this.optionsDiv=document.createElement("div"),this.optionsDiv.style.fontSize="14px",this.optionsDiv.style.fontFamily="verdana",this.containerElement.parentElement.insertBefore(this.optionsDiv,this.containerElement);var e;e=document.getElementById("graph_BH_gc"),e.onchange=a.bind(this,"graph_BH_gc",-1,"physics_barnesHut_gravitationalConstant"),e=document.getElementById("graph_BH_cg"),e.onchange=a.bind(this,"graph_BH_cg",1,"physics_centralGravity"),e=document.getElementById("graph_BH_sc"),e.onchange=a.bind(this,"graph_BH_sc",1,"physics_springConstant"),e=document.getElementById("graph_BH_sl"),e.onchange=a.bind(this,"graph_BH_sl",1,"physics_springLength"),e=document.getElementById("graph_BH_damp"),e.onchange=a.bind(this,"graph_BH_damp",1,"physics_damping"),e=document.getElementById("graph_R_nd"),e.onchange=a.bind(this,"graph_R_nd",1,"physics_repulsion_nodeDistance"),e=document.getElementById("graph_R_cg"),e.onchange=a.bind(this,"graph_R_cg",1,"physics_centralGravity"),e=document.getElementById("graph_R_sc"),e.onchange=a.bind(this,"graph_R_sc",1,"physics_springConstant"),e=document.getElementById("graph_R_sl"),e.onchange=a.bind(this,"graph_R_sl",1,"physics_springLength"),e=document.getElementById("graph_R_damp"),e.onchange=a.bind(this,"graph_R_damp",1,"physics_damping"),e=document.getElementById("graph_H_nd"),e.onchange=a.bind(this,"graph_H_nd",1,"physics_hierarchicalRepulsion_nodeDistance"),e=document.getElementById("graph_H_cg"),e.onchange=a.bind(this,"graph_H_cg",1,"physics_centralGravity"),e=document.getElementById("graph_H_sc"),e.onchange=a.bind(this,"graph_H_sc",1,"physics_springConstant"),e=document.getElementById("graph_H_sl"),e.onchange=a.bind(this,"graph_H_sl",1,"physics_springLength"),e=document.getElementById("graph_H_damp"),e.onchange=a.bind(this,"graph_H_damp",1,"physics_damping"),e=document.getElementById("graph_H_direction"),e.onchange=a.bind(this,"graph_H_direction",t,"hierarchicalLayout_direction"),e=document.getElementById("graph_H_levsep"),e.onchange=a.bind(this,"graph_H_levsep",1,"hierarchicalLayout_levelSeparation"),e=document.getElementById("graph_H_nspac"),e.onchange=a.bind(this,"graph_H_nspac",1,"hierarchicalLayout_nodeSpacing");var i=document.getElementById("graph_physicsMethod1"),d=document.getElementById("graph_physicsMethod2"),l=document.getElementById("graph_physicsMethod3");d.checked=!0,this.constants.physics.barnesHut.enabled&&(i.checked=!0),this.constants.hierarchicalLayout.enabled&&(l.checked=!0);var c=document.getElementById("graph_toggleSmooth"),p=document.getElementById("graph_repositionNodes"),u=document.getElementById("graph_generateOptions");c.onclick=s.bind(this),p.onclick=o.bind(this),u.onclick=n.bind(this),c.style.background=1==this.constants.smoothCurves&&0==this.constants.dynamicSmoothCurves?"#A4FF56":"#FF8532",r.apply(this),i.onchange=r.bind(this),d.onchange=r.bind(this),l.onchange=r.bind(this)}},e._overWriteGraphConstants=function(t,e){var i=t.split("_");1==i.length?this.constants[i[0]]=e:2==i.length?this.constants[i[0]][i[1]]=e:3==i.length&&(this.constants[i[0]][i[1]][i[2]]=e)}},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l,c=this.calculationNodes,p=this.calculationNodeIndices,u=-2/3,f=4/3,m=this.constants.physics.repulsion.nodeDistance,g=m;for(d=0;di&&(r=.5*g>i?1:v*i+f,r*=0==n?1:1+n*this.constants.clustering.forceAmplification,r/=i,s=t*r,o=e*r,a.fx-=s,a.fy-=o,h.fx+=s,h.fy+=o)}}},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l=this.calculationNodes,c=this.calculationNodeIndices,p=this.constants.physics.hierarchicalRepulsion.nodeDistance;for(h=0;hi?-Math.pow(u*i,2)+Math.pow(u*p,2):0,0==i?i=.01:n/=i,s=t*n,o=e*n,r.fx-=s,r.fy-=o,a.fx+=s,a.fy+=o}},e._calculateHierarchicalSpringForces=function(){for(var t,e,i,s,o,n,r,a,h,d=this.edges,l=this.calculationNodes,c=this.calculationNodeIndices,p=0;pn;n++)t=e[i[n]],t.options.mass>0&&(this._getForceContribution(o.root.children.NW,t),this._getForceContribution(o.root.children.NE,t),this._getForceContribution(o.root.children.SW,t),this._getForceContribution(o.root.children.SE,t))}},e._getForceContribution=function(t,e){if(t.childrenCount>0){var i,s,o;if(i=t.centerOfMass.x-e.x,s=t.centerOfMass.y-e.y,o=Math.sqrt(i*i+s*s),o*t.calcSize>this.constants.physics.barnesHut.theta){0==o&&(o=.1*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}else if(4==t.childrenCount)this._getForceContribution(t.children.NW,e),this._getForceContribution(t.children.NE,e),this._getForceContribution(t.children.SW,e),this._getForceContribution(t.children.SE,e); +else if(t.children.data.id!=e.id){0==o&&(o=.5*Math.random(),i=o);var n=this.constants.physics.barnesHut.gravitationalConstant*t.mass*e.options.mass/(o*o*o),r=i*n,a=s*n;e.fx+=r,e.fy+=a}}},e._formBarnesHutTree=function(t,e){for(var i,s=e.length,o=Number.MAX_VALUE,n=Number.MAX_VALUE,r=-Number.MAX_VALUE,a=-Number.MAX_VALUE,h=0;s>h;h++){var d=t[e[h]].x,l=t[e[h]].y;t[e[h]].options.mass>0&&(o>d&&(o=d),d>r&&(r=d),n>l&&(n=l),l>a&&(a=l))}var c=Math.abs(r-o)-Math.abs(a-n);c>0?(n-=.5*c,a+=.5*c):(o+=.5*c,r-=.5*c);var p=1e-5,u=Math.max(p,Math.abs(r-o)),f=.5*u,m=.5*(o+r),g=.5*(n+a),v={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:m-f,maxX:m+f,minY:g-f,maxY:g+f},size:u,calcSize:1/u,children:{data:null},maxWidth:0,level:0,childrenCount:4}};for(this._splitBranch(v.root),h=0;s>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(v.root,i);this.barnesHutTree=v},e._updateBranchMass=function(t,e){var i=t.mass+e.options.mass,s=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=s,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=s,t.mass=i;var o=Math.max(Math.max(e.height,e.radius),e.width);t.maxWidth=t.maxWidthe.x?t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NW"):this._placeInRegion(t,e,"SW"):t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NE"):this._placeInRegion(t,e,"SE")},e._placeInRegion=function(t,e,i){switch(t.children[i].childrenCount){case 0:t.children[i].children.data=e,t.children[i].childrenCount=1,this._updateBranchMass(t.children[i],e);break;case 1:t.children[i].children.data.x==e.x&&t.children[i].children.data.y==e.y?(e.x+=Math.random(),e.y+=Math.random()):(this._splitBranch(t.children[i]),this._placeInTree(t.children[i],e));break;case 4:this._placeInTree(t.children[i],e)}},e._splitBranch=function(t){var e=null;1==t.childrenCount&&(e=t.children.data,t.mass=0,t.centerOfMass.x=0,t.centerOfMass.y=0),t.childrenCount=4,t.children.data=null,this._insertRegion(t,"NW"),this._insertRegion(t,"NE"),this._insertRegion(t,"SW"),this._insertRegion(t,"SE"),null!=e&&this._placeInTree(t,e)},e._insertRegion=function(t,e){var i,s,o,n,r=.5*t.size;switch(e){case"NW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY,n=t.range.minY+r;break;case"NE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY,n=t.range.minY+r;break;case"SW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY+r,n=t.range.maxY;break;case"SE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY+r,n=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:s,minY:o,maxY:n},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}},e._drawTree=function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))},e._drawBranch=function(t,e,i){void 0===i&&(i="#FF0000"),4==t.childrenCount&&(this._drawBranch(t.children.NW,e),this._drawBranch(t.children.NE,e),this._drawBranch(t.children.SE,e),this._drawBranch(t.children.SW,e)),e.strokeStyle=i,e.beginPath(),e.moveTo(t.range.minX,t.range.minY),e.lineTo(t.range.maxX,t.range.minY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.minY),e.lineTo(t.range.maxX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.maxY),e.lineTo(t.range.minX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.minX,t.range.maxY),e.lineTo(t.range.minX,t.range.minY),e.stroke()}},function(t,e){e.startWithClustering=function(){this.clusterToFit(this.constants.clustering.initialMaxNodes,!0),this.updateLabels(),this.stabilize&&this._stabilize(),this.start()},e.clusterToFit=function(t,e){for(var i=this.nodeIndices.length,s=50,o=0;i>t&&s>o;)o%3==0?(this.forceAggregateHubs(!0),this.normalizeClusterLevels()):this.increaseClusterLevel(),i=this.nodeIndices.length,o+=1;o>0&&1==e&&this.repositionNodes(),this._updateCalculationNodes()},e.openCluster=function(t){var e=this.moving;if(t.clusterSize>this.constants.clustering.sectorThreshold&&this._nodeInActiveArea(t)&&("default"!=this._sector()||1!=this.nodeIndices.length)){this._addSector(t);for(var i=0;this.nodeIndices.lengthi;)this.decreaseClusterLevel(),i+=1}else this._expandClusterNode(t,!1,!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this._updateCalculationNodes(),this.updateLabels();this.moving!=e&&this.start()},e.updateClustersDefault=function(){1==this.constants.clustering.enabled&&this.updateClusters(0,!1,!1)},e.increaseClusterLevel=function(){this.updateClusters(-1,!1,!0)},e.decreaseClusterLevel=function(){this.updateClusters(1,!1,!0)},e.updateClusters=function(t,e,i,s){var o=this.moving,n=this.nodeIndices.length;this.previousScale>this.scale&&0==t&&this._collapseSector(),this.previousScale>this.scale||-1==t?this._formClusters(i):(this.previousScalethis.scale||-1==t)&&(this._aggregateHubs(i),this._updateNodeIndexList()),(this.previousScale>this.scale||-1==t)&&(this.handleChains(),this._updateNodeIndexList()),this.previousScale=this.scale,this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.lengththis.constants.clustering.chainThreshold&&this._reduceAmountOfChains(1-this.constants.clustering.chainThreshold/t)},e._aggregateHubs=function(t){this._getHubSize(),this._formClustersByHub(t,!1)},e.forceAggregateHubs=function(t){var e=this.moving,i=this.nodeIndices.length;this._aggregateHubs(!0),this._updateNodeIndexList(),this._updateDynamicEdges(),this.updateLabels(),this.nodeIndices.length!=i&&(this.clusterSession+=1),(0==t||void 0===t)&&this.moving!=e&&this.start()},e._openClustersBySize=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];1==e.inView()&&(e.width*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientWidth||e.height*this.scale>this.constants.clustering.screenSizeThreshold*this.frame.canvas.clientHeight)&&this.openCluster(e)}},e._openClusters=function(t,e){for(var i=0;i1&&(t.clusterSizei)){var r=n.from,a=n.to;n.to.options.mass>n.from.options.mass&&(r=n.to,a=n.from),1==a.dynamicEdgesLength?this._addToCluster(r,a,!1):1==r.dynamicEdgesLength&&this._addToCluster(a,r,!1)}}},e._forceClustersByZoom=function(){for(var t in this.nodes)if(this.nodes.hasOwnProperty(t)){var e=this.nodes[t];if(1==e.dynamicEdgesLength&&0!=e.dynamicEdges.length){var i=e.dynamicEdges[0],s=i.toId==e.id?this.nodes[i.fromId]:this.nodes[i.toId];e.id!=s.id&&(s.options.mass>e.options.mass?this._addToCluster(s,e,!0):this._addToCluster(e,s,!0))}}},e._clusterToSmallestNeighbour=function(t){for(var e=-1,i=null,s=0;so.clusterSessions.length&&(e=o.clusterSessions.length,i=o)}null!=o&&void 0!==this.nodes[o.id]&&this._addToCluster(o,t,!0)},e._formClustersByHub=function(t,e){for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&this._formClusterFromHub(this.nodes[i],t,e)},e._formClusterFromHub=function(t,e,i,s){if(void 0===s&&(s=0),t.dynamicEdgesLength>=this.hubThreshold&&0==i||t.dynamicEdgesLength==this.hubThreshold&&1==i){for(var o,n,r,a=this.constants.clustering.clusterEdgeThreshold/this.scale,h=!1,d=[],l=t.dynamicEdges.length,c=0;l>c;c++)d.push(t.dynamicEdges[c].id);if(0==e)for(h=!1,c=0;l>c;c++){var p=this.edges[d[c]];if(void 0!==p&&p.connected&&p.toId!=p.fromId&&(o=p.to.x-p.from.x,n=p.to.y-p.from.y,r=Math.sqrt(o*o+n*n),a>r)){h=!0;break}}if(!e&&h||e)for(c=0;l>c;c++)if(p=this.edges[d[c]],void 0!==p){var u=this.nodes[p.fromId==t.id?p.toId:p.fromId];u.dynamicEdges.length<=this.hubThreshold+s&&u.id!=t.id&&this._addToCluster(t,u,e)}}},e._addToCluster=function(t,e,i){t.containedNodes[e.id]=e;for(var s=0;s1)for(var s=0;s1&&(e.label="[".concat(String(e.clusterSize),"]"))}for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(e=this.nodes[t],1==e.clusterSize&&(e.label=void 0!==e.originalLabel?e.originalLabel:String(e.id)))},e.normalizeClusterLevels=function(){var t,e=0,i=1e9,s=0;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&(s=this.nodes[t].clusterSessions.length,s>e&&(e=s),i>s&&(i=s));if(e-i>this.constants.clustering.clusterLevelDifference){var o=this.nodeIndices.length,n=e-this.constants.clustering.clusterLevelDifference;for(t in this.nodes)this.nodes.hasOwnProperty(t)&&this.nodes[t].clusterSessions.lengths&&(s=n.dynamicEdgesLength),t+=n.dynamicEdgesLength,e+=Math.pow(n.dynamicEdgesLength,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r);this.hubThreshold=Math.floor(t+2*a),this.hubThreshold>s&&(this.hubThreshold=s)},e._reduceAmountOfChains=function(t){this.hubThreshold=2;var e=Math.floor(this.nodeIndices.length*t);for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&e>0&&(this._formClusterFromHub(this.nodes[i],!0,!0,1),e-=1)},e._getChainFraction=function(){var t=0,e=0;for(var i in this.nodes)this.nodes.hasOwnProperty(i)&&(2==this.nodes[i].dynamicEdgesLength&&this.nodes[i].dynamicEdges.length>=2&&(t+=1),e+=1);return t/e}},function(t,e,i){var s=i(1);e._putDataInSector=function(){this.sectors.active[this._sector()].nodes=this.nodes,this.sectors.active[this._sector()].edges=this.edges,this.sectors.active[this._sector()].nodeIndices=this.nodeIndices},e._switchToSector=function(t,e){void 0===e||"active"==e?this._switchToActiveSector(t):this._switchToFrozenSector(t)},e._switchToActiveSector=function(t){this.nodeIndices=this.sectors.active[t].nodeIndices,this.nodes=this.sectors.active[t].nodes,this.edges=this.sectors.active[t].edges},e._switchToSupportSector=function(){this.nodeIndices=this.sectors.support.nodeIndices,this.nodes=this.sectors.support.nodes,this.edges=this.sectors.support.edges},e._switchToFrozenSector=function(t){this.nodeIndices=this.sectors.frozen[t].nodeIndices,this.nodes=this.sectors.frozen[t].nodes,this.edges=this.sectors.frozen[t].edges},e._loadLatestSector=function(){this._switchToSector(this._sector())},e._sector=function(){return this.activeSector[this.activeSector.length-1]},e._previousSector=function(){if(this.activeSector.length>1)return this.activeSector[this.activeSector.length-2];throw new TypeError("there are not enough sectors in the this.activeSector array.")},e._setActiveSector=function(t){this.activeSector.push(t)},e._forgetLastSector=function(){this.activeSector.pop()},e._createNewSector=function(t){this.sectors.active[t]={nodes:{},edges:{},nodeIndices:[],formationScale:this.scale,drawingNode:void 0},this.sectors.active[t].drawingNode=new Node({id:t,color:{background:"#eaefef",border:"495c5e"}},{},{},this.constants),this.sectors.active[t].drawingNode.clusterSize=2},e._deleteActiveSector=function(t){delete this.sectors.active[t]},e._deleteFrozenSector=function(t){delete this.sectors.frozen[t]},e._freezeSector=function(t){this.sectors.frozen[t]=this.sectors.active[t],this._deleteActiveSector(t)},e._activateSector=function(t){this.sectors.active[t]=this.sectors.frozen[t],this._deleteFrozenSector(t)},e._mergeThisWithFrozen=function(t){for(var e in this.nodes)this.nodes.hasOwnProperty(e)&&(this.sectors.frozen[t].nodes[e]=this.nodes[e]);for(var i in this.edges)this.edges.hasOwnProperty(i)&&(this.sectors.frozen[t].edges[i]=this.edges[i]);for(var s=0;s1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInSupportSector=function(t,e){if(void 0===e)this._switchToSupportSector(),this[t]();else{this._switchToSupportSector();var i=Array.prototype.splice.call(arguments,1);i.length>1?this[t](i[0],i[1]):this[t](e)}this._loadLatestSector()},e._doInAllFrozenSectors=function(t,e){if(void 0===e)for(var i in this.sectors.frozen)this.sectors.frozen.hasOwnProperty(i)&&(this._switchToFrozenSector(i),this[t]());else for(var i in this.sectors.frozen)if(this.sectors.frozen.hasOwnProperty(i)){this._switchToFrozenSector(i);var s=Array.prototype.splice.call(arguments,1);s.length>1?this[t](s[0],s[1]):this[t](e)}this._loadLatestSector()},e._doInAllSectors=function(t,e){var i=Array.prototype.splice.call(arguments,1);void 0===e?(this._doInAllActiveSectors(t),this._doInAllFrozenSectors(t)):i.length>1?(this._doInAllActiveSectors(t,i[0],i[1]),this._doInAllFrozenSectors(t,i[0],i[1])):(this._doInAllActiveSectors(t,e),this._doInAllFrozenSectors(t,e))},e._clearNodeIndexList=function(){var t=this._sector();this.sectors.active[t].nodeIndices=[],this.nodeIndices=this.sectors.active[t].nodeIndices},e._drawSectorNodes=function(t,e){var i,s=1e9,o=-1e9,n=1e9,r=-1e9;for(var a in this.sectors[e])if(this.sectors[e].hasOwnProperty(a)&&void 0!==this.sectors[e][a].drawingNode){this._switchToSector(a,e),s=1e9,o=-1e9,n=1e9,r=-1e9;for(var h in this.nodes)this.nodes.hasOwnProperty(h)&&(i=this.nodes[h],i.resize(t),n>i.x-.5*i.width&&(n=i.x-.5*i.width),ri.y-.5*i.height&&(s=i.y-.5*i.height),o0?this.nodes[i[i.length-1]]:null},e._getEdgesOverlappingWith=function(t,e){var i=this.edges;for(var s in i)i.hasOwnProperty(s)&&i[s].isOverlappingWith(t)&&e.push(s)},e._getAllEdgesOverlappingWith=function(t){var e=[];return this._doInAllActiveSectors("_getEdgesOverlappingWith",t,e),e},e._getEdgeAt=function(t){var e=this._pointerToPositionObject(t),i=this._getAllEdgesOverlappingWith(e);return i.length>0?this.edges[i[i.length-1]]:null},e._addToSelection=function(t){t instanceof s?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t},e._addToHover=function(t){t instanceof s?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t},e._removeFromSelection=function(t){t instanceof s?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]},e._unselectAll=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].unselect();for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&this.selectionObj.edges[i].unselect();this.selectionObj={nodes:{},edges:{}},0==t&&this.emit("select",this.getSelection())},e._unselectClusters=function(t){void 0===t&&(t=!1);for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&this.selectionObj.nodes[e].clusterSize>1&&(this.selectionObj.nodes[e].unselect(),this._removeFromSelection(this.selectionObj.nodes[e]));0==t&&this.emit("select",this.getSelection())},e._getSelectedNodeCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedNode=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return null},e._getSelectedEdge=function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return null},e._getSelectedEdgeCount=function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t},e._getSelectedObjectCount=function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&(t+=1);return t},e._selectionIsEmpty=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return!1;for(var e in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(e))return!1;return!0},e._clusterInSelection=function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1},e._selectConnectedEdges=function(t){for(var e=0;ee;e++){s=t[e];var o=this.nodes[s];if(!o)throw new RangeError('Node with id "'+s+'" not found');this._selectObject(o,!0,!0)}console.log("setSelection is deprecated. Please use selectNodes instead."),this.redraw()},e.selectNodes=function(t,e){var i,s,o;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),i=0,s=t.length;s>i;i++){o=t[i];var n=this.nodes[o];if(!n)throw new RangeError('Node with id "'+o+'" not found');this._selectObject(n,!0,!0,e)}this.redraw()},e.selectEdges=function(t){var e,i,s;if(!t||void 0==t.length)throw"Selection must be an array with ids";for(this._unselectAll(!0),e=0,i=t.length;i>e;e++){s=t[e];var o=this.edges[s];if(!o)throw new RangeError('Edge with id "'+s+'" not found');this._selectObject(o,!0,!0,highlightEdges)}this.redraw()},e._updateSelection=function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&(this.nodes.hasOwnProperty(t)||delete this.selectionObj.nodes[t]);for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(this.edges.hasOwnProperty(e)||delete this.selectionObj.edges[e])}},function(t,e,i){var s=i(1),o=i(47),n=i(48);e._clearManipulatorBar=function(){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild)},e._restoreOverloadedFunctions=function(){for(var t in this.cachedFunctions)this.cachedFunctions.hasOwnProperty(t)&&(this[t]=this.cachedFunctions[t])},e._toggleEditMode=function(){this.editMode=!this.editMode;var t=document.getElementById("network-manipulationDiv"),e=document.getElementById("network-manipulation-closeDiv"),i=document.getElementById("network-manipulation-editMode");1==this.editMode?(t.style.display="block",e.style.display="block",i.style.display="none",e.onclick=this._toggleEditMode.bind(this)):(t.style.display="none",e.style.display="none",i.style.display="block",e.onclick=null),this._createManipulatorBar()},e._createManipulatorBar=function(){if(this.boundFunction&&this.off("select",this.boundFunction),void 0!==this.edgeBeingEdited&&(this.edgeBeingEdited._disableControlNodes(),this.edgeBeingEdited=void 0,this.selectedControlNode=null,this.controlNodesActive=!1),this._restoreOverloadedFunctions(),this.freezeSimulation=!1,this.blockConnectingEdgeSelection=!1,this.forceAppendSelection=!1,1==this.editMode){for(;this.manipulationDiv.hasChildNodes();)this.manipulationDiv.removeChild(this.manipulationDiv.firstChild);this.manipulationDiv.innerHTML=""+this.constants.labels.add+"
"+this.constants.labels.link+"",1==this._getSelectedNodeCount()&&this.triggerFunctions.edit?this.manipulationDiv.innerHTML+="
"+this.constants.labels.editNode+"":1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.editEdge+""),0==this._selectionIsEmpty()&&(this.manipulationDiv.innerHTML+="
"+this.constants.labels.del+"");var t=document.getElementById("network-manipulate-addNode");t.onclick=this._createAddNodeToolbar.bind(this);var e=document.getElementById("network-manipulate-connectNode");if(e.onclick=this._createAddEdgeToolbar.bind(this),1==this._getSelectedNodeCount()&&this.triggerFunctions.edit){var i=document.getElementById("network-manipulate-editNode");i.onclick=this._editNode.bind(this)}else if(1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()){var i=document.getElementById("network-manipulate-editEdge");i.onclick=this._createEditEdgeToolbar.bind(this)}if(0==this._selectionIsEmpty()){var s=document.getElementById("network-manipulate-delete");s.onclick=this._deleteSelected.bind(this)}var o=document.getElementById("network-manipulation-closeDiv");o.onclick=this._toggleEditMode.bind(this),this.boundFunction=this._createManipulatorBar.bind(this),this.on("select",this.boundFunction)}else{this.editModeDiv.innerHTML=""+this.constants.labels.edit+"";var n=document.getElementById("network-manipulate-editModeButton");n.onclick=this._toggleEditMode.bind(this)}},e._createAddNodeToolbar=function(){this._clearManipulatorBar(),this.boundFunction&&this.off("select",this.boundFunction),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.addDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._addNode.bind(this),this.on("select",this.boundFunction)},e._createAddEdgeToolbar=function(){this._clearManipulatorBar(),this._unselectAll(!0),this.freezeSimulation=!0,this.boundFunction&&this.off("select",this.boundFunction),this._unselectAll(),this.forceAppendSelection=!1,this.blockConnectingEdgeSelection=!0,this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.linkDescription+""; +var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.boundFunction=this._handleConnect.bind(this),this.on("select",this.boundFunction),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this._handleTouch=this._handleConnect,this._handleOnRelease=this._finishConnect,this._redraw()},e._createEditEdgeToolbar=function(){this._clearManipulatorBar(),this.controlNodesActive=!0,this.boundFunction&&this.off("select",this.boundFunction),this.edgeBeingEdited=this._getSelectedEdge(),this.edgeBeingEdited._enableControlNodes(),this.manipulationDiv.innerHTML=""+this.constants.labels.back+"
"+this.constants.labels.editEdgeDescription+"";var t=document.getElementById("network-manipulate-back");t.onclick=this._createManipulatorBar.bind(this),this.cachedFunctions._handleTouch=this._handleTouch,this.cachedFunctions._handleOnRelease=this._handleOnRelease,this.cachedFunctions._handleTap=this._handleTap,this.cachedFunctions._handleDragStart=this._handleDragStart,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleTouch=this._selectControlNode,this._handleTap=function(){},this._handleOnDrag=this._controlNodeDrag,this._handleDragStart=function(){},this._handleOnRelease=this._releaseControlNode,this._redraw()},e._selectControlNode=function(t){this.edgeBeingEdited.controlNodes.from.unselect(),this.edgeBeingEdited.controlNodes.to.unselect(),this.selectedControlNode=this.edgeBeingEdited._getSelectedControlNode(this._XconvertDOMtoCanvas(t.x),this._YconvertDOMtoCanvas(t.y)),null!==this.selectedControlNode&&(this.selectedControlNode.select(),this.freezeSimulation=!0),this._redraw()},e._controlNodeDrag=function(t){var e=this._getPointer(t.gesture.center);null!==this.selectedControlNode&&void 0!==this.selectedControlNode&&(this.selectedControlNode.x=this._XconvertDOMtoCanvas(e.x),this.selectedControlNode.y=this._YconvertDOMtoCanvas(e.y)),this._redraw()},e._releaseControlNode=function(t){var e=this._getNodeAt(t);null!=e?(1==this.edgeBeingEdited.controlNodes.from.selected&&(this._editEdge(e.id,this.edgeBeingEdited.to.id),this.edgeBeingEdited.controlNodes.from.unselect()),1==this.edgeBeingEdited.controlNodes.to.selected&&(this._editEdge(this.edgeBeingEdited.from.id,e.id),this.edgeBeingEdited.controlNodes.to.unselect())):this.edgeBeingEdited._restoreControlNodes(),this.freezeSimulation=!1,this._redraw()},e._handleConnect=function(t){if(0==this._getSelectedNodeCount()){var e=this._getNodeAt(t);null!=e&&(e.clusterSize>1?alert("Cannot create edges to a cluster."):(this._selectObject(e,!1),this.sectors.support.nodes.targetNode=new o({id:"targetNode"},{},{},this.constants),this.sectors.support.nodes.targetNode.x=e.x,this.sectors.support.nodes.targetNode.y=e.y,this.sectors.support.nodes.targetViaNode=new o({id:"targetViaNode"},{},{},this.constants),this.sectors.support.nodes.targetViaNode.x=e.x,this.sectors.support.nodes.targetViaNode.y=e.y,this.sectors.support.nodes.targetViaNode.parentEdgeId="connectionEdge",this.edges.connectionEdge=new n({id:"connectionEdge",from:e.id,to:this.sectors.support.nodes.targetNode.id},this,this.constants),this.edges.connectionEdge.from=e,this.edges.connectionEdge.connected=!0,this.edges.connectionEdge.smooth=!0,this.edges.connectionEdge.selected=!0,this.edges.connectionEdge.to=this.sectors.support.nodes.targetNode,this.edges.connectionEdge.via=this.sectors.support.nodes.targetViaNode,this.cachedFunctions._handleOnDrag=this._handleOnDrag,this._handleOnDrag=function(t){var e=this._getPointer(t.gesture.center);this.sectors.support.nodes.targetNode.x=this._XconvertDOMtoCanvas(e.x),this.sectors.support.nodes.targetNode.y=this._YconvertDOMtoCanvas(e.y),this.sectors.support.nodes.targetViaNode.x=.5*(this._XconvertDOMtoCanvas(e.x)+this.edges.connectionEdge.from.x),this.sectors.support.nodes.targetViaNode.y=this._YconvertDOMtoCanvas(e.y)},this.moving=!0,this.start()))}},e._finishConnect=function(t){if(1==this._getSelectedNodeCount()){this._handleOnDrag=this.cachedFunctions._handleOnDrag,delete this.cachedFunctions._handleOnDrag;var e=this.edges.connectionEdge.fromId;delete this.edges.connectionEdge,delete this.sectors.support.nodes.targetNode,delete this.sectors.support.nodes.targetViaNode;var i=this._getNodeAt(t);null!=i&&(i.clusterSize>1?alert("Cannot create edges to a cluster."):(this._createEdge(e,i.id),this._createManipulatorBar())),this._unselectAll()}},e._addNode=function(){if(this._selectionIsEmpty()&&1==this.editMode){var t=this._pointerToPositionObject(this.pointerPosition),e={id:s.randomUUID(),x:t.left,y:t.top,label:"new",allowedToMoveX:!0,allowedToMoveY:!0};if(this.triggerFunctions.add)if(2==this.triggerFunctions.add.length){var i=this;this.triggerFunctions.add(e,function(t){i.nodesData.add(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.addError),this._createManipulatorBar(),this.moving=!0,this.start();else this.nodesData.add(e),this._createManipulatorBar(),this.moving=!0,this.start()}},e._createEdge=function(t,e){if(1==this.editMode){var i={from:t,to:e};if(this.triggerFunctions.connect)if(2==this.triggerFunctions.connect.length){var s=this;this.triggerFunctions.connect(i,function(t){s.edgesData.add(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.add(i),this.moving=!0,this.start()}},e._editEdge=function(t,e){if(1==this.editMode){var i={id:this.edgeBeingEdited.id,from:t,to:e};if(this.triggerFunctions.editEdge)if(2==this.triggerFunctions.editEdge.length){var s=this;this.triggerFunctions.editEdge(i,function(t){s.edgesData.update(t),s.moving=!0,s.start()})}else alert(this.constants.labels.linkError),this.moving=!0,this.start();else this.edgesData.update(i),this.moving=!0,this.start()}},e._editNode=function(){if(this.triggerFunctions.edit&&1==this.editMode){var t=this._getSelectedNode(),e={id:t.id,label:t.label,group:t.options.group,shape:t.options.shape,color:{background:t.options.color.background,border:t.options.color.border,highlight:{background:t.options.color.highlight.background,border:t.options.color.highlight.border}}};if(2==this.triggerFunctions.edit.length){var i=this;this.triggerFunctions.edit(e,function(t){i.nodesData.update(t),i._createManipulatorBar(),i.moving=!0,i.start()})}else alert(this.constants.labels.editError)}else alert(this.constants.labels.editBoundError)},e._deleteSelected=function(){if(!this._selectionIsEmpty()&&1==this.editMode)if(this._clusterInSelection())alert(this.constants.labels.deleteClusterError);else{var t=this.getSelectedNodes(),e=this.getSelectedEdges();if(this.triggerFunctions.del){var i=this,s={nodes:t,edges:e};(this.triggerFunctions.del.length=2)?this.triggerFunctions.del(s,function(t){i.edgesData.remove(t.edges),i.nodesData.remove(t.nodes),i._unselectAll(),i.moving=!0,i.start()}):alert(this.constants.labels.deleteError)}else this.edgesData.remove(e),this.nodesData.remove(t),this._unselectAll(),this.moving=!0,this.start()}}},function(t,e,i){var s=i(1),o=i(18);e._cleanNavigation=function(){var t=document.getElementById("network-navigation_wrapper");null!=t&&this.containerElement.removeChild(t),document.onmouseup=null},e._loadNavigationElements=function(){this._cleanNavigation(),this.navigationDivs={};var t=["up","down","left","right","zoomIn","zoomOut","zoomExtends"],e=["_moveUp","_moveDown","_moveLeft","_moveRight","_zoomIn","_zoomOut","zoomExtent"];this.navigationDivs.wrapper=document.createElement("div"),this.navigationDivs.wrapper.id="network-navigation_wrapper",this.navigationDivs.wrapper.style.position="absolute",this.navigationDivs.wrapper.style.width=this.frame.canvas.clientWidth+"px",this.navigationDivs.wrapper.style.height=this.frame.canvas.clientHeight+"px",this.containerElement.insertBefore(this.navigationDivs.wrapper,this.frame);for(var i=this,s=0;s0){"RL"==this.constants.hierarchicalLayout.direction||"DU"==this.constants.hierarchicalLayout.direction?this.constants.hierarchicalLayout.levelSeparation*=-1:this.constants.hierarchicalLayout.levelSeparation=Math.abs(this.constants.hierarchicalLayout.levelSeparation),"RL"==this.constants.hierarchicalLayout.direction||"LR"==this.constants.hierarchicalLayout.direction?1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="vertical"):1==this.constants.smoothCurves.enabled&&(this.constants.smoothCurves.type="horizontal");var t,e,i=0,s=!1,o=!1;for(e in this.nodes)this.nodes.hasOwnProperty(e)&&(t=this.nodes[e],-1!=t.level?s=!0:o=!0,is&&(n.xFixed=!1,n.x=i[n.level].minPos,r=!0):n.yFixed&&n.level>s&&(n.yFixed=!1,n.y=i[n.level].minPos,r=!0),1==r&&(i[n.level].minPos+=i[n.level].nodeSpacing,n.edges.length>1&&this._placeBranchNodes(n.edges,n.id,i,n.level))}},e._setLevel=function(t,e,i){for(var s=0;st)&&(o.level=t,e.length>1&&this._setLevel(t+1,o.edges,o.id))}},e._restoreNodes=function(){for(var t in this.nodes)this.nodes.hasOwnProperty(t)&&(this.nodes[t].xFixed=!1,this.nodes[t].yFixed=!1)}},function(){"undefined"!=typeof CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.circle=function(t,e,i){this.beginPath(),this.arc(t,e,i,0,2*Math.PI,!1)},CanvasRenderingContext2D.prototype.square=function(t,e,i){this.beginPath(),this.rect(t-i,e-i,2*i,2*i)},CanvasRenderingContext2D.prototype.triangle=function(t,e,i){this.beginPath();var s=2*i,o=s/2,n=Math.sqrt(3)/6*s,r=Math.sqrt(s*s-o*o);this.moveTo(t,e-(r-n)),this.lineTo(t+o,e+n),this.lineTo(t-o,e+n),this.lineTo(t,e-(r-n)),this.closePath()},CanvasRenderingContext2D.prototype.triangleDown=function(t,e,i){this.beginPath();var s=2*i,o=s/2,n=Math.sqrt(3)/6*s,r=Math.sqrt(s*s-o*o);this.moveTo(t,e+(r-n)),this.lineTo(t+o,e-n),this.lineTo(t-o,e-n),this.lineTo(t,e+(r-n)),this.closePath()},CanvasRenderingContext2D.prototype.star=function(t,e,i){this.beginPath();for(var s=0;10>s;s++){var o=s%2===0?1.3*i:.5*i;this.lineTo(t+o*Math.sin(2*s*Math.PI/10),e-o*Math.cos(2*s*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,s,o){var n=Math.PI/180;0>i-2*o&&(o=i/2),0>s-2*o&&(o=s/2),this.beginPath(),this.moveTo(t+o,e),this.lineTo(t+i-o,e),this.arc(t+i-o,e+o,o,270*n,360*n,!1),this.lineTo(t+i,e+s-o),this.arc(t+i-o,e+s-o,o,0,90*n,!1),this.lineTo(t+o,e+s),this.arc(t+o,e+s-o,o,90*n,180*n,!1),this.lineTo(t,e+o),this.arc(t+o,e+o,o,180*n,270*n,!1)},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,s){var o=.5522848,n=i/2*o,r=s/2*o,a=t+i,h=e+s,d=t+i/2,l=e+s/2;this.beginPath(),this.moveTo(t,l),this.bezierCurveTo(t,l-r,d-n,e,d,e),this.bezierCurveTo(d+n,e,a,l-r,a,l),this.bezierCurveTo(a,l+r,d+n,h,d,h),this.bezierCurveTo(d-n,h,t,l+r,t,l)},CanvasRenderingContext2D.prototype.database=function(t,e,i,s){var o=1/3,n=i,r=s*o,a=.5522848,h=n/2*a,d=r/2*a,l=t+n,c=e+r,p=t+n/2,u=e+r/2,f=e+(s-r/2),m=e+s;this.beginPath(),this.moveTo(l,u),this.bezierCurveTo(l,u+d,p+h,c,p,c),this.bezierCurveTo(p-h,c,t,u+d,t,u),this.bezierCurveTo(t,u-d,p-h,e,p,e),this.bezierCurveTo(p+h,e,l,u-d,l,u),this.lineTo(l,f),this.bezierCurveTo(l,f+d,p+h,m,p,m),this.bezierCurveTo(p-h,m,t,f+d,t,f),this.lineTo(t,u)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,s){var o=t-s*Math.cos(i),n=e-s*Math.sin(i),r=t-.9*s*Math.cos(i),a=e-.9*s*Math.sin(i),h=o+s/3*Math.cos(i+.5*Math.PI),d=n+s/3*Math.sin(i+.5*Math.PI),l=o+s/3*Math.cos(i-.5*Math.PI),c=n+s/3*Math.sin(i-.5*Math.PI);this.beginPath(),this.moveTo(t,e),this.lineTo(h,d),this.lineTo(r,a),this.lineTo(l,c),this.closePath()},CanvasRenderingContext2D.prototype.dashedLine=function(t,e,i,s,o){o||(o=[10,5]),0==p&&(p=.001);var n=o.length;this.moveTo(t,e);for(var r=i-t,a=s-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,c=!0;d>=.1;){var p=o[l++%n];p>d&&(p=d);var u=Math.sqrt(p*p/(1+h*h));0>r&&(u=-u),t+=u,e+=h*u,this[c?"lineTo":"moveTo"](t,e),d-=p,c=!c}})}])}); //# sourceMappingURL=vis.map \ No newline at end of file diff --git a/examples/graph2d/12_customRange.html b/examples/graph2d/12_customRange.html new file mode 100644 index 00000000..d8877097 --- /dev/null +++ b/examples/graph2d/12_customRange.html @@ -0,0 +1,94 @@ + + + + Graph2d | Bar Graph Example + + + + + + + +

Graph2d | Custom axis range

+
+ You can define a custom range for the Y axis. Since there are two Y axis, you can define both of them. You can also + only define the min or max values. Since one of the Y axis is slaved to the other one (the right one is slaved to the left one), + you cannot absolutely define the range of the slaved axis because it has to use the same lines. The values you supply are used as guidelines however. + +
+var options = {
+    dataAxis: {
+        customRange: {
+            left: {
+                min:-5, max:30
+            },
+            right: {
+                min:-5
+            }
+        },
+    }
+};
+
+
+
+ +
+ + + + \ No newline at end of file diff --git a/examples/graph2d/index.html b/examples/graph2d/index.html index 6faef8e9..c0fc098b 100644 --- a/examples/graph2d/index.html +++ b/examples/graph2d/index.html @@ -18,6 +18,7 @@

09_external_legend.html

10_barsSideBySide.html

11_barsSideBySideGroups.html

+

12_customRange.html

diff --git a/lib/timeline/DataStep.js b/lib/timeline/DataStep.js index 85793fc9..c0bd658f 100644 --- a/lib/timeline/DataStep.js +++ b/lib/timeline/DataStep.js @@ -24,7 +24,7 @@ * @param {Date} [end] The end date * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds */ -function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { +function DataStep(start, end, minimumStep, containerHeight, customRange) { // variables this.current = 0; @@ -35,11 +35,12 @@ function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { this.marginStart; this.marginEnd; + this.deadSpace = 0; this.majorSteps = [1, 2, 5, 10]; this.minorSteps = [0.25, 0.5, 1, 2]; - this.setRange(start, end, minimumStep, containerHeight, forcedStepSize); + this.setRange(start, end, minimumStep, containerHeight, customRange); } @@ -54,9 +55,9 @@ function DataStep(start, end, minimumStep, containerHeight, forcedStepSize) { * @param {Number} [end] The end date and time. * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds */ -DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, forcedStepSize) { - this._start = start; - this._end = end; +DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, customRange) { + this._start = customRange.min === undefined ? start : customRange.min; + this._end = customRange.max === undefined ? end : customRange.max; if (start == end) { this._start = start - 0.75; @@ -64,9 +65,9 @@ DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, } if (this.autoScale) { - this.setMinimumStep(minimumStep, containerHeight, forcedStepSize); + this.setMinimumStep(minimumStep, containerHeight); } - this.setFirst(); + this.setFirst(customRange); }; /** @@ -76,7 +77,7 @@ DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight, DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { // round to floor var size = this._end - this._start; - var safeSize = size * 1.1; + var safeSize = size * 1.2; var minimumStepValue = minimumStep * (safeSize / containerHeight); var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); @@ -109,23 +110,21 @@ DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { }; -/** - * Set the range iterator to the start date. - */ -DataStep.prototype.first = function() { - this.setFirst(); -}; /** * Round the current date to the first minor date value * This must be executed once when the current date is set to start Date */ -DataStep.prototype.setFirst = function() { - var niceStart = this._start - (this.scale * this.minorSteps[this.stepIndex]); - var niceEnd = this._end + (this.scale * this.minorSteps[this.stepIndex]); +DataStep.prototype.setFirst = function(customRange) { + if (customRange === undefined) { + customRange = {}; + } + var niceStart = customRange.min === undefined ? this._start - (this.scale * 2 * this.minorSteps[this.stepIndex]) : customRange.min; + var niceEnd = customRange.max === undefined ? this._end + (this.scale * this.minorSteps[this.stepIndex]) : customRange.max; - this.marginEnd = this.roundToMinor(niceEnd); - this.marginStart = this.roundToMinor(niceStart); + this.marginEnd = customRange.max === undefined ? this.roundToMinor(niceEnd) : customRange.max; + this.marginStart = customRange.min === undefined ? this.roundToMinor(niceStart) : customRange.min; + this.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; this.marginRange = this.marginEnd - this.marginStart; this.current = this.marginEnd; diff --git a/lib/timeline/component/DataAxis.js b/lib/timeline/component/DataAxis.js index ef89089a..42b31c41 100644 --- a/lib/timeline/component/DataAxis.js +++ b/lib/timeline/component/DataAxis.js @@ -26,7 +26,11 @@ function DataAxis (body, options, svg) { labelOffsetY: 2, iconWidth: 20, width: '40px', - visible: true + visible: true, + customRange: { + left: {min:undefined, max:undefined}, + right: {min:undefined, max:undefined} + } }; this.linegraphSVG = svg; @@ -102,7 +106,9 @@ DataAxis.prototype.setOptions = function (options) { 'labelOffsetY', 'iconWidth', 'width', - 'visible']; + 'visible', + 'customRange' + ]; util.selectiveExtend(fields, this.options, options); this.minWidth = Number(('' + this.options.width).replace("px","")); @@ -289,11 +295,11 @@ DataAxis.prototype._redrawLabels = function () { // calculate range and step (step such that we have space for 7 characters per label) var minimumStep = this.master ? this.props.majorCharHeight || 10 : this.stepPixelsForced; - var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight); + var step = new DataStep(this.range.start, this.range.end, minimumStep, this.dom.frame.offsetHeight, this.options.customRange[this.options.orientation]); this.step = step; - step.first(); // get the distance in pixels for a step - var stepPixels = this.dom.frame.offsetHeight / ((step.marginRange / step.step) + 1); + // dead space is space that is "left over" after a step + var stepPixels = (this.dom.frame.offsetHeight - (step.deadSpace * (this.dom.frame.offsetHeight / step.marginRange))) / (((step.marginRange - step.deadSpace) / step.step)); this.stepPixels = stepPixels; var amountOfSteps = this.height / stepPixels; @@ -301,12 +307,15 @@ DataAxis.prototype._redrawLabels = function () { if (this.master == false) { stepPixels = this.stepPixelsForced; - stepDifference = Math.round((this.height / stepPixels) - amountOfSteps); + stepDifference = Math.round((this.dom.frame.offsetHeight / stepPixels) - amountOfSteps); for (var i = 0; i < 0.5 * stepDifference; i++) { step.previous(); } amountOfSteps = this.height / stepPixels; } + else { + amountOfSteps += 0.25; + } this.valueAtZero = step.marginEnd; @@ -314,12 +323,11 @@ DataAxis.prototype._redrawLabels = function () { // do not draw the first label var max = 1; - step.next(); this.maxLabelSize = 0; var y = 0; while (max < Math.round(amountOfSteps)) { - + step.next(); y = Math.round(max * stepPixels); marginStartPos = max * stepPixels; var isMajor = step.isMajor(); @@ -339,11 +347,15 @@ DataAxis.prototype._redrawLabels = function () { this._redrawLine(y, orientation, 'grid horizontal minor', this.options.minorLinesOffset, this.props.minorLineWidth); } - step.next(); max++; } - this.conversionFactor = marginStartPos/((amountOfSteps-1) * step.step); + if (this.master == false) { + this.conversionFactor = y / (this.valueAtZero - step.current); + } + else { + this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; + } var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; // this will resize the yAxis to accomodate the labels. @@ -371,6 +383,12 @@ DataAxis.prototype._redrawLabels = function () { } }; +DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; +}; + /** * Create a label for the axis at position x * @private @@ -431,11 +449,7 @@ DataAxis.prototype._redrawLine = function (y, orientation, className, offset, wi }; -DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; // the -2 is to compensate for the borders -}; + /** diff --git a/lib/timeline/component/LineGraph.js b/lib/timeline/component/LineGraph.js index 0abf7c0e..46aee124 100644 --- a/lib/timeline/component/LineGraph.js +++ b/lib/timeline/component/LineGraph.js @@ -51,7 +51,11 @@ function LineGraph(body, options) { showMajorLabels: true, icons: false, width: '40px', - visible: true + visible: true, + customRange: { + left: {min:undefined, max:undefined}, + right: {min:undefined, max:undefined} + } }, legend: { enabled: false,