From 613030e99d262e18412ff45886905111d451d043 Mon Sep 17 00:00:00 2001 From: jos Date: Thu, 21 Aug 2014 17:24:10 +0200 Subject: [PATCH] Updated /dist/ folder --- dist/vis.js | 47844 +++++++++++++++++++++++----------------------- dist/vis.map | 2 +- dist/vis.min.js | 24 +- 3 files changed, 23935 insertions(+), 23935 deletions(-) diff --git a/dist/vis.js b/dist/vis.js index f4a61c61..490e51f0 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__(6); + exports.DOMutil = __webpack_require__(2); // data - exports.DataSet = __webpack_require__(7); - exports.DataView = __webpack_require__(8); + exports.DataSet = __webpack_require__(3); + exports.DataView = __webpack_require__(4); // Graph3d - exports.Graph3d = __webpack_require__(9); + exports.Graph3d = __webpack_require__(5); exports.graph3d = { - Camera: __webpack_require__(13), - Filter: __webpack_require__(14), - Point2d: __webpack_require__(12), - Point3d: __webpack_require__(11), - Slider: __webpack_require__(15), - StepNumber: __webpack_require__(16) + Camera: __webpack_require__(6), + Filter: __webpack_require__(7), + Point2d: __webpack_require__(8), + Point3d: __webpack_require__(9), + Slider: __webpack_require__(10), + StepNumber: __webpack_require__(11) }; // Timeline - exports.Timeline = __webpack_require__(17); - exports.Graph2d = __webpack_require__(36); + exports.Timeline = __webpack_require__(12); + exports.Graph2d = __webpack_require__(13); exports.timeline = { - DataStep: __webpack_require__(39), - Range: __webpack_require__(20), - stack: __webpack_require__(31), - TimeStep: __webpack_require__(25), + DataStep: __webpack_require__(14), + Range: __webpack_require__(15), + stack: __webpack_require__(16), + TimeStep: __webpack_require__(17), components: { items: { - Item: __webpack_require__(33), - ItemBox: __webpack_require__(34), - ItemPoint: __webpack_require__(35), - ItemRange: __webpack_require__(32) + Item: __webpack_require__(28), + ItemBox: __webpack_require__(29), + ItemPoint: __webpack_require__(30), + ItemRange: __webpack_require__(31) }, - Component: __webpack_require__(22), - CurrentTime: __webpack_require__(26), - CustomTime: __webpack_require__(28), - DataAxis: __webpack_require__(38), - GraphGroup: __webpack_require__(40), - Group: __webpack_require__(30), - ItemSet: __webpack_require__(29), - Legend: __webpack_require__(41), - LineGraph: __webpack_require__(37), - TimeAxis: __webpack_require__(24) + 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) } }; // Network - exports.Network = __webpack_require__(42); + exports.Network = __webpack_require__(32); exports.network = { - Edge: __webpack_require__(49), - Groups: __webpack_require__(46), - Images: __webpack_require__(47), - Node: __webpack_require__(48), - Popup: __webpack_require__(50), - dotparser: __webpack_require__(44), - gephiParser: __webpack_require__(45) + 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) }; // Deprecated since v3.0.0 @@ -146,8 +146,8 @@ return /******/ (function(modules) { // webpackBootstrap }; // bundled external libraries - exports.moment = __webpack_require__(2); - exports.hammer = __webpack_require__(18); + exports.moment = __webpack_require__(40); + exports.hammer = __webpack_require__(41); /***/ }, @@ -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__(2); + var moment = __webpack_require__(40); /** * Test whether given object is a number @@ -1405,11487 +1405,10853 @@ return /******/ (function(modules) { // webpackBootstrap /* 2 */ /***/ function(module, exports, __webpack_require__) { - // 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); + // 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 = []; + } + } + }; -/***/ }, -/* 3 */ -/***/ function(module, exports, __webpack_require__) { + /** + * 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 = []; + } + } + } + }; - var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js - //! version : 2.8.1 - //! authors : Tim Wood, Iskren Chernev, Moment.js contributors - //! license : MIT - //! momentjs.com + /** + * 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; + }; - (function (undefined) { - /************************************ - Constants - ************************************/ - var moment, - VERSION = '2.8.1', - // the global-scope this is NOT the global object in Node.js - globalScope = typeof global !== 'undefined' ? global : this, - oldGlobalMoment, - round = Math.round, - i, + /** + * 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; + }; - YEAR = 0, - MONTH = 1, - DATE = 2, - HOUR = 3, - MINUTE = 4, - SECOND = 5, - MILLISECOND = 6, - // internal storage for locale config files - locales = {}, - // extra moment internal properties (plugins register props here) - momentProperties = [], - // check for nodeJS - hasModule = (typeof module !== 'undefined' && module.exports), + /** + * 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; + }; - // ASP.NET json date format regex - aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, - aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, + /** + * 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); + // } + }; - // 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)$/, +/***/ }, +/* 3 */ +/***/ function(module, exports, __webpack_require__) { - // 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, + var util = __webpack_require__(1); - // 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}/, + /** + * 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, + /** + * Subscribe to an event, add an event listener + * @param {String} event Event name. Available events: 'put', 'update', + * 'remove' + * @param {function} callback Callback method. Called with three parameters: + * {String} event + * {Object | null} params + * {String | Number} senderId + */ + DataSet.prototype.on = function(event, callback) { + var subscribers = this._subscribers[event]; + if (!subscribers) { + subscribers = []; + this._subscribers[event] = subscribers; + } - // 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 - }, + subscribers.push({ + callback: callback + }); + }; - 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' - }, + // TODO: make this function deprecated (replaced with `on` since version 0.5) + DataSet.prototype.subscribe = DataSet.prototype.on; - camelFunctions = { - dayofyear : 'dayOfYear', - isoweekday : 'isoWeekday', - isoweek : 'isoWeek', - weekyear : 'weekYear', - isoweekyear : 'isoWeekYear' - }, + /** + * 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); + }); + } + }; - // format function strings - formatFunctions = {}, + // TODO: make this function deprecated (replaced with `on` since version 0.5) + DataSet.prototype.unsubscribe = DataSet.prototype.off; - // default relative time thresholds - relativeTimeThresholds = { - s: 45, // seconds to minute - m: 45, // minutes to hour - h: 22, // hours to day - d: 26, // days to month - M: 11 // months to year - }, + /** + * Trigger an event + * @param {String} event + * @param {Object | null} params + * @param {String} [senderId] Optional id of the sender. + * @private + */ + DataSet.prototype._trigger = function (event, params, senderId) { + if (event == '*') { + throw new Error('Cannot trigger event *'); + } - // tokens to ordinalize and pad - ordinalizeTokens = 'DDD w W M D d'.split(' '), - paddedTokens = 'M D H h m s w W'.split(' '), + var subscribers = []; + if (event in this._subscribers) { + subscribers = subscribers.concat(this._subscribers[event]); + } + if ('*' in this._subscribers) { + subscribers = subscribers.concat(this._subscribers['*']); + } - formatTokenFunctions = { - M : function () { - return this.month() + 1; - }, - MMM : function (format) { - return this.localeData().monthsShort(this, format); - }, - MMMM : function (format) { - return this.localeData().months(this, format); - }, - D : function () { - return this.date(); - }, - DDD : function () { - return this.dayOfYear(); - }, - d : function () { - return this.day(); - }, - dd : function (format) { - return this.localeData().weekdaysMin(this, format); - }, - ddd : function (format) { - return this.localeData().weekdaysShort(this, format); - }, - dddd : function (format) { - return this.localeData().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.localeData().meridiem(this.hours(), this.minutes(), true); - }, - A : function () { - return this.localeData().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(); - } - }, - - deprecations = {}, - - 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'); - } - } - - 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 - }; - } - - function printMsg(msg) { - if (moment.suppressDeprecationWarnings === false && - typeof console !== 'undefined' && console.warn) { - console.warn("Deprecation warning: " + msg); - } + for (var i = 0; i < subscribers.length; i++) { + var subscriber = subscribers[i]; + if (subscriber.callback) { + subscriber.callback(event, params, senderId || null); } + } + }; - function deprecate(msg, fn) { - var firstTime = true; - return extend(function () { - if (firstTime) { - printMsg(msg); - firstTime = false; - } - return fn.apply(this, arguments); - }, fn); - } + /** + * 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 + */ + DataSet.prototype.add = function (data, senderId) { + var addedIds = [], + id, + me = this; - function deprecateSimple(name, msg) { - if (!deprecations[name]) { - printMsg(msg); - deprecations[name] = true; - } + 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); + } - function padToken(func, count) { - return function (a) { - return leftZeroFill(func.call(this, a), count); - }; - } - function ordinalizeToken(func, period) { - return function (a) { - return this.localeData().ordinal(func.call(this, a), period); - }; + 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'); + } - 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); + if (addedIds.length) { + this._trigger('add', {items: addedIds}, senderId); + } + return addedIds; + }; - /************************************ - Constructors - ************************************/ + /** + * 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; - function Locale() { + var addOrUpdate = function (item) { + var id = item[fieldId]; + if (me._data[id]) { + // update item + id = me._updateItem(item); + updatedIds.push(id); } - - // Moment prototype object - function Moment(config, skipOverflow) { - if (skipOverflow !== false) { - checkOverflow(config); - } - copyConfig(this, config); - this._d = new Date(+config._d); + else { + // add new item + id = me._addItem(item); + addedIds.push(id); } + }; - // 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; - - this._data = {}; - - this._locale = moment.localeData(); + 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); + } - this._bubble(); + addOrUpdate(item); } + } + else if (data instanceof Object) { + // Single item + addOrUpdate(data); + } + else { + throw new Error('Unknown dataType'); + } - /************************************ - Helpers - ************************************/ + if (addedIds.length) { + this._trigger('add', {items: addedIds}, senderId); + } + if (updatedIds.length) { + this._trigger('update', {items: updatedIds}, senderId); + } + return addedIds.concat(updatedIds); + }; - 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; - } - - function copyConfig(to, from) { - var i, prop, val; + /** + * 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; - if (typeof from._isAMomentObject !== 'undefined') { - to._isAMomentObject = from._isAMomentObject; - } - if (typeof from._i !== 'undefined') { - to._i = from._i; - } - if (typeof from._f !== 'undefined') { - to._f = from._f; - } - if (typeof from._l !== 'undefined') { - to._l = from._l; - } - if (typeof from._strict !== 'undefined') { - to._strict = from._strict; - } - if (typeof from._tzm !== 'undefined') { - to._tzm = from._tzm; - } - if (typeof from._isUTC !== 'undefined') { - to._isUTC = from._isUTC; - } - if (typeof from._offset !== 'undefined') { - to._offset = from._offset; - } - if (typeof from._pf !== 'undefined') { - to._pf = from._pf; - } - if (typeof from._locale !== 'undefined') { - to._locale = from._locale; - } + // 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]; + } - if (momentProperties.length > 0) { - for (i in momentProperties) { - prop = momentProperties[i]; - val = from[prop]; - if (typeof val !== 'undefined') { - to[prop] = val; - } - } - } + // determine the return type + var returnType; + if (options && options.returnType) { + var allowedValues = ["DataTable", "Array", "Object"]; + returnType = allowedValues.indexOf(options.returnType) == -1 ? "Array" : options.returnType; - return to; + 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 + ')'); } - - function absRound(number) { - if (number < 0) { - return Math.ceil(number); - } else { - return Math.floor(number); - } + 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'; + } - // 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; + // build options + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = [], item, itemId, i, len; - while (output.length < targetLength) { - output = '0' + output; - } - return (sign ? (forceSign ? '+' : '') : '-') + output; + // convert items + if (id != undefined) { + // return a single item + item = me._getItem(id, type); + if (filter && !filter(item)) { + item = null; } - - function positiveMomentsDifference(base, other) { - var res = {milliseconds: 0, months: 0}; - - res.months = other.month() - base.month() + - (other.year() - base.year()) * 12; - if (base.clone().add(res.months, 'M').isAfter(other)) { - --res.months; - } - - res.milliseconds = +other - +(base.clone().add(res.months, 'M')); - - return res; + } + 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); + } } - - function momentsDifference(base, other) { - var res; - other = makeAs(other, base); - if (base.isBefore(other)) { - res = positiveMomentsDifference(base, other); - } else { - res = positiveMomentsDifference(other, base); - res.milliseconds = -res.milliseconds; - res.months = -res.months; + } + 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); } - - return res; + } } + } - // TODO: remove 'name' arg after deprecation is removed - function createAdder(direction, name) { - return function (val, period) { - var dur, tmp; - //invert the arguments, but complain about it - if (period !== null && !isNaN(+period)) { - deprecateSimple(name, "moment()." + name + "(period, number) is deprecated. Please use moment()." + name + "(number, period)."); - tmp = val; val = period; period = tmp; - } + // order the results + if (options && options.order && id == undefined) { + this._sort(items, options.order); + } - val = typeof val === 'string' ? +val : val; - dur = moment.duration(val, period); - addOrSubtractDurationFromMoment(this, dur, direction); - return this; - }; + // filter fields of the items + if (options && options.fields) { + var fields = options.fields; + if (id != undefined) { + item = this._filterFields(item, fields); } - - 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); - } + else { + for (i = 0, len = items.length; i < len; i++) { + items[i] = this._filterFields(items[i], fields); + } } + } - // check if is an array - function isArray(input) { - return Object.prototype.toString.call(input) === '[object Array]'; + // 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); } - - function isDate(input) { - return Object.prototype.toString.call(input) === '[object Date]' || - input instanceof Date; + else { + // copy the items to the provided data table + for (i = 0; i < items.length; i++) { + me._appendRow(data, columns, 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 diffs + lengthDiff; + return data; + } + else if (returnType == "Object") { + var result = {}; + for (i = 0; i < items.length; i++) { + result[items[i].id] = items[i]; } - - function normalizeUnits(units) { - if (units) { - var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); - units = unitAliases[units] || camelFunctions[lowered] || lowered; - } - return units; + return result; + } + else { + // return an array + if (id != undefined) { + // a single item + return item; } - - function normalizeObjectUnits(inputObject) { - var normalizedInput = {}, - normalizedProp, - prop; - - for (prop in inputObject) { - if (inputObject.hasOwnProperty(prop)) { - normalizedProp = normalizeUnits(prop); - if (normalizedProp) { - normalizedInput[normalizedProp] = inputObject[prop]; - } - } + 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 normalizedInput; + return data; + } + else { + // just return our array + return items; + } } + } + }; - function makeList(field) { - var count, setter; + /** + * 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 (field.indexOf('week') === 0) { - count = 7; - setter = 'day'; - } - else if (field.indexOf('month') === 0) { - count = 12; - setter = 'month'; - } - else { - return; + 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); + } } + } - moment[field] = function (format, index) { - var i, getter, - method = moment._locale[field], - results = []; - - if (typeof format === 'number') { - index = format; - format = undefined; - } - - getter = function (i) { - var m = moment().utc().set(setter, i); - return method.call(moment._locale, m, format || ''); - }; + this._sort(items, order); - if (index != null) { - return getter(index); - } - else { - for (i = 0; i < count; i++) { - results.push(getter(i)); - } - return results; - } - }; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } } - - 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); - } + 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]); + } } - - return value; - } - - function daysInMonth(year, month) { - return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } } + } + else { + // get all items + if (order) { + // create an ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + items.push(data[id]); + } + } - function weeksInYear(year, dow, doy) { - return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; - } + this._sort(items, order); - function daysInYear(year) { - return isLeapYear(year) ? 366 : 365; + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } } - - function isLeapYear(year) { - return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = data[id]; + ids.push(item[this._fieldId]); + } + } } + } - 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; + return ids; + }; - if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { - overflow = DATE; - } + /** + * 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; + }; - m._pf.overflow = overflow; - } - } + /** + * 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; - 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 && options.order) { + // execute forEach on ordered list + var items = this.get(options); - if (m._strict) { - m._isValid = m._isValid && - m._pf.charsLeftOver === 0 && - m._pf.unusedTokens.length === 0; - } - } - return m._isValid; + for (var i = 0, len = items.length; i < len; i++) { + item = items[i]; + id = item[this._fieldId]; + callback(item, id); } - - function normalizeLocale(key) { - return key ? key.toLowerCase().replace('_', '-') : key; + } + else { + // unordered + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + callback(item, id); + } + } } + } + }; - // pick the locale 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 - function chooseLocale(names) { - var i = 0, j, next, locale, split; + /** + * 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; - while (i < names.length) { - split = normalizeLocale(names[i]).split('-'); - j = split.length; - next = normalizeLocale(names[i + 1]); - next = next ? next.split('-') : null; - while (j > 0) { - locale = loadLocale(split.slice(0, j).join('-')); - if (locale) { - return locale; - } - 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 null; + // 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 loadLocale(name) { - var oldLocale = null; - if (!locales[name] && hasModule) { - try { - oldLocale = moment.locale(); - !(function webpackMissingModule() { var e = new Error("Cannot find module \"./locale\""); e.code = 'MODULE_NOT_FOUND'; throw e; }()); - // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales - moment.locale(oldLocale); - } catch (e) { } - } - return locales[name]; - } + // order items + if (options && options.order) { + this._sort(mappedItems, options.order); + } - // 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(); - } + return mappedItems; + }; - /************************************ - Locale - ************************************/ + /** + * 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 = {}; + for (var field in item) { + if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { + filteredItem[field] = item[field]; + } + } - extend(Locale.prototype, { + return filteredItem; + }; - set : function (config) { - var prop, i; - for (i in config) { - prop = config[i]; - if (typeof prop === 'function') { - this[i] = prop; - } else { - this['_' + i] = prop; - } - } - }, + /** + * 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'); + } + }; - _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), - months : function (m) { - return this._months[m.month()]; - }, + /** + * 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; - _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), - monthsShort : function (m) { - return this._monthsShort[m.month()]; - }, + 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); + } + } - monthsParse : function (monthName) { - var i, mom, regex; + if (removedIds.length) { + this._trigger('remove', {items: removedIds}, senderId); + } - if (!this._monthsParse) { - this._monthsParse = []; - } + return removedIds; + }; - 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; - } - } - }, + /** + * 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; + } + } + return null; + }; - _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), - weekdays : function (m) { - return this._weekdays[m.day()]; - }, + /** + * 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); - _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), - weekdaysShort : function (m) { - return this._weekdaysShort[m.day()]; - }, + this._data = {}; - _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), - weekdaysMin : function (m) { - return this._weekdaysMin[m.day()]; - }, + this._trigger('remove', {items: ids}, senderId); - weekdaysParse : function (weekdayName) { - var i, mom, regex; + return ids; + }; - if (!this._weekdaysParse) { - this._weekdaysParse = []; - } - - 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'); - }, - - _meridiemParse : /[ap]\.?m?\.?/i, - meridiem : function (hours, minutes, isLower) { - if (hours > 11) { - return isLower ? 'pm' : 'PM'; - } else { - return isLower ? '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 (key, mom) { - var output = this._calendar[key]; - return typeof output === 'function' ? output.apply(mom) : output; - }, - - _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); - }, - - ordinal : function (number) { - return this._ordinal.replace('%d', number); - }, - _ordinal : '%d', - - preparse : function (string) { - return string; - }, + /** + * 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; - postformat : function (string) { - return string; - }, + 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; + } + } + } - week : function (mom) { - return weekOfYear(mom, this._week.dow, this._week.doy).week; - }, + return max; + }; - _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. - }, + /** + * 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; - _invalidDate: 'Invalid date', - invalidDate: function () { - return this._invalidDate; - } - }); + 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; + } + } + } - /************************************ - Formatting - ************************************/ + return min; + }; + /** + * 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; - function removeFormattingTokens(input) { - if (input.match(/\[[\s\S]/)) { - return input.replace(/^\[|\]$/g, ''); + 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; } - return input.replace(/\\/g, ''); + } + if (!exists && (value !== undefined)) { + values[count] = value; + count++; + } } + } - function makeFormatFunction(format) { - var array = format.match(formattingTokens), i, length; - - for (i = 0, length = array.length; i < length; i++) { - if (formatTokenFunctions[array[i]]) { - array[i] = formatTokenFunctions[array[i]]; - } else { - array[i] = removeFormattingTokens(array[i]); - } - } - - 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; - }; + if (fieldType) { + for (i = 0; i < values.length; i++) { + values[i] = util.convert(values[i], fieldType); } + } - // format date using native date object - function formatMoment(m, format) { - if (!m.isValid()) { - return m.localeData().invalidDate(); - } - - format = expandFormat(format, m.localeData()); + return values; + }; - if (!formatFunctions[format]) { - formatFunctions[format] = makeFormatFunction(format); - } + /** + * 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]; - return formatFunctions[format](m); + 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; + } - function expandFormat(format, locale) { - var i = 5; + 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; - function replaceLongDateFormatTokens(input) { - return locale.longDateFormat(input) || input; - } + return id; + }; - localFormattingTokens.lastIndex = 0; - while (i >= 0 && localFormattingTokens.test(format)) { - format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); - localFormattingTokens.lastIndex = 0; - i -= 1; - } + /** + * 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; - return format; + // get the item from the dataset + var raw = this._data[id]; + if (!raw) { + return null; + } + + // 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; + }; + /** + * 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'); + } - /************************************ - Parsing - ************************************/ + // 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); + } + } + return 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 config._locale._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; - } - } + /** + * 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; + }; - 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]); + /** + * 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(); - return parts[0] === '+' ? -minutes : minutes; - } + for (var col = 0, cols = columns.length; col < cols; col++) { + var field = columns[col]; + dataTable.setValue(row, col, item[field]); + } + }; - // function to convert string input to date - function addTimeToArrayFromToken(token, input, config) { - var a, datePartArray = config._a; + module.exports = DataSet; - 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 = config._locale.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); - } - 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 = config._locale.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 = config._locale.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); - } - } - - function dayOfYearFromWeekInfo(config) { - var w, weekYear, week, weekday, dow, doy, temp; - - w = config._w; - if (w.GG != null || w.W != null || w.E != null) { - dow = 1; - doy = 4; - - // 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 { - dow = config._locale._week.dow; - doy = config._locale._week.doy; - - weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); - week = dfl(w.w, 1); - - 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); - - config._a[YEAR] = temp.year; - config._dayOfYear = temp.dayOfYear; - } - - // 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; - - if (config._d) { - return; - } - - currentDate = currentDateArray(config); +/***/ }, +/* 4 */ +/***/ function(module, exports, __webpack_require__) { - //compute day of the year from weeks and weekdays - if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { - dayOfYearFromWeekInfo(config); - } + var util = __webpack_require__(1); + var DataSet = __webpack_require__(3); - //if the day of the year is set, figure out what it is - if (config._dayOfYear) { - yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + /** + * 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 - if (config._dayOfYear > daysInYear(yearToUse)) { - config._pf._overflowDayOfYear = true; - } + var me = this; + this.listener = function () { + me._onEvent.apply(me, arguments); + }; - date = makeUTCDate(yearToUse, 0, config._dayOfYear); - config._a[MONTH] = date.getUTCMonth(); - config._a[DATE] = date.getUTCDate(); - } + this.setData(data); + } - // 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]; - } + // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly - // 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]; - } + /** + * Set a data source for the view + * @param {DataSet | DataView} data + */ + DataView.prototype.setData = function (data) { + var ids, i, len; - 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); - } + if (this._data) { + // unsubscribe from current dataset + if (this._data.unsubscribe) { + this._data.unsubscribe('*', this.listener); } - function dateFromObject(config) { - var normalizedInput; + // 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}); + } - if (config._d) { - return; - } + this._data = data; - normalizedInput = normalizeObjectUnits(config._i); - config._a = [ - normalizedInput.year, - normalizedInput.month, - normalizedInput.day, - normalizedInput.hour, - normalizedInput.minute, - normalizedInput.second, - normalizedInput.millisecond - ]; + if (this._data) { + // update fieldId + this._fieldId = this._options.fieldId || + (this._data && this._data.options && this._data.options.fieldId) || + 'id'; - dateFromConfig(config); + // 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}); - 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()]; - } + // subscribe to new dataset + if (this._data.on) { + this._data.on('*', this.listener); } + } + }; - // date from string and format string - function makeDateFromStringAndFormat(config) { - if (config._f === moment.ISO_8601) { - parseISO(config); - return; - } - - config._a = []; - config._pf.empty = true; - - // This array is used to make a Date, either with `new Date` or `Date.UTC` - var string = '' + config._i, - i, parsedInput, tokens, token, skipped, - stringLength = string.length, - totalParsedInputLength = 0; - - tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; - - 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); - } - } + /** + * 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; - // add remaining unparsed input length to the string - config._pf.charsLeftOver = stringLength - totalParsedInputLength; - if (string.length > 0) { - config._pf.unusedInput.push(string); - } + // 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]; + } - // 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; - } + // extend the options with the default options and provided options + var viewOptions = util.extend({}, this._options, options); - dateFromConfig(config); - checkOverflow(config); + // 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); } + } - function unescapeFormat(s) { - return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { - return p1 || p2 || p3 || p4; - }); - } + // build up the call to the linked data set + var getArguments = []; + if (ids != undefined) { + getArguments.push(ids); + } + getArguments.push(viewOptions); + getArguments.push(data); - // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript - function regexpEscape(s) { - return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - } + return this._data && this._data.get.apply(this._data, getArguments); + }; - // date from string and array of format strings - function makeDateFromStringAndArray(config) { - var tempConfig, - bestMoment, + /** + * 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; - scoreToBeat, - i, - currentScore; + if (this._data) { + var defaultFilter = this._options.filter; + var filter; - if (config._f.length === 0) { - config._pf.invalidFormat = true; - config._d = new Date(NaN); - return; + if (options && options.filter) { + if (defaultFilter) { + filter = function (item) { + return defaultFilter(item) && options.filter(item); } + } + else { + filter = options.filter; + } + } + else { + filter = defaultFilter; + } - for (i = 0; i < config._f.length; i++) { - currentScore = 0; - tempConfig = copyConfig({}, config); - tempConfig._pf = defaultParsingFlags(); - tempConfig._f = config._f[i]; - makeDateFromStringAndFormat(tempConfig); - - if (!isValid(tempConfig)) { - continue; - } + ids = this._data.getIds({ + filter: filter, + order: options && options.order + }); + } + else { + ids = []; + } - // if there is any input that was not parsed add a penalty for that format - currentScore += tempConfig._pf.charsLeftOver; + return ids; + }; - //or tokens - currentScore += tempConfig._pf.unusedTokens.length * 10; + /** + * 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; + }; - tempConfig._pf.score = currentScore; + /** + * 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 (scoreToBeat == null || currentScore < scoreToBeat) { - scoreToBeat = currentScore; - bestMoment = tempConfig; - } + 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); + } } - extend(config, bestMoment || tempConfig); - } + break; - // date from iso format - function parseISO(config) { - var i, l, - string = config._i, - match = isoRegex.exec(string); + 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); - 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; - } + if (item) { + if (this._ids[id]) { + updated.push(id); } - for (i = 0, l = isoTimes.length; i < l; i++) { - if (isoTimes[i][1].exec(string)) { - config._f += isoTimes[i][0]; - break; - } + else { + this._ids[id] = true; + added.push(id); } - if (string.match(parseTokenTimezone)) { - config._f += 'Z'; + } + else { + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); } - makeDateFromStringAndFormat(config); - } else { - config._isValid = false; + else { + // nothing interesting for me :-( + } + } } - } - // date from iso format or fallback - function makeDateFromString(config) { - parseISO(config); - if (config._isValid === false) { - delete config._isValid; - moment.createFromInputFallback(config); - } - } + break; - function makeDateFromInput(config) { - var input = config._i, matched; - if (input === undefined) { - config._d = new Date(); - } else if (isDate(input)) { - config._d = new Date(+input); - } else if ((matched = aspNetJsonRegex.exec(input)) !== null) { - 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 (typeof(input) === 'object') { - dateFromObject(config); - } else if (typeof(input) === 'number') { - // from milliseconds - config._d = new Date(input); - } else { - moment.createFromInputFallback(config); + 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); + } } - } - - 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; + break; } - function makeUTCDate(y) { - var date = new Date(Date.UTC.apply(null, arguments)); - if (y < 1970) { - date.setUTCFullYear(y); - } - return date; + if (added.length) { + this._trigger('add', {items: added}, senderId); } - - function parseWeekday(input, locale) { - if (typeof input === 'string') { - if (!isNaN(input)) { - input = parseInt(input, 10); - } - else { - input = locale.weekdaysParse(input); - if (typeof input !== 'number') { - return null; - } - } - } - return input; + if (updated.length) { + this._trigger('update', {items: updated}, senderId); + } + if (removed.length) { + this._trigger('remove', {items: removed}, senderId); } + } + }; - /************************************ - Relative Time - ************************************/ + // 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; - // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize - function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { - return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); - } + module.exports = DataView; - function relativeTime(posNegDuration, withoutSuffix, locale) { - var duration = moment.duration(posNegDuration).abs(), - seconds = round(duration.as('s')), - minutes = round(duration.as('m')), - hours = round(duration.as('h')), - days = round(duration.as('d')), - months = round(duration.as('M')), - years = round(duration.as('y')), +/***/ }, +/* 5 */ +/***/ function(module, exports, __webpack_require__) { - 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.d && ['dd', days] || - months === 1 && ['M'] || - months < relativeTimeThresholds.M && ['MM', months] || - years === 1 && ['y'] || ['yy', years]; + var Emitter = __webpack_require__(48); + 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); - args[2] = withoutSuffix; - args[3] = +posNegDuration > 0; - args[4] = locale; - return substituteTimeAgo.apply({}, args); - } + /** + * @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%'; - /************************************ - Week of Year - ************************************/ + 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' - // 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; + this.animationInterval = 1000; // milliseconds + this.animationPreload = false; + this.camera = new Camera(); + this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? - if (daysToDayOfWeek > end) { - daysToDayOfWeek -= 7; - } + this.dataTable = null; // The original data table + this.dataPoints = null; // The table with point objects - if (daysToDayOfWeek < end - 7) { - daysToDayOfWeek += 7; - } + // the column indexes + this.colX = undefined; + this.colY = undefined; + this.colZ = undefined; + this.colValue = undefined; + this.colFilter = undefined; - adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); - return { - week: Math.ceil(adjustedMoment.dayOfYear() / 7), - year: adjustedMoment.year() - }; - } + 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 - //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; + // constants + this.colorAxis = '#4D4D4D'; + this.colorGrid = '#D3D3D3'; + this.colorDot = '#7DC1FF'; + this.colorDotBorder = '#3267D2'; - 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; + // create a frame and canvas + this.create(); - return { - year: dayOfYear > 0 ? year : year - 1, - dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear - }; - } + // apply options (also when undefined) + this.setOptions(options); - /************************************ - Top Level Functions - ************************************/ - - function makeMoment(config) { - var input = config._i, - format = config._f; + // apply data + if (data) { + this.setData(data); + } + } - config._locale = config._locale || moment.localeData(config._l); + // Extend Graph3d with an Emitter mixin + Emitter(Graph3d.prototype); - if (input === null || (format === undefined && input === '')) { - return moment.invalid({nullInput: true}); - } + /** + * 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)); - if (typeof input === 'string') { - config._i = input = config._locale.preparse(input); - } + // 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 (moment.isMoment(input)) { - return new Moment(input, true); - } else if (format) { - if (isArray(format)) { - makeDateFromStringAndArray(config); - } else { - makeDateFromStringAndFormat(config); - } - } else { - makeDateFromInput(config); - } + // scale the vertical axis + this.scale.z *= this.verticalRatio; + // TODO: can this be automated? verticalRatio? - return new Moment(config); - } + // determine scale for (optional) value + this.scale.value = 1 / (this.valueMax - this.valueMin); - moment = function (input, format, locale, strict) { - var c; + // 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 (typeof(locale) === "boolean") { - strict = locale; - locale = undefined; - } - // 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 = locale; - c._strict = strict; - c._isUTC = false; - c._pf = defaultParsingFlags(); - return makeMoment(c); - }; + /** + * 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); + }; - moment.suppressDeprecationWarnings = false; + /** + * 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, - 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); - } - ); + cx = this.camera.getCameraLocation().x, + cy = this.camera.getCameraLocation().y, + cz = this.camera.getCameraLocation().z, - // 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; - } + // 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), - moment.min = function () { - var args = [].slice.call(arguments, 0); + // 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 pickBy('isBefore', args); - }; + return new Point3d(dx, dy, dz); + }; - moment.max = function () { - var args = [].slice.call(arguments, 0); + /** + * 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; - return pickBy('isAfter', args); - }; + // 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()); + } - // creating with utc - moment.utc = function (input, format, locale, strict) { - var c; + // 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); + }; - if (typeof(locale) === "boolean") { - strict = locale; - locale = 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 = locale; - c._i = input; - c._f = format; - c._strict = strict; - c._pf = defaultParsingFlags(); + /** + * 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; - return makeMoment(c).utc(); - }; + 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'; + } - // creating with unix timestamp (in seconds) - moment.unix = function (input) { - return moment(input * 1000); - }; + this.frame.style.backgroundColor = fill; + this.frame.style.borderColor = stroke; + this.frame.style.borderWidth = strokeWidth + 'px'; + this.frame.style.borderStyle = 'solid'; + }; - // duration - moment.duration = function (input, key) { - var duration = input, - // matching against regexp is expensive, do it on demand - match = null, - sign, - ret, - parseIso, - diffRes; - 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]) - }; - } else if (typeof duration === 'object' && - ('from' in duration || 'to' in duration)) { - diffRes = momentsDifference(moment(duration.from), moment(duration.to)); - - duration = {}; - duration.ms = diffRes.milliseconds; - duration.M = diffRes.months; - } + /// 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 + }; - ret = new Duration(duration); + /** + * 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; + } - if (moment.isDuration(input) && input.hasOwnProperty('_locale')) { - ret._locale = input._locale; - } + return -1; + }; - return ret; - }; + /** + * 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; - // version number - moment.version = VERSION; + 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; - // default format - moment.defaultFormat = isoFormat; + if (data.getNumberOfColumns() > 4) { + this.colFilter = 4; + } + } + else { + throw 'Unknown style "' + this.style + '"'; + } + }; - // constant that refers to the ISO standard - moment.ISO_8601 = function () {}; + Graph3d.prototype.getNumberOfRows = function(data) { + return data.length; + } - // 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 () {}; + Graph3d.prototype.getNumberOfColumns = function(data) { + var counter = 0; + for (var column in data[0]) { + if (data[0].hasOwnProperty(column)) { + counter++; + } + } + return counter; + } - // This function allows you to set a threshold for relative time strings - moment.relativeTimeThreshold = function (threshold, limit) { - if (relativeTimeThresholds[threshold] === undefined) { - return false; - } - if (limit === undefined) { - return relativeTimeThresholds[threshold]; - } - relativeTimeThresholds[threshold] = limit; - return true; - }; - moment.lang = deprecate( - "moment.lang is deprecated. Use moment.locale instead.", - function (key, value) { - return moment.locale(key, value); - } - ); + 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; + } - // This function will load locale and then set the global locale. If - // no arguments are passed in, it will simply return the current global - // locale key. - moment.locale = function (key, values) { - var data; - if (key) { - if (typeof(values) !== "undefined") { - data = moment.defineLocale(key, values); - } - else { - data = moment.localeData(key); - } - if (data) { - moment.duration._locale = moment._locale = data; - } - } + 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; + }; - return moment._locale._abbr; - }; + /** + * 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; - moment.defineLocale = function (name, values) { - if (values !== null) { - values.abbr = name; - if (!locales[name]) { - locales[name] = new Locale(); - } - locales[name].set(values); + // unsubscribe from the dataTable + if (this.dataSet) { + this.dataSet.off('*', this._onChange); + } - // backwards compat for now: also set the locale - moment.locale(name); + if (rawData === undefined) + return; - return locales[name]; - } else { - // useful for testing - delete locales[name]; - return null; - } - }; + if (Array.isArray(rawData)) { + rawData = new DataSet(rawData); + } - moment.langData = deprecate( - "moment.langData is deprecated. Use moment.localeData instead.", - function (key) { - return moment.localeData(key); - } - ); + var data; + if (rawData instanceof DataSet || rawData instanceof DataView) { + data = rawData.get(); + } + else { + throw new Error('Array, DataSet, or DataView expected'); + } - // returns locale data - moment.localeData = function (key) { - var locale; + if (data.length == 0) + return; - if (key && key._locale && key._locale._abbr) { - key = key._locale._abbr; - } + this.dataSet = rawData; + this.dataTable = data; - if (!key) { - return moment._locale; - } + // subscribe to changes in the dataset + this._onChange = function () { + me.setData(me.dataSet); + }; + this.dataSet.on('*', this._onChange); - if (!isArray(key)) { - //short-circuit everything else - locale = loadLocale(key); - if (locale) { - return locale; - } - key = [key]; - } + // _determineColumnIndexes + // getNumberOfRows (points) + // getNumberOfColumns (x,y,z,v,t,t1,t2...) + // getDistinctValues (unique values?) + // getColumnRange - return chooseLocale(key); - }; + // 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'; - // 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; - }; - for (i = lists.length - 1; i >= 0; --i) { - makeList(lists[i]); + // 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();}); } + } - 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; - } - - return m; - }; - - moment.parseZone = function () { - return moment.apply(null, arguments).parseZone(); - }; - - moment.parseTwoDigitYear = function (input) { - return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); - }; - /************************************ - Moment Prototype - ************************************/ + 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; + } - extend(moment.fn = Moment.prototype, { + if (this.defaultYBarWidth !== undefined) { + this.yBarWidth = this.defaultYBarWidth; + } + else { + var dataY = this.getDistinctValues(data,this.colY); + this.yBarWidth = (dataY[1] - dataY[0]) || 1; + } + } - clone : function () { - return moment(this); - }, + // 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; - valueOf : function () { - return +this._d + ((this._offset || 0) * 60000); - }, + 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; - unix : function () { - return Math.floor(+this / 1000); - }, + 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; - toString : function () { - return this.clone().locale('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); - }, + 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; + } - toDate : function () { - return this._offset ? new Date(+this) : this._d; - }, + // set the scale dependent on the ranges. + this._setScale(); + }; - 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]'); - } - }, - toArray : function () { - var m = this; - return [ - m.year(), - m.month(), - m.date(), - m.hours(), - m.minutes(), - m.seconds(), - m.milliseconds() - ]; - }, - isValid : function () { - return isValid(this); - }, + /** + * 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; - isDSTShifted : function () { - if (this._a) { - return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; - } + var dataPoints = []; - return false; - }, + 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 - parsingFlags : function () { - return extend({}, this._pf); - }, + // 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; - invalidAt: function () { - return this._pf.overflow; - }, + if (dataX.indexOf(x) === -1) { + dataX.push(x); + } + if (dataY.indexOf(y) === -1) { + dataY.push(y); + } + } - utc : function (keepLocalTime) { - return this.zone(0, keepLocalTime); - }, + function sortNumber(a, b) { + return a - b; + } + dataX.sort(sortNumber); + dataY.sort(sortNumber); - local : function (keepLocalTime) { - if (this._isUTC) { - this.zone(0, keepLocalTime); - this._isUTC = false; + // 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; - if (keepLocalTime) { - this.add(this._d.getTimezoneOffset(), 'm'); - } - } - return this; - }, + var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer + var yIndex = dataY.indexOf(y); - format : function (inputString) { - var output = formatMoment(this, inputString || moment.defaultFormat); - return this.localeData().postformat(output); - }, + if (dataMatrix[xIndex] === undefined) { + dataMatrix[xIndex] = []; + } - add : createAdder(1, 'add'), + var point3d = new Point3d(); + point3d.x = x; + point3d.y = y; + point3d.z = z; - subtract : createAdder(-1, 'subtract'), + obj = {}; + obj.point = point3d; + obj.trans = undefined; + obj.screen = undefined; + obj.bottom = new Point3d(x, y, this.zMin); - diff : function (input, units, asFloat) { - var that = makeAs(input, this), - zoneDiff = (this.zone() - that.zone()) * 6e4, - diff, output; + dataMatrix[xIndex][yIndex] = obj; - units = normalizeUnits(units); + dataPoints.push(obj); + } - 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); - }, + // 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; - from : function (time, withoutSuffix) { - return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); - }, + if (this.colValue !== undefined) { + point.value = data[i][this.colValue] || 0; + } - fromNow : function (withoutSuffix) { - return this.from(moment(), withoutSuffix); - }, + obj = {}; + obj.point = point; + obj.bottom = new Point3d(point.x, point.y, this.zMin); + obj.trans = undefined; + obj.screen = undefined; - 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.localeData().calendar(format, this)); - }, + dataPoints.push(obj); + } + } - isLeapYear : function () { - return isLeapYear(this.year()); - }, + return dataPoints; + }; - isDST : function () { - return (this.zone() < this.clone().month(0).zone() || - this.zone() < this.clone().month(5).zone()); - }, + /** + * 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); + } - day : function (input) { - var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); - if (input != null) { - input = parseWeekday(input, this.localeData()); - return this.add(input - day, 'd'); - } else { - return day; - } - }, + this.frame = document.createElement('div'); + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - month : makeAccessor('Month', true), + // 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); + } - 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 */ - } + 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); - // weeks are a special case - if (units === 'week') { - this.weekday(0); - } else if (units === 'isoWeek') { - this.isoWeekday(1); - } + // 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' - // quarters are also special - if (units === 'quarter') { - this.month(Math.floor(this.month() / 3) * 3); - } + 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 this; - }, + // add the new graph to the container element + this.containerElement.appendChild(this.frame); + }; - endOf: function (units) { - units = normalizeUnits(units); - return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); - }, - isAfter: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) > +moment(input).startOf(units); - }, + /** + * 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; - isBefore: function (input, units) { - units = typeof units !== 'undefined' ? units : 'millisecond'; - return +this.clone().startOf(units) < +moment(input).startOf(units); - }, + this._resizeCanvas(); + }; - isSame: function (input, units) { - units = units || 'ms'; - return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); - }, + /** + * 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%'; - 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; - } - ), + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - 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; - } - ), + // adjust with for margin + this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; + }; - // keepLocalTime = 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, keepLocalTime) { - var offset = this._offset || 0, - localAdjust; - if (input != null) { - if (typeof input === 'string') { - input = timezoneMinutesFromString(input); - } - if (Math.abs(input) < 16) { - input = input * 60; - } - if (!this._isUTC && keepLocalTime) { - localAdjust = this._d.getTimezoneOffset(); - } - this._offset = input; - this._isUTC = true; - if (localAdjust != null) { - this.subtract(localAdjust, 'm'); - } - if (offset !== input) { - if (!keepLocalTime || 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; - }, + /** + * Start animation + */ + Graph3d.prototype.animationStart = function() { + if (!this.frame.filter || !this.frame.filter.slider) + throw 'No animation available'; - zoneAbbr : function () { - return this._isUTC ? 'UTC' : ''; - }, + this.frame.filter.slider.play(); + }; - zoneName : function () { - return this._isUTC ? 'Coordinated Universal Time' : ''; - }, - parseZone : function () { - if (this._tzm) { - this.zone(this._tzm); - } else if (typeof this._i === 'string') { - this.zone(this._i); - } - return this; - }, + /** + * Stop animation + */ + Graph3d.prototype.animationStop = function() { + if (!this.frame.filter || !this.frame.filter.slider) return; - hasAlignedHourOffset : function (input) { - if (!input) { - input = 0; - } - else { - input = moment(input).zone(); - } + this.frame.filter.slider.stop(); + }; - return (this.zone() - input) % 60 === 0; - }, - daysInMonth : function () { - return daysInMonth(this.year(), this.month()); - }, + /** + * 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 + } - dayOfYear : function (input) { - var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; - return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); - }, + // 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 + } + }; - quarter : function (input) { - return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); - }, + /** + * 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; + } - weekYear : function (input) { - var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; - return input == null ? year : this.add((input - year), 'y'); - }, + if (pos.horizontal !== undefined && pos.vertical !== undefined) { + this.camera.setArmRotation(pos.horizontal, pos.vertical); + } - isoWeekYear : function (input) { - var year = weekOfYear(this, 1, 4).year; - return input == null ? year : this.add((input - year), 'y'); - }, + if (pos.distance !== undefined) { + this.camera.setArmLength(pos.distance); + } - week : function (input) { - var week = this.localeData().week(this); - return input == null ? week : this.add((input - week) * 7, 'd'); - }, + this.redraw(); + }; - isoWeek : function (input) { - var week = weekOfYear(this, 1, 4).week; - return input == null ? week : this.add((input - week) * 7, 'd'); - }, - weekday : function (input) { - var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; - return input == null ? weekday : this.add(input - weekday, 'd'); - }, + /** + * 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; + }; - 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); - }, + /** + * Load data into the 3D Graph + */ + Graph3d.prototype._readData = function(data) { + // read the data + this._dataInitialize(data, this.style); - isoWeeksInYear : function () { - return weeksInYear(this.year(), 1, 4); - }, - weeksInYear : function () { - var weekInfo = this.localeData()._week; - return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); - }, + if (this.dataFilter) { + // apply filtering + this.dataPoints = this.dataFilter._getDataPoints(); + } + else { + // no filtering. load all data + this.dataPoints = this._getDataPoints(this.dataTable); + } - get : function (units) { - units = normalizeUnits(units); - return this[units](); - }, + // draw the filter + this._redrawFilter(); + }; - set : function (units, value) { - units = normalizeUnits(units); - if (typeof this[units] === 'function') { - this[units](value); - } - return this; - }, + /** + * Replace the dataset of the Graph3d + * @param {Array | DataSet | DataView} data + */ + Graph3d.prototype.setData = function (data) { + this._readData(data); + this.redraw(); - // If passed a locale key, it will set the locale for this - // instance. Otherwise, it will return the locale configuration - // variables for this instance. - locale : function (key) { - if (key === undefined) { - return this._locale._abbr; - } else { - this._locale = moment.localeData(key); - return this; - } - }, + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - lang : deprecate( - "moment().lang() is deprecated. Use moment().localeData() instead.", - function (key) { - if (key === undefined) { - return this.localeData(); - } else { - this._locale = moment.localeData(key); - return this; - } - } - ), + /** + * Update the options. Options will be merged with current options + * @param {Object} options + */ + Graph3d.prototype.setOptions = function (options) { + var cameraPosition = undefined; - localeData : function () { - return this._locale; - } - }); + this.animationStop(); - function rawMonthSetter(mom, value) { - var dayOfMonth; + if (options !== undefined) { + // retrieve parameter values + if (options.width !== undefined) this.width = options.width; + if (options.height !== undefined) this.height = options.height; - // TODO: Move this out of here! - if (typeof value === 'string') { - value = mom.localeData().monthsParse(value); - // TODO: Another silent failure? - if (typeof value !== 'number') { - return mom; - } - } + if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; + if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; - dayOfMonth = Math.min(mom.date(), - daysInMonth(mom.year(), value)); - mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); - return mom; - } - - function rawGetter(mom, unit) { - return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); - } - - function rawSetter(mom, unit, value) { - if (unit === 'Month') { - return rawMonthSetter(mom, value); - } else { - return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); - } - } + 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; - 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 (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; - 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)); - - // 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; + if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; + if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; + if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; - // add aliased format methods - moment.fn.toJSON = moment.fn.toISOString; + if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; + if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; - /************************************ - Duration Prototype - ************************************/ + 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; + if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; - function daysToYears (days) { - // 400 years have 146097 days (taking into account leap year rules) - return days * 400 / 146097; + if (cameraPosition !== undefined) { + this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); + this.camera.setArmLength(cameraPosition.distance); } - - function yearsToDays (years) { - // years * 365 + absRound(years / 4) - - // absRound(years / 100) + absRound(years / 400); - return years * 146097 / 400; + else { + this.camera.setArmRotation(1.0, 0.5); + this.camera.setArmLength(1.7); } + } - extend(moment.duration.fn = Duration.prototype, { + this._setBackgroundColor(options && options.backgroundColor); - _bubble : function () { - var milliseconds = this._milliseconds, - days = this._days, - months = this._months, - data = this._data, - seconds, minutes, hours, years = 0; + this.setSize(this.width, this.height); - // The following code bubbles up values, see the tests for - // examples of what that means. - data.milliseconds = milliseconds % 1000; + // re-load the data + if (this.dataTable) { + this.setData(this.dataTable); + } - seconds = absRound(milliseconds / 1000); - data.seconds = seconds % 60; + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; - minutes = absRound(seconds / 60); - data.minutes = minutes % 60; + /** + * Redraw the Graph. + */ + Graph3d.prototype.redraw = function() { + if (this.dataPoints === undefined) { + throw 'Error: graph data not initialized'; + } - hours = absRound(minutes / 60); - data.hours = hours % 24; + this._resizeCanvas(); + this._resizeCenter(); + this._redrawSlider(); + this._redrawClear(); + this._redrawAxis(); - days += absRound(hours / 24); + 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(); + } - // Accurately convert days to years, assume start from year 0. - years = absRound(daysToYears(days)); - days -= absRound(yearsToDays(years)); + this._redrawInfo(); + this._redrawLegend(); + }; - // 30 days to a month - // TODO (iskren): Use anchor date (like 1st Jan) to compute this. - months += absRound(days / 30); - days %= 30; + /** + * Clear the canvas before redrawing + */ + Graph3d.prototype._redrawClear = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); - // 12 months -> 1 year - years += absRound(months / 12); - months %= 12; + ctx.clearRect(0, 0, canvas.width, canvas.height); + }; - data.days = days; - data.months = months; - data.years = years; - }, - abs : function () { - this._milliseconds = Math.abs(this._milliseconds); - this._days = Math.abs(this._days); - this._months = Math.abs(this._months); + /** + * Redraw the legend showing the colors + */ + Graph3d.prototype._redrawLegend = function() { + var y; - this._data.milliseconds = Math.abs(this._data.milliseconds); - this._data.seconds = Math.abs(this._data.seconds); - this._data.minutes = Math.abs(this._data.minutes); - this._data.hours = Math.abs(this._data.hours); - this._data.months = Math.abs(this._data.months); - this._data.years = Math.abs(this._data.years); + if (this.style === Graph3d.STYLE.DOTCOLOR || + this.style === Graph3d.STYLE.DOTSIZE) { - return this; - }, + var dotSize = this.frame.clientWidth * 0.02; - weeks : function () { - return absRound(this.days() / 7); - }, + 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 + } - valueOf : function () { - return this._milliseconds + - this._days * 864e5 + - (this._months % 12) * 2592e6 + - toInt(this._months / 12) * 31536e6; - }, + 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; + } - humanize : function (withSuffix) { - var output = relativeTime(this, !withSuffix, this.localeData()); + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + ctx.lineWidth = 1; + ctx.font = '14px arial'; // TODO: put in options - if (withSuffix) { - output = this.localeData().pastFuture(+this, output); - } + 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); - return this.localeData().postformat(output); - }, + //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); - add : function (input, val) { - // supports only 2.0-style add(1, 's') or add(moment) - var dur = moment.duration(input, val); + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(left, top + y); + ctx.lineTo(right, top + y); + ctx.stroke(); + } - this._milliseconds += dur._milliseconds; - this._days += dur._days; - this._months += dur._months; + ctx.strokeStyle = this.colorAxis; + ctx.strokeRect(left, top, widthMax, height); + } - this._bubble(); + 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(); + } - return 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; - subtract : function (input, val) { - var dur = moment.duration(input, val); + ctx.beginPath(); + ctx.moveTo(left - gridLineLen, y); + ctx.lineTo(left, y); + ctx.stroke(); - this._milliseconds -= dur._milliseconds; - this._days -= dur._days; - this._months -= dur._months; + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - this._bubble(); + step.next(); + } - return this; - }, + ctx.textAlign = 'right'; + ctx.textBaseline = 'top'; + var label = this.legendLabel; + ctx.fillText(label, right, bottom + this.margin); + } + }; - get : function (units) { - units = normalizeUnits(units); - return this[units.toLowerCase() + 's'](); - }, + /** + * Redraw the filter + */ + Graph3d.prototype._redrawFilter = function() { + this.frame.filter.innerHTML = ''; - as : function (units) { - var days, months; - units = normalizeUnits(units); + if (this.dataFilter) { + var options = { + 'visible': this.showAnimationControls + }; + var slider = new Slider(this.frame.filter, options); + this.frame.filter.slider = slider; - days = this._days + this._milliseconds / 864e5; - if (units === 'month' || units === 'year') { - months = this._months + daysToYears(days) * 12; - return units === 'month' ? months : months / 12; - } else { - days += yearsToDays(this._months / 12); - switch (units) { - case 'week': return days / 7; - case 'day': return days; - case 'hour': return days * 24; - case 'minute': return days * 24 * 60; - case 'second': return days * 24 * 60 * 60; - case 'millisecond': return days * 24 * 60 * 60 * 1000; - default: throw new Error('Unknown unit ' + units); - } - } - }, + // TODO: css here is not nice here... + this.frame.filter.style.padding = '10px'; + //this.frame.filter.style.backgroundColor = '#EFEFEF'; - lang : moment.fn.lang, - locale : moment.fn.locale, + slider.setValues(this.dataFilter.values); + slider.setPlayInterval(this.animationInterval); - toIsoString : deprecate( - "toIsoString() is deprecated. Please use toISOString() instead " + - "(notice the capitals)", - function () { - return this.toISOString(); - } - ), + // create an event handler + var me = this; + var onchange = function () { + var index = slider.getIndex(); - 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); + me.dataFilter.selectValue(index); + me.dataPoints = me.dataFilter._getDataPoints(); - if (!this.asSeconds()) { - // this is the same as C#'s (Noda) and python (isodate)... - // but not other JS (goog.date) - return 'P0D'; - } + me.redraw(); + }; + slider.setOnChangeCallback(onchange); + } + else { + this.frame.filter.slider = undefined; + } + }; - 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' : ''); - }, + /** + * Redraw the slider + */ + Graph3d.prototype._redrawSlider = function() { + if ( this.frame.filter.slider !== undefined) { + this.frame.filter.slider.redraw(); + } + }; - localeData : function () { - return this._locale; - } - }); - function makeDurationGetter(name) { - moment.duration.fn[name] = function () { - return this._data[name]; - }; - } + /** + * Redraw common information + */ + Graph3d.prototype._redrawInfo = function() { + if (this.dataFilter) { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); - for (i in unitMillisecondFactors) { - if (unitMillisecondFactors.hasOwnProperty(i)) { - makeDurationGetter(i.toLowerCase()); - } - } + ctx.font = '14px arial'; // TODO: put in options + ctx.lineStyle = 'gray'; + ctx.fillStyle = 'gray'; + ctx.textAlign = 'left'; + ctx.textBaseline = 'top'; - moment.duration.fn.asMilliseconds = function () { - return this.as('ms'); - }; - moment.duration.fn.asSeconds = function () { - return this.as('s'); - }; - moment.duration.fn.asMinutes = function () { - return this.as('m'); - }; - moment.duration.fn.asHours = function () { - return this.as('h'); - }; - moment.duration.fn.asDays = function () { - return this.as('d'); - }; - moment.duration.fn.asWeeks = function () { - return this.as('weeks'); - }; - moment.duration.fn.asMonths = function () { - return this.as('M'); - }; - moment.duration.fn.asYears = function () { - return this.as('y'); - }; + var x = this.margin; + var y = this.margin; + ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); + } + }; - /************************************ - Default Locale - ************************************/ + /** + * 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; - // Set default locale, other locale will inherit from English. - moment.locale('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; - } - }); + // TODO: get the actual rendered style of the containerElement + //ctx.font = this.containerElement.style.font; + ctx.font = 24 / this.camera.getArmLength() + 'px arial'; - /* EMBED_LOCALES */ + // 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; - /************************************ - Exposing Moment - ************************************/ + // 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(); - 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; - } + 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(); - // 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(); + 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(); } - }).call(this); - - /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(5)(module))) - -/***/ }, -/* 4 */ -/***/ function(module, exports, __webpack_require__) { - - function webpackContext(req) { - throw new Error("Cannot find module '" + req + "'."); - } - webpackContext.resolve = webpackContext; - webpackContext.keys = function() { return []; }; - module.exports = webpackContext; - - -/***/ }, -/* 5 */ -/***/ function(module, exports, __webpack_require__) { - - module.exports = function(module) { - if(!module.webpackPolyfill) { - module.deprecate = function() {}; - module.paths = []; - // module.parent = undefined by default - module.children = []; - module.webpackPolyfill = 1; - } - return module; - } + 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); -/***/ }, -/* 6 */ -/***/ function(module, exports, __webpack_require__) { - - // DOM utility methods + step.next(); + } - /** - * 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 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(); - /** - * 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 = []; - } + 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(); } - } - }; - /** - * 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(); + 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 { - // create a new element and add it to the SVG - element = document.createElementNS('http://www.w3.org/2000/svg', elementType); - svgContainer.appendChild(element); + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; } + ctx.fillStyle = this.colorAxis; + ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + + step.next(); } - 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); + + // 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(); } - JSONcontainer[elementType].used.push(element); - return element; - }; + 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(); + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.colorAxis; + ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); - /** - * 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); - } + step.next(); } - 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; - }; + 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(); + // 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(); + // 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(); + // 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); + } - /** - * 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"); + // 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); } - 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"); + + // 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); } - return point; }; /** - * draw a bar SVG element centered on the X coordinate - * - * @param x - * @param y - * @param className + * 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 */ - 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); - // } - }; + Graph3d.prototype._hsv2rgb = function(H, S, V) { + var R, G, B, C, Hi, X; -/***/ }, -/* 7 */ -/***/ function(module, exports, __webpack_require__) { + C = V * S; + Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 + X = C * (1 - Math.abs(((H/60) % 2) - 1)); - var util = __webpack_require__(1); + 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; - /** - * 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); + } + else { + topSideVisible = true; + } - var subscribers = []; - if (event in this._subscribers) { - subscribers = subscribers.concat(this._subscribers[event]); - } - if ('*' in this._subscribers) { - subscribers = subscribers.concat(this._subscribers['*']); - } + 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 - for (var i = 0; i < subscribers.length; i++) { - var subscriber = subscribers[i]; - if (subscriber.callback) { - subscriber.callback(event, params, senderId || null); + 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; + + 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 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 - */ - DataSet.prototype.add = function (data, senderId) { - var addedIds = [], - id, - me = this; + if (point !== undefined) { + if (this.showPerspective) { + lineWidth = 2 / -point.trans.z; + } + else { + lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); + } + } - 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); + 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; + + 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(); } - 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'); - } + 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; - if (addedIds.length) { - this._trigger('add', {items: addedIds}, senderId); + 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(); + } + } } - - return addedIds; }; + /** - * 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 + * Draw all datapoints as dots. + * This function can be used when the style is 'dot' or 'dot-line' */ - DataSet.prototype.update = function (data, senderId) { - var addedIds = [], - updatedIds = [], - me = this, - fieldId = me._fieldId; + Graph3d.prototype._redrawDataDot = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i; - 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 (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - 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); - } - - return addedIds.concat(updatedIds); - }; - - /** - * 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; + // 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; - // 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]; + // 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; } - // 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 + ')'); - } - 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'; - } + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - // build options - var type = options && options.type || this._options.type; - var filter = options && options.filter; - var items = [], item, itemId, i, len; + // 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]; - // 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); - } - } + 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(); } - } - // order the results - if (options && options.order && id == undefined) { - this._sort(items, options.order); - } - - // filter fields of the items - if (options && options.fields) { - var fields = options.fields; - if (id != undefined) { - item = this._filterFields(item, fields); + // 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 { - for (i = 0, len = items.length; i < len; i++) { - items[i] = this._filterFields(items[i], fields); - } + size = dotSize; } - } - // 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); + var radius; + if (this.showPerspective) { + radius = size / -point.trans.z; } else { - // copy the items to the provided data table - for (i = 0; i < items.length; i++) { - me._appendRow(data, columns, items[i]); - } + radius = size * -(this.eye.z / this.camera.getArmLength()); } - return data; - } - else if (returnType == "Object") { - var result = {}; - for (i = 0; i < items.length; i++) { - result[items[i].id] = items[i]; + if (radius < 0) { + radius = 0; } - return result; - } - else { - // return an array - if (id != undefined) { - // a single item - return item; + + 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 { - // 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; - } + // 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); } + + // 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(); } }; /** - * 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 + * Draw all datapoints as bars. + * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' */ - 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 = []; + Graph3d.prototype._redrawDataBar = function() { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i, j, surface, corners; - 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); - } - } - } + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - this._sort(items, order); + // 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; - 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]); - } - } - } - } + // 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; } - 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); + // order the translated points by depth + var sortDepth = function (a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); - for (i = 0, len = items.length; i < len; i++) { - ids[i] = items[i][this._fieldId]; - } + // 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]; + + // 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 { - // create unordered list - for (id in data) { - if (data.hasOwnProperty(id)) { - item = data[id]; - ids.push(item[this._fieldId]); - } - } + // 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 ids; - }; + // 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); + } - /** - * 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; - }; + // 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)} + ]; - /** - * 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; + // 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); + }); - if (options && options.order) { - // execute forEach on ordered list - var items = this.get(options); + // 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; - for (var i = 0, len = items.length; i < len; i++) { - item = items[i]; - id = item[this._fieldId]; - callback(item, id); + // 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}) } - } - else { - // unordered - for (id in data) { - if (data.hasOwnProperty(id)) { - item = this._getItem(id, type); - if (!filter || filter(item)) { - callback(item, id); - } - } + + // 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(); } } }; + /** - * 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 + * Draw a line through all datapoints. + * This function can be used when the style is 'line' */ - DataSet.prototype.map = function (callback, options) { - var filter = options && options.filter, - type = options && options.type || this._options.type, - mappedItems = [], - data = this._data, - item; + Graph3d.prototype._redrawDataLine = function() { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + point, i; - // 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)); - } - } - } + if (this.dataPoints === undefined || this.dataPoints.length <= 0) + return; // TODO: throw exception? - // order items - if (options && options.order) { - this._sort(mappedItems, options.order); - } + // 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); - return mappedItems; - }; + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + } - /** - * 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 = {}; + // start the line + if (this.dataPoints.length > 0) { + point = this.dataPoints[0]; - for (var field in item) { - if (item.hasOwnProperty(field) && (fields.indexOf(field) != -1)) { - filteredItem[field] = item[field]; - } + ctx.lineWidth = 1; // TODO: make customizable + ctx.strokeStyle = 'blue'; // TODO: make customizable + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); } - return filteredItem; + // 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(); + } }; /** - * Sort the provided array with items - * @param {Object[]} items - * @param {String | function} order A field name or custom sort function. - * @private + * Start a moving operation inside the provided parent element + * @param {Event} event The event that occurred (required for + * retrieving the mouse position) */ - 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'); + 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); } + + // 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); }; + /** - * 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 + * Perform moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {Event} event Well, eehh, the event */ - DataSet.prototype.remove = function (id, senderId) { - var removedIds = [], - i, len, removedId; + Graph3d.prototype._onMouseMove = function (event) { + event = event || window.event; - if (Array.isArray(id)) { - for (i = 0, len = id.length; i < len; i++) { - removedId = this._remove(id[i]); - if (removedId != null) { - removedIds.push(removedId); - } - } + // 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; } - else { - removedId = this._remove(id); - if (removedId != null) { - removedIds.push(removedId); - } + if (Math.abs(Math.cos(horizontalNew)) < snapValue) { + horizontalNew = (Math.round((horizontalNew/ Math.PI - 0.5)) + 0.5) * Math.PI - 0.001; } - if (removedIds.length) { - this._trigger('remove', {items: removedIds}, senderId); + // snap vertically to nice angles + if (Math.abs(Math.sin(verticalNew)) < snapValue) { + verticalNew = Math.round((verticalNew / Math.PI)) * Math.PI; + } + if (Math.abs(Math.cos(verticalNew)) < snapValue) { + verticalNew = (Math.round((verticalNew/ Math.PI - 0.5)) + 0.5) * Math.PI; } - return removedIds; + this.camera.setArmRotation(horizontalNew, verticalNew); + this.redraw(); + + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + util.preventDefault(event); }; + /** - * Remove an item by its id - * @param {Number | String | Object} id id or item - * @returns {Number | String | null} id - * @private + * Stop moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {event} event The event */ - 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; + 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); }; /** - * Clear the data - * @param {String} [senderId] Optional sender id - * @return {Array} removedIds The ids of all removed items + * 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 */ - DataSet.prototype.clear = function (senderId) { - var ids = Object.keys(this._data); - - this._data = {}; + 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); - this._trigger('remove', {items: ids}, senderId); + if (!this.showTooltip) { + return; + } - return ids; - }; + if (this.tooltipTimeout) { + clearTimeout(this.tooltipTimeout); + } - /** - * 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; + // (delayed) display of a tooltip only if no mouse button is down + if (this.leftButtonDown) { + this._hideTooltip(); + return; + } - 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; + 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; - return max; + // show a tooltip if we have a data point + var dataPoint = me._dataPointFromXY(mouseX, mouseY); + if (dataPoint) { + me._showTooltip(dataPoint); + } + }, delay); + } }; /** - * 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 + * Event handler for touchstart event on mobile devices */ - DataSet.prototype.min = function (field) { - var data = this._data, - min = null, - minField = null; + Graph3d.prototype._onTouchStart = function(event) { + this.touchDown = true; - 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; - } - } - } + 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); - return min; + this._onMouseDown(event); }; /** - * 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. + * Event handler for touchmove event on mobile devices */ - 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; + Graph3d.prototype._onTouchMove = function(event) { + this._onMouseMove(event); + }; - 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++; - } - } - } + /** + * Event handler for touchend event on mobile devices + */ + Graph3d.prototype._onTouchEnd = function(event) { + this.touchDown = false; - if (fieldType) { - for (i = 0; i < values.length; i++) { - values[i] = util.convert(values[i], fieldType); - } - } + util.removeEventListener(document, 'touchmove', this.ontouchmove); + util.removeEventListener(document, 'touchend', this.ontouchend); - return values; + this._onMouseUp(event); }; + /** - * Add a single item. Will fail when an item with the same id already exists. - * @param {Object} item - * @return {String} id - * @private + * 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.prototype._addItem = function (item) { - var id = item[this._fieldId]; + Graph3d.prototype._onWheel = function(event) { + if (!event) /* For IE. */ + event = window.event; - 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; + // 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; } - 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); - } + // 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); + + this.camera.setArmLength(newLength); + this.redraw(); + + this._hideTooltip(); } - this._data[id] = d; - return id; + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + // 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); }; /** - * 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 + * 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 */ - DataSet.prototype._getItem = function (id, types) { - var field, value; + Graph3d.prototype._insideTriangle = function (point, triangle) { + var a = triangle[0], + b = triangle[1], + c = triangle[2]; - // get the item from the dataset - var raw = this._data[id]; - if (!raw) { - return null; + function sign (x) { + return x > 0 ? 1 : x < 0 ? -1 : 0; } - // 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; + 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)); + + // 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); }; /** - * 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 + * 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 */ - 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'); + Graph3d.prototype._dataPointFromXY = function (x, y) { + var i, + distMax = 100, // px + dataPoint = null, + closestDataPoint = null, + closestDist = null, + center = new Point2d(x, y); + + 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); - // 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); + if ((closestDist === null || dist < closestDist) && dist < distMax) { + closestDist = dist; + closestDataPoint = dataPoint; + } + } } } - return id; + + return closestDataPoint; }; /** - * Get an array with the column names of a Google DataTable - * @param {DataTable} dataTable - * @return {String[]} columnNames + * Display a tooltip for given data point + * @param {Object} dataPoint * @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; - }; + 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'; + + 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; + } + + this._hideTooltip(); + + this.tooltip.dataPoint = dataPoint; + if (typeof this.showTooltip === 'function') { + content.innerHTML = this.showTooltip(dataPoint.point); + } + else { + content.innerHTML = '' + + '' + + '' + + '' + + '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; + } + + 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'; + }; /** - * Append an item as a row to the dataTable - * @param dataTable - * @param columns - * @param item + * Hide the tooltip when displayed * @private */ - DataSet.prototype._appendRow = function (dataTable, columns, item) { - var row = dataTable.addRow(); + Graph3d.prototype._hideTooltip = function () { + if (this.tooltip) { + this.tooltip.dataPoint = null; - for (var col = 0, cols = columns.length; col < cols; col++) { - var field = columns[col]; - dataTable.setValue(row, col, item[field]); + 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); + } + } + } } }; - module.exports = DataSet; + /**--------------------------------------------------------------------------**/ + + + /** + * 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; + }; + + /** + * Get the vertical mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse y + */ + getMouseY = function(event) { + if ('clientY' in event) return event.clientY; + return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + }; + + module.exports = Graph3d; /***/ }, -/* 8 */ +/* 6 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DataSet = __webpack_require__(7); + var Point3d = __webpack_require__(9); /** - * 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 + * @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. * - * @constructor DataView + * Documentation: + * http://en.wikipedia.org/wiki/3D_projection */ - 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 + Camera = function () { + this.armLocation = new Point3d(); + this.armRotation = {}; + this.armRotation.horizontal = 0; + this.armRotation.vertical = 0; + this.armLength = 1.7; - var me = this; - this.listener = function () { - me._onEvent.apply(me, arguments); - }; + this.cameraLocation = new Point3d(); + this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); - this.setData(data); - } + this.calculateCameraOrientation(); + }; - // TODO: implement a function .config() to dynamically update things like configured filter - // and trigger changes accordingly + /** + * 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; + + this.calculateCameraOrientation(); + }; /** - * Set a data source for the view - * @param {DataSet | DataView} data + * 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. */ - DataView.prototype.setData = function (data) { - var ids, i, len; + Camera.prototype.setArmRotation = function(horizontal, vertical) { + if (horizontal !== undefined) { + this.armRotation.horizontal = horizontal; + } - if (this._data) { - // unsubscribe from current dataset - if (this._data.unsubscribe) { - this._data.unsubscribe('*', this.listener); - } + 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; + } - // 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}); + if (horizontal !== undefined || vertical !== undefined) { + this.calculateCameraOrientation(); } + }; - this._data = data; + /** + * Retrieve the current arm rotation + * @return {object} An object with parameters horizontal and vertical + */ + Camera.prototype.getArmRotation = function() { + var rot = {}; + rot.horizontal = this.armRotation.horizontal; + rot.vertical = this.armRotation.vertical; - if (this._data) { - // update fieldId - this._fieldId = this._options.fieldId || - (this._data && this._data.options && this._data.options.fieldId) || - 'id'; + return rot; + }; - // 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}); + /** + * 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; - // subscribe to new dataset - if (this._data.on) { - this._data.on('*', this.listener); - } - } + this.armLength = length; + + // 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.calculateCameraOrientation(); }; /** - * 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 + * Retrieve the arm length + * @return {Number} length */ - DataView.prototype.get = function (args) { - var me = this; - - // 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]; - } + Camera.prototype.getArmLength = function() { + return this.armLength; + }; - // extend the options with the default options and provided options - var viewOptions = util.extend({}, this._options, options); + /** + * Retrieve the camera location + * @return {Point3d} cameraLocation + */ + Camera.prototype.getCameraLocation = function() { + return this.cameraLocation; + }; - // 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); - } - } + /** + * Retrieve the camera rotation + * @return {Point3d} cameraRotation + */ + Camera.prototype.getCameraRotation = function() { + return this.cameraRotation; + }; - // build up the call to the linked data set - var getArguments = []; - if (ids != undefined) { - getArguments.push(ids); - } - getArguments.push(viewOptions); - getArguments.push(data); + /** + * Calculate the location and rotation of the camera based on the + * position and orientation of the camera arm + */ + 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); - return this._data && this._data.get.apply(this._data, getArguments); + // calculate rotation of the camera + this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; + this.cameraRotation.y = 0; + this.cameraRotation.z = -this.armRotation.horizontal; }; + module.exports = Camera; + +/***/ }, +/* 7 */ +/***/ function(module, exports, __webpack_require__) { + + var DataView = __webpack_require__(4); + /** - * 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 + * @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 */ - DataView.prototype.getIds = function (options) { - var ids; + function Filter (data, column, graph) { + this.data = data; + this.column = column; + this.graph = graph; // the parent graph - if (this._data) { - var defaultFilter = this._options.filter; - var filter; + this.index = undefined; + this.value = undefined; - if (options && options.filter) { - if (defaultFilter) { - filter = function (item) { - return defaultFilter(item) && options.filter(item); - } - } - else { - filter = options.filter; - } - } - else { - filter = defaultFilter; - } + // read all distinct values and select the first one + this.values = graph.getDistinctValues(data.get(), this.column); - ids = this._data.getIds({ - filter: filter, - order: options && options.order - }); + // sort both numeric and string values correctly + this.values.sort(function (a, b) { + return a > b ? 1 : a < b ? -1 : 0; + }); + + if (this.values.length > 0) { + this.selectValue(0); + } + + // create an array with the filtered datapoints. this will be loaded afterwards + this.dataPoints = []; + + this.loaded = false; + this.onLoadCallback = undefined; + + if (graph.animationPreload) { + this.loaded = false; + this.loadInBackground(); } else { - ids = []; + this.loaded = true; } - - return ids; }; + /** - * 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 + * Return the label + * @return {string} label */ - DataView.prototype.getDataSet = function () { - var dataSet = this; - while (dataSet instanceof DataView) { - dataSet = dataSet._data; - } - return dataSet || null; + Filter.prototype.isLoaded = function() { + return this.loaded; }; + /** - * 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 + * Return the loaded progress + * @return {Number} percentage between 0 and 100 */ - DataView.prototype._onEvent = function (event, params, senderId) { - var i, len, id, item, - ids = params && params.items, - data = this._data, - added = [], - updated = [], - removed = []; + Filter.prototype.getLoadedProgress = function() { + var len = this.values.length; - 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); - } - } + var i = 0; + while (this.dataPoints[i]) { + i++; + } - break; + return Math.round(i / len * 100); + }; - 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); - 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 :-( - } - } - } + /** + * Return the label + * @return {string} label + */ + Filter.prototype.getLabel = function() { + return this.graph.filterLabel; + }; - 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); - } - } + /** + * Return the columnIndex of the filter + * @return {Number} columnIndex + */ + Filter.prototype.getColumn = function() { + return this.column; + }; - break; - } + /** + * Return the currently selected value. Returns undefined if there is no selection + * @return {*} value + */ + Filter.prototype.getSelectedValue = function() { + if (this.index === undefined) + return undefined; - 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); - } - } + return this.values[this.index]; }; - // 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; + /** + * Retrieve all values of the filter + * @return {Array} values + */ + Filter.prototype.getValues = function() { + return this.values; + }; - module.exports = DataView; + /** + * 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'; -/***/ }, -/* 9 */ -/***/ function(module, exports, __webpack_require__) { + return this.values[index]; + }; - 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] + * Retrieve the (filtered) dataPoints for the currently selected filter index + * @param {Number} [index] (optional) + * @return {Array} dataPoints */ - 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'; + Filter.prototype._getDataPoints = function(index) { + if (index === undefined) + index = this.index; - 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' + if (index === undefined) + return []; - this.animationInterval = 1000; // milliseconds - this.animationPreload = false; + var dataPoints; + if (this.dataPoints[index]) { + dataPoints = this.dataPoints[index]; + } + else { + var f = {}; + f.column = this.column; + f.value = this.values[index]; - this.camera = new Camera(); - this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + var dataView = new DataView(this.data,{filter: function (item) {return (item[f.column] == f.value);}}).get(); + dataPoints = this.graph._getDataPoints(dataView); - this.dataTable = null; // The original data table - this.dataPoints = null; // The table with point objects + this.dataPoints[index] = dataPoints; + } - // the column indexes - this.colX = undefined; - this.colY = undefined; - this.colZ = undefined; - this.colValue = undefined; - this.colFilter = undefined; + return dataPoints; + }; - 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 - // constants - this.colorAxis = '#4D4D4D'; - this.colorGrid = '#D3D3D3'; - this.colorDot = '#7DC1FF'; - this.colorDotBorder = '#3267D2'; - // create a frame and canvas - this.create(); + /** + * Set a callback function when the filter is fully loaded. + */ + Filter.prototype.setOnLoadCallback = function(callback) { + this.onLoadCallback = callback; + }; - // apply options (also when undefined) - this.setOptions(options); - // apply data - if (data) { - this.setData(data); - } - } + /** + * 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'; - // Extend Graph3d with an Emitter mixin - Emitter(Graph3d.prototype); + this.index = index; + this.value = this.values[index]; + }; /** - * Calculate the scaling values, dependent on the range in x, y, and z direction + * Load all filtered rows in the background one by one + * Start this method without providing an index! */ - Graph3d.prototype._setScale = function() { - this.scale = new Point3d(1 / (this.xMax - this.xMin), - 1 / (this.yMax - this.yMin), - 1 / (this.zMax - this.zMin)); + Filter.prototype.loadInBackground = function(index) { + if (index === undefined) + index = 0; - // 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; + var frame = this.graph.frame; + + if (index < this.values.length) { + var dataPointsTemp = this._getDataPoints(index); + //this.graph.redrawInfo(); // TODO: not neat + + // 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'; - // scale the vertical axis - this.scale.z *= this.verticalRatio; - // TODO: can this be automated? verticalRatio? + var me = this; + setTimeout(function() {me.loadInBackground(index+1);}, 10); + this.loaded = false; + } + else { + this.loaded = true; - // determine scale for (optional) value - this.scale.value = 1 / (this.valueMax - this.valueMin); + // remove the progress box + if (frame.progress !== undefined) { + frame.removeChild(frame.progress); + frame.progress = undefined; + } - // 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 (this.onLoadCallback) + this.onLoadCallback(); + } }; + module.exports = Filter; + - /** - * 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); - }; +/***/ }, +/* 8 */ +/***/ function(module, exports, __webpack_require__) { /** - * 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 + * @prototype Point2d + * @param {Number} [x] + * @param {Number} [y] */ - 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, + Point2d = function (x, y) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + }; - // 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), + module.exports = Point2d; - // 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 new Point3d(dx, dy, dz); - }; +/***/ }, +/* 9 */ +/***/ function(module, exports, __webpack_require__) { /** - * 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 + * @prototype Point3d + * @param {Number} [x] + * @param {Number} [y] + * @param {Number} [z] */ - 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); + function Point3d(x, y, z) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + this.z = z !== undefined ? z : 0; }; /** - * Set the background styling for the graph - * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor + * Subtract the two provided points, returns a-b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a-b */ - 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'; + 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; }; - - /// 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 + /** + * 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; }; /** - * 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 + * Calculate the average of two 3d points + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} The average, (a+b)/2 */ - 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; + Point3d.avg = function(a, b) { + return new Point3d( + (a.x + b.x) / 2, + (a.y + b.y) / 2, + (a.z + b.z) / 2 + ); }; /** - * Determine the indexes of the data columns, based on the given style and data - * @param {DataSet} data - * @param {Number} style + * 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 */ - 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; + Point3d.crossProduct = function(a, b) { + var crossproduct = new Point3d(); - 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; + 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; - if (data.getNumberOfColumns() > 4) { - this.colFilter = 4; - } - } - else { - throw 'Unknown style "' + this.style + '"'; - } + return crossproduct; }; - Graph3d.prototype.getNumberOfRows = function(data) { - return data.length; - } + /** + * 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 + ); + }; - Graph3d.prototype.getNumberOfColumns = function(data) { - var counter = 0; - for (var column in data[0]) { - if (data[0].hasOwnProperty(column)) { - counter++; - } - } - return counter; - } + module.exports = Point3d; - 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; - } +/***/ }, +/* 10 */ +/***/ function(module, exports, __webpack_require__) { - - 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; - }; + var util = __webpack_require__(1); /** - * 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 + * @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. */ - Graph3d.prototype._dataInitialize = function (rawData, style) { - var me = this; - - // unsubscribe from the dataTable - if (this.dataSet) { - this.dataSet.off('*', this._onChange); + 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 (rawData === undefined) - return; + 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); - if (Array.isArray(rawData)) { - rawData = new DataSet(rawData); - } + this.frame.prev = document.createElement('INPUT'); + this.frame.prev.type = 'BUTTON'; + this.frame.prev.value = 'Prev'; + this.frame.appendChild(this.frame.prev); - var data; - if (rawData instanceof DataSet || rawData instanceof DataView) { - data = rawData.get(); - } - else { - throw new Error('Array, DataSet, or DataView expected'); - } + this.frame.play = document.createElement('INPUT'); + this.frame.play.type = 'BUTTON'; + this.frame.play.value = 'Play'; + this.frame.appendChild(this.frame.play); - if (data.length == 0) - return; + this.frame.next = document.createElement('INPUT'); + this.frame.next.type = 'BUTTON'; + this.frame.next.value = 'Next'; + this.frame.appendChild(this.frame.next); - this.dataSet = rawData; - this.dataTable = data; + 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); - // subscribe to changes in the dataset - this._onChange = function () { - me.setData(me.dataSet); - }; - this.dataSet.on('*', this._onChange); + 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); - // _determineColumnIndexes - // getNumberOfRows (points) - // getNumberOfColumns (x,y,z,v,t,t1,t2...) - // getDistinctValues (unique values?) - // getColumnRange + // 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);}; + } - // 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'; + this.onChangeCallback = undefined; + this.values = []; + this.index = undefined; + this.playTimeout = undefined; + this.playInterval = 1000; // milliseconds + this.playLoop = true; + } - // 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();}); - } + /** + * Select the previous index + */ + Slider.prototype.prev = function() { + var index = this.getIndex(); + if (index > 0) { + index--; + this.setIndex(index); } + }; + /** + * Select the next index + */ + Slider.prototype.next = function() { + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); + } + }; - 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; - } + /** + * Select the next index + */ + Slider.prototype.playNext = function() { + var start = new Date(); - if (this.defaultYBarWidth !== undefined) { - this.yBarWidth = this.defaultYBarWidth; - } - else { - var dataY = this.getDistinctValues(data,this.colY); - this.yBarWidth = (dataY[1] - dataY[0]) || 1; - } + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); } - - // calculate minimums and maximums - var xRange = this.getColumnRange(data,this.colX); - if (withBars) { - xRange.min -= this.xBarWidth / 2; - xRange.max += this.xBarWidth / 2; + else if (this.playLoop) { + // jump to the start + index = 0; + this.setIndex(index); } - 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; + var end = new Date(); + var diff = (end - start); - 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; + // 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 - 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; - } + var me = this; + this.playTimeout = setTimeout(function() {me.playNext();}, interval); + }; - // set the scale dependent on the ranges. - this._setScale(); + /** + * Toggle start or stop playing + */ + Slider.prototype.togglePlay = function() { + if (this.playTimeout === undefined) { + this.play(); + } else { + this.stop(); + } }; + /** + * Start playing + */ + Slider.prototype.play = function() { + // Test whether already playing + if (this.playTimeout) return; + + this.playNext(); + if (this.frame) { + this.frame.play.value = 'Stop'; + } + }; /** - * Filter the data based on the current filter - * @param {Array} data - * @return {Array} dataPoints Array with point objects which can be drawn on screen + * Stop playing */ - 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; + Slider.prototype.stop = function() { + clearInterval(this.playTimeout); + this.playTimeout = undefined; - var dataPoints = []; + if (this.frame) { + this.frame.play.value = 'Play'; + } + }; - 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); - } - if (dataY.indexOf(y) === -1) { - dataY.push(y); - } - } - - function sortNumber(a, b) { - return a - b; - } - 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; - - var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer - var yIndex = dataY.indexOf(y); - - if (dataMatrix[xIndex] === undefined) { - dataMatrix[xIndex] = []; - } - - var point3d = new Point3d(); - point3d.x = x; - point3d.y = y; - point3d.z = z; - - obj = {}; - obj.point = point3d; - obj.trans = undefined; - obj.screen = undefined; - obj.bottom = new Point3d(x, y, this.zMin); - - dataMatrix[xIndex][yIndex] = obj; - - dataPoints.push(obj); - } - - // 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; - - if (this.colValue !== undefined) { - point.value = data[i][this.colValue] || 0; - } - - obj = {}; - obj.point = point; - obj.bottom = new Point3d(point.x, point.y, this.zMin); - obj.trans = undefined; - obj.screen = undefined; - - dataPoints.push(obj); - } - } - - return dataPoints; - }; + /** + * 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; + }; /** - * 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. + * Set the interval for playing the list + * @param {Number} interval The interval in milliseconds */ - Graph3d.prototype.create = function () { - // remove all elements from the container element. - while (this.containerElement.hasChildNodes()) { - this.containerElement.removeChild(this.containerElement.firstChild); - } - - this.frame = document.createElement('div'); - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; - - // 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); - } - - 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); - - // 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' - - 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); - - // add the new graph to the container element - this.containerElement.appendChild(this.frame); + Slider.prototype.setPlayInterval = function(interval) { + this.playInterval = interval; }; - /** - * 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%') + * Retrieve the current play interval + * @return {Number} interval The interval in milliseconds */ - Graph3d.prototype.setSize = function(width, height) { - this.frame.style.width = width; - this.frame.style.height = height; - - this._resizeCanvas(); + Slider.prototype.getPlayInterval = function(interval) { + return this.playInterval; }; /** - * Resize the canvas to the current size of the frame + * 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. */ - Graph3d.prototype._resizeCanvas = function() { - this.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; + Slider.prototype.setPlayLoop = function(doLoop) { + this.playLoop = doLoop; + }; - this.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; - // adjust with for margin - this.frame.filter.style.width = (this.frame.canvas.clientWidth - 2 * 10) + 'px'; + /** + * Execute the onchange callback function + */ + Slider.prototype.onChange = function() { + if (this.onChangeCallback !== undefined) { + this.onChangeCallback(); + } }; /** - * Start animation + * redraw the slider on the correct place */ - Graph3d.prototype.animationStart = function() { - if (!this.frame.filter || !this.frame.filter.slider) - throw 'No animation available'; + 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'; - this.frame.filter.slider.play(); + // position the slider button + var left = this.indexToLeft(this.index); + this.frame.slide.style.left = (left) + 'px'; + } }; /** - * Stop animation + * Set the list with values for the slider + * @param {Array} values A javascript array with values (any type) */ - Graph3d.prototype.animationStop = function() { - if (!this.frame.filter || !this.frame.filter.slider) return; + Slider.prototype.setValues = function(values) { + this.values = values; - this.frame.filter.slider.stop(); + if (this.values.length > 0) + this.setIndex(0); + else + this.index = undefined; }; - /** - * 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 + * Select a value by its index + * @param {Number} index */ - 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 - } + Slider.prototype.setIndex = function(index) { + if (index < this.values.length) { + this.index = index; - // 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); + this.redraw(); + this.onChange(); } else { - this.ycenter = parseFloat(this.defaultYCenter); // supposed to be in px + throw 'Error: index out of range'; } }; /** - * 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. + * retrieve the index of the currently selected vaue + * @return {Number} index */ - Graph3d.prototype.setCameraPosition = function(pos) { - if (pos === undefined) { - return; - } - - if (pos.horizontal !== undefined && pos.vertical !== undefined) { - this.camera.setArmRotation(pos.horizontal, pos.vertical); - } - - if (pos.distance !== undefined) { - this.camera.setArmLength(pos.distance); - } - - this.redraw(); + Slider.prototype.getIndex = function() { + return this.index; }; /** - * Retrieve the current camera rotation - * @return {object} An object with parameters horizontal, vertical, and - * distance + * retrieve the currently selected value + * @return {*} value */ - Graph3d.prototype.getCameraPosition = function() { - var pos = this.camera.getArmRotation(); - pos.distance = this.camera.getArmLength(); - return pos; + Slider.prototype.get = function() { + return this.values[this.index]; }; - /** - * Load data into the 3D Graph - */ - Graph3d.prototype._readData = function(data) { - // read the data - this._dataInitialize(data, this.style); + 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; + + this.startClientX = event.clientX; + this.startSlideX = parseFloat(this.frame.slide.style.left); - if (this.dataFilter) { - // apply filtering - this.dataPoints = this.dataFilter._getDataPoints(); - } - else { - // no filtering. load all data - this.dataPoints = this._getDataPoints(this.dataTable); - } + this.frame.style.cursor = 'move'; - // draw the filter - this._redrawFilter(); + // 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); }; - /** - * 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(); - } - }; + Slider.prototype.leftToIndex = function (left) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; + var x = left - 3; - /** - * Update the options. Options will be merged with current options - * @param {Object} options - */ - Graph3d.prototype.setOptions = function (options) { - var cameraPosition = undefined; + 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; - this.animationStop(); + return index; + }; - if (options !== undefined) { - // retrieve parameter values - if (options.width !== undefined) this.width = options.width; - if (options.height !== undefined) this.height = options.height; + Slider.prototype.indexToLeft = function (index) { + var width = parseFloat(this.frame.bar.style.width) - + this.frame.slide.clientWidth - 10; - if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; - if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; + var x = index / (this.values.length-1) * width; + var left = x + 3; - 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; + return left; + }; - 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 (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; - if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; - if (options.animationAutoStart !== undefined)this.animationAutoStart = options.animationAutoStart; - if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; - if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; + Slider.prototype._onMouseMove = function (event) { + var diff = event.clientX - this.startClientX; + var x = this.startSlideX + diff; - 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 index = this.leftToIndex(x); - if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; + this.setIndex(index); - 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); - } - } + util.preventDefault(); + }; - this._setBackgroundColor(options && options.backgroundColor); - this.setSize(this.width, this.height); + Slider.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; - // re-load the data - if (this.dataTable) { - this.setData(this.dataTable); - } + // remove event listeners + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); - // start animation when option is true - if (this.animationAutoStart && this.dataFilter) { - this.animationStart(); - } + util.preventDefault(); }; - /** - * Redraw the Graph. - */ - Graph3d.prototype.redraw = function() { - if (this.dataPoints === undefined) { - throw 'Error: graph data not initialized'; - } - - this._resizeCanvas(); - this._resizeCenter(); - this._redrawSlider(); - this._redrawClear(); - this._redrawAxis(); + module.exports = Slider; - 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(); - } - this._redrawInfo(); - this._redrawLegend(); - }; +/***/ }, +/* 11 */ +/***/ function(module, exports, __webpack_require__) { /** - * Clear the canvas before redrawing + * @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, ...) */ - Graph3d.prototype._redrawClear = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); + function StepNumber(start, end, step, prettyStep) { + // set default values + this._start = 0; + this._end = 0; + this._step = 1; + this.prettyStep = true; + this.precision = 5; - ctx.clearRect(0, 0, canvas.width, canvas.height); + this._current = 0; + this.setRange(start, end, step, prettyStep); }; - /** - * Redraw the legend showing the colors + * 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, ...) */ - Graph3d.prototype._redrawLegend = function() { - var y; - - if (this.style === Graph3d.STYLE.DOTCOLOR || - this.style === Graph3d.STYLE.DOTSIZE) { + StepNumber.prototype.setRange = function(start, end, step, prettyStep) { + this._start = start ? start : 0; + this._end = end ? end : 0; - 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 - } + this.setStep(step, prettyStep); + }; - 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; - } + /** + * 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; - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - ctx.lineWidth = 1; - ctx.font = '14px arial'; // TODO: put in options + if (prettyStep !== undefined) + this.prettyStep = prettyStep; - 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); + if (this.prettyStep === true) + this._step = StepNumber.calculatePrettyStep(step); + else + this._step = step; + }; - //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); + /** + * 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;}; - ctx.strokeStyle = color; - ctx.beginPath(); - ctx.moveTo(left, top + y); - ctx.lineTo(right, top + y); - ctx.stroke(); - } + // 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))); - ctx.strokeStyle = this.colorAxis; - ctx.strokeRect(left, top, widthMax, height); - } + // 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; - 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(); + // for safety + if (prettyStep <= 0) { + prettyStep = 1; } - 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(); - - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); - - step.next(); - } - - ctx.textAlign = 'right'; - ctx.textBaseline = 'top'; - var label = this.legendLabel; - ctx.fillText(label, right, bottom + this.margin); - } + return prettyStep; }; /** - * Redraw the filter + * returns the current value of the step + * @return {Number} current value */ - Graph3d.prototype._redrawFilter = function() { - this.frame.filter.innerHTML = ''; - - if (this.dataFilter) { - var options = { - 'visible': this.showAnimationControls - }; - var slider = new Slider(this.frame.filter, options); - this.frame.filter.slider = slider; - - // TODO: css here is not nice here... - this.frame.filter.style.padding = '10px'; - //this.frame.filter.style.backgroundColor = '#EFEFEF'; - - slider.setValues(this.dataFilter.values); - slider.setPlayInterval(this.animationInterval); - - // create an event handler - var me = this; - var onchange = function () { - var index = slider.getIndex(); - - me.dataFilter.selectValue(index); - me.dataPoints = me.dataFilter._getDataPoints(); + StepNumber.prototype.getCurrent = function () { + return parseFloat(this._current.toPrecision(this.precision)); + }; - me.redraw(); - }; - slider.setOnChangeCallback(onchange); - } - else { - this.frame.filter.slider = undefined; - } + /** + * returns the current step size + * @return {Number} current step size + */ + StepNumber.prototype.getStep = function () { + return this._step; }; /** - * Redraw the slider + * Set the current value to the largest value smaller than start, which + * is a multiple of the step size */ - Graph3d.prototype._redrawSlider = function() { - if ( this.frame.filter.slider !== undefined) { - this.frame.filter.slider.redraw(); - } + StepNumber.prototype.start = function() { + this._current = this._start - this._start % this._step; }; + /** + * Do a step, add the step size to the current value + */ + StepNumber.prototype.next = function () { + this._current += this._step; + }; /** - * Redraw common information + * Returns true whether the end is reached + * @return {boolean} True if the current value has passed the end value. */ - Graph3d.prototype._redrawInfo = function() { - if (this.dataFilter) { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); + StepNumber.prototype.end = function () { + return (this._current > this._end); + }; - ctx.font = '14px arial'; // TODO: put in options - ctx.lineStyle = 'gray'; - ctx.fillStyle = 'gray'; - ctx.textAlign = 'left'; - ctx.textBaseline = 'top'; + module.exports = StepNumber; - var x = this.margin; - var y = this.margin; - ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); - } - }; +/***/ }, +/* 12 */ +/***/ function(module, exports, __webpack_require__) { + + var Emitter = __webpack_require__(48); + 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); /** - * Redraw the axis + * 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 */ - 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; + 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]; + } + } - // TODO: get the actual rendered style of the containerElement - //ctx.font = this.containerElement.style.font; - ctx.font = 24 / this.camera.getArmLength() + 'px arial'; + if (!(this instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - // 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; + var me = this; + this.defaultOptions = { + start: null, + end: null, - // 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(); + autoResize: true, - 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(); + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - 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(); - } + // Create the DOM, props, and emitter + this._create(container); - 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'; + // 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) } - ctx.fillStyle = this.colorAxis; - ctx.fillText(' ' + step.getCurrent() + ' ', text.x, text.y); + }; - step.next(); - } + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - // 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(); + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - 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(); - } + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - 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); + // 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); - step.next(); + // item set + this.itemSet = new ItemSet(this.body); + this.components.push(this.itemSet); + + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + // apply options + if (options) { + this.setOptions(options); } - // 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(); + // create itemset + if (items) { + this.setItems(items); } - 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(); + else { + this.redraw(); + } + } - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); + /** + * 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); - step.next(); + // enable/disable autoResize + this._initAutoResize(); } - 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(); - // 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(); + // propagate options to all components + this.components.forEach(function (component) { + component.setOptions(options); + }); - // 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(); + // 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.'); + } - // 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); - } + // redraw everything + this.redraw(); + }; - // 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); + /** + * 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' + } + }); } - // 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); + // set items + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); + + 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); } }; /** - * 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 + * Set groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - Graph3d.prototype._hsv2rgb = function(H, S, V) { - var R, G, B, C, Hi, X; - - C = V * S; - Hi = Math.floor(H/60); // hi = 0,1,2,3,4,5 - X = C * (1 - Math.abs(((H/60) % 2) - 1)); - - 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; - - default: R = 0; G = 0; B = 0; break; + 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); } - return 'RGB(' + parseInt(R*255) + ',' + parseInt(G*255) + ',' + parseInt(B*255) + ')'; + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); }; - /** - * Draw all datapoints as a grid - * This function can be used when the style is 'grid' + * 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. */ - 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; + Timeline.prototype.setSelection = function(ids) { + this.itemSet && this.itemSet.setSelection(ids); + }; + /** + * 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.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? - // 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); + /** + * 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 + */ + Timeline.prototype.getItemRange = function() { + // calculate min from start filed + var dataset = this.itemsData.getDataSet(), + min = null, + max = null; - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + 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 - // 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; + // 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(); + } + else { + max = Math.max(max, util.convert(maxEndItem.end, 'Date').valueOf()); + } + } } - // sort the points on depth of their (x,y) position (not on z) - var sortDepth = function (a, b) { - return b.dist - a.dist; + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null }; - 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; + }; - if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { - 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) + module.exports = Timeline; - topSideVisible = (crossproduct.z > 0); - } - else { - topSideVisible = true; - } - 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 +/***/ }, +/* 13 */ +/***/ function(module, exports, __webpack_require__) { - 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; + var Emitter = __webpack_require__(48); + 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); - 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(); - } + /** + * 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]; } } - 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; - if (point !== undefined) { - if (this.showPerspective) { - lineWidth = 2 / -point.trans.z; - } - else { - lineWidth = 2 * -(this.eye.z / this.camera.getArmLength()); - } - } + var me = this; + this.defaultOptions = { + start: null, + end: null, - 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; + autoResize: true, - 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(); - } + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - 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; + // Create the DOM, props, and emitter + this._create(container); - 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(); - } + // 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) } - } - }; + }; + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - /** - * 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; + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - // 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; + // 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); - // 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; - } + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - // 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]; + // apply options + if (options) { + this.setOptions(options); + } - 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(); - } + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); + } - // 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; - } + // create itemset + if (items) { + this.setItems(items); + } + else { + this.redraw(); + } + } - var radius; - if (this.showPerspective) { - radius = size / -point.trans.z; - } - else { - radius = size * -(this.eye.z / this.camera.getArmLength()); - } - if (radius < 0) { - radius = 0; - } + /** + * 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); - 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); - } + // enable/disable autoResize + this._initAutoResize(); + } - // 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(); + // 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(); }; + /** - * Draw all datapoints as bars. - * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items */ - 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? - - // 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; + Graph2d.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - // 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; + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; } - - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); - - // 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]; - - // 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); - } - - // 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); - } - - // 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); + 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' + } }); + } - // 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; + // set items + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); - // if equal depth, sort the top surface last - if (a.corners === top) return 1; - if (b.corners === top) return -1; + if (initialLoad && ('start' in this.options || 'end' in this.options)) { + this.fit(); - // both are equal - return 0; - }); + 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; - // 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(); - } + this.setWindow(start, end); } }; - /** - * Draw a line through all datapoints. - * This function can be used when the style is 'line' + * Set groups + * @param {vis.DataSet | Array | google.visualization.DataTable} groups */ - 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; + Graph2d.prototype.setGroups = function(groups) { + // convert to type DataSet when needed + var newDataSet; + if (!groups) { + newDataSet = null; } - - // 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); + else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; } - - // 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); + else { + // turn an array into a dataset + newDataSet = new DataSet(groups); } - // finish the line - if (this.dataPoints.length > 0) { - ctx.stroke(); - } + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); }; /** - * Start a moving operation inside the provided parent element - * @param {Event} event The event that occurred (required for - * retrieving the mouse position) + * 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 */ - 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); + 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); } + else { + return "cannot find group:" + groupId; + } + } - // 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 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; + } + else { + return false; + } + } - this.startStart = new Date(this.start); - this.startEnd = new Date(this.end); - this.startArmRotation = this.camera.getArmRotation(); - this.frame.style.cursor = 'move'; + /** + * 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 + */ + Graph2d.prototype.getItemRange = function() { + var min = null; + var max = 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', me.onmousemove); - util.addEventListener(document, 'mouseup', me.onmouseup); - util.preventDefault(event); + // 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; + } + } + } + } + + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; }; - /** - * Perform moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {Event} event Well, eehh, the event - */ - 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; + module.exports = Graph2d; - 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); +/***/ }, +/* 14 */ +/***/ function(module, exports, __webpack_require__) { - // 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; - } + /** + * @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; - // snap vertically to nice angles - if (Math.abs(Math.sin(verticalNew)) < snapValue) { - verticalNew = Math.round((verticalNew / Math.PI)) * Math.PI; - } - if (Math.abs(Math.cos(verticalNew)) < snapValue) { - verticalNew = (Math.round((verticalNew/ Math.PI - 0.5)) + 0.5) * Math.PI; - } + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 1; - this.camera.setArmRotation(horizontalNew, verticalNew); - this.redraw(); + this.marginStart; + this.marginEnd; + this.deadSpace = 0; - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + + this.setRange(start, end, minimumStep, containerHeight, customRange); + } - util.preventDefault(event); - }; /** - * Stop moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {event} event The event + * 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 */ - Graph3d.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; - this.leftButtonDown = false; + 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; - // remove event listeners here - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); - util.preventDefault(event); + if (start == end) { + this._start = start - 0.75; + this._end = end + 1; + } + + if (this.autoScale) { + this.setMinimumStep(minimumStep, containerHeight); + } + this.setFirst(customRange); }; /** - * 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 + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds */ - 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; - } + 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); - if (this.tooltipTimeout) { - clearTimeout(this.tooltipTimeout); - } + var minorStepIdx = -1; + var magnitudefactor = Math.pow(10,orderOfMagnitude); - // (delayed) display of a tooltip only if no mouse button is down - if (this.leftButtonDown) { - this._hideTooltip(); - return; + var start = 0; + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; } - 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(); + 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; + } } - 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); - } + this.stepIndex = minorStepIdx; + this.scale = magnitudefactor; + this.step = magnitudefactor * this.minorSteps[minorStepIdx]; }; + + /** - * Event handler for touchstart event on mobile devices + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date */ - Graph3d.prototype._onTouchStart = function(event) { - this.touchDown = true; + 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; - 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.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; - this._onMouseDown(event); }; + 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; + } + } + + /** - * Event handler for touchmove event on mobile devices + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date */ - Graph3d.prototype._onTouchMove = function(event) { - this._onMouseMove(event); + DataStep.prototype.hasNext = function () { + return (this.current >= this.marginStart); }; /** - * Event handler for touchend event on mobile devices + * Do the next step */ - Graph3d.prototype._onTouchEnd = function(event) { - this.touchDown = false; + DataStep.prototype.next = function() { + var prev = this.current; + this.current -= this.step; - util.removeEventListener(document, 'touchmove', this.ontouchmove); - util.removeEventListener(document, 'touchend', this.ontouchend); - - this._onMouseUp(event); + // safety mechanism: if current time is still unchanged, move to the end + if (this.current == prev) { + this.current = this._end; + } }; - /** - * Event handler for mouse wheel event, used to zoom the graph - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {event} event The event + * Do the next step */ - Graph3d.prototype._onWheel = function(event) { - if (!event) /* For IE. */ - event = window.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; - } + DataStep.prototype.previous = function() { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; + }; - // 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); - this.camera.setArmLength(newLength); - this.redraw(); - this._hideTooltip(); + /** + * 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; + } } - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); - - // 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); + return toPrecision; }; - /** - * 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 - */ - 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; - } - 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)); + /** + * 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) { - // 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); }; /** - * 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 + * 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. */ - Graph3d.prototype._dataPointFromXY = function (x, y) { - var i, - distMax = 100, // px - dataPoint = null, - closestDataPoint = null, - closestDist = null, - center = new Point2d(x, y); + DataStep.prototype.isMajor = function() { + return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); + }; - 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); + module.exports = DataStep; - if ((closestDist === null || dist < closestDist) && dist < distMax) { - closestDist = dist; - closestDataPoint = dataPoint; - } - } - } - } +/***/ }, +/* 15 */ +/***/ function(module, exports, __webpack_require__) { - return closestDataPoint; - }; + var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(43); + var moment = __webpack_require__(40); + var Component = __webpack_require__(18); /** - * Display a tooltip for given data point - * @param {Object} dataPoint - * @private + * @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 */ - Graph3d.prototype._showTooltip = function (dataPoint) { - var content, line, dot; + 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 - 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 = body; - line = document.createElement('div'); - line.style.position = 'absolute'; - line.style.height = '40px'; - line.style.width = '0'; - line.style.borderLeft = '1px solid #4d4d4d'; + // 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); - 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'; + this.props = { + touch: {} + }; - 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; - } + // 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)); - this._hideTooltip(); + // ignore dragging when holding + this.body.emitter.on('hold', this._onHold.bind(this)); - this.tooltip.dataPoint = dataPoint; - if (typeof this.showTooltip === 'function') { - content.innerHTML = this.showTooltip(dataPoint.point); - } - else { - content.innerHTML = '' + - '' + - '' + - '' + - '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; - } + // mouse wheel for zooming + this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); + this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF - content.style.left = '0'; - content.style.top = '0'; - this.frame.appendChild(content); - this.frame.appendChild(line); - this.frame.appendChild(dot); + // pinch to zoom + this.body.emitter.on('touch', this._onTouch.bind(this)); + this.body.emitter.on('pinch', this._onPinch.bind(this)); - // 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); + this.setOptions(options); + } - 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'; - }; + Range.prototype = new Component(); /** - * Hide the tooltip when displayed - * @private + * 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 */ - Graph3d.prototype._hideTooltip = function () { - if (this.tooltip) { - this.tooltip.dataPoint = null; + 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); - 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); - } - } + if ('start' in options || 'end' in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); } } }; - /**--------------------------------------------------------------------------**/ - - /** - * Get the horizontal mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse x + * Test whether direction has a valid value + * @param {String} direction 'horizontal' or 'vertical' */ - getMouseX = function(event) { - if ('clientX' in event) return event.clientX; - return event.targetTouches[0] && event.targetTouches[0].clientX || 0; - }; + function validateDirection (direction) { + if (direction != 'horizontal' && direction != 'vertical') { + throw new TypeError('Unknown direction "' + direction + '". ' + + 'Choose "horizontal" or "vertical".'); + } + } /** - * Get the vertical mouse position from a mouse event - * @param {Event} event - * @return {Number} mouse y + * Set a new start and end range + * @param {Number} [start] + * @param {Number} [end] */ - getMouseY = function(event) { - if ('clientY' in event) return event.clientY; - return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + 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); + } }; - module.exports = Graph3d; + /** + * 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 + */ + 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; + // 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 + '"'); + } -/***/ }, -/* 10 */ -/***/ function(module, exports, __webpack_require__) { + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; + } - - /** - * Expose `Emitter`. - */ + // prevent start < min + if (min !== null) { + if (newStart < min) { + diff = (min - newStart); + newStart += diff; + newEnd += diff; - module.exports = Emitter; + // prevent end > max + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } + } - /** - * Initialize a new `Emitter`. - * - * @api public - */ + // prevent end > max + if (max !== null) { + if (newEnd > max) { + diff = (newEnd - max); + newStart -= diff; + newEnd -= diff; - function Emitter(obj) { - if (obj) return mixin(obj); - }; + // prevent start < min + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } + } - /** - * Mixin the emitter properties. - * - * @param {Object} obj - * @return {Object} - * @api private - */ + // 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; + } + } + } - function mixin(obj) { - for (var key in Emitter.prototype) { - obj[key] = Emitter.prototype[key]; + // 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; + } + } } - return obj; - } - /** - * Listen on the given `event` with `fn`. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ + var changed = (this.start != newStart || this.end != newEnd); - Emitter.prototype.on = - Emitter.prototype.addEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - (this._callbacks[event] = this._callbacks[event] || []) - .push(fn); - return this; + this.start = newStart; + this.end = newEnd; + + return changed; }; /** - * Adds an `event` listener that will be invoked a single - * time then automatically removed. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public + * Retrieve the current range. + * @return {Object} An object with start and end properties */ - - Emitter.prototype.once = function(event, fn){ - var self = this; - this._callbacks = this._callbacks || {}; - - function on() { - self.off(event, on); - fn.apply(this, arguments); - } - - on.fn = fn; - this.on(event, on); - return this; + Range.prototype.getRange = function() { + return { + start: this.start, + end: this.end + }; }; /** - * Remove the given callback for `event` or all - * registered callbacks. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public + * 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); + }; - Emitter.prototype.off = - Emitter.prototype.removeListener = - Emitter.prototype.removeAllListeners = - Emitter.prototype.removeEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - - // 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; + /** + * 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) } } - return this; + else { + return { + offset: 0, + scale: 1 + }; + } }; /** - * Emit `event` with the given args. - * - * @param {String} event - * @param {Mixed} ... - * @return {Emitter} + * 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; - Emitter.prototype.emit = function(event){ - this._callbacks = this._callbacks || {}; - var args = [].slice.call(arguments, 1) - , callbacks = this._callbacks[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.props.touch.allowDragging) return; - if (callbacks) { - callbacks = callbacks.slice(0); - for (var i = 0, len = callbacks.length; i < len; ++i) { - callbacks[i].apply(this, args); - } - } + this.props.touch.start = this.start; + this.props.touch.end = this.end; - return this; + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; + } }; /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public + * Perform dragging operation + * @param {Event} event + * @private */ - - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks[event] || []; + 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) + }); }; /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @api public + * Stop dragging operation + * @param {event} event + * @private */ + Range.prototype._onDragEnd = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; - }; - + // 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; -/***/ }, -/* 11 */ -/***/ function(module, exports, __webpack_require__) { + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'auto'; + } - /** - * @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; + // fire a rangechanged event + this.body.emitter.emit('rangechanged', { + start: new Date(this.start), + end: new Date(this.end) + }); }; /** - * Subtract the two provided points, returns a-b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a-b + * Event handler for mouse wheel event, used to zoom + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {Event} event + * @private */ - 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; + Range.prototype._onMouseWheel = function(event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) 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; + } + + // 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); + } + + // Prevent default actions caused by mouse wheel + // (else the page and timeline both zoom and scroll) + event.preventDefault(); }; /** - * Add the two provided points, returns a+b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a+b + * Start of a touch gesture + * @private */ - 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; + 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; }; /** - * Calculate the average of two 3d points - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} The average, (a+b)/2 + * On start of a hold gesture + * @private */ - Point3d.avg = function(a, b) { - return new Point3d( - (a.x + b.x) / 2, - (a.y + b.y) / 2, - (a.z + b.z) / 2 - ); + Range.prototype._onHold = function () { + this.props.touch.allowDragging = false; }; /** - * 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 + * Handle pinch event + * @param {Event} event + * @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; - }; - + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - /** - * 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 - ); - }; + this.props.touch.allowDragging = false; - module.exports = Point3d; + if (event.gesture.touches.length > 1) { + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); + } + var scale = 1 / event.gesture.scale, + initDate = this._pointerToDate(this.props.touch.center); -/***/ }, -/* 12 */ -/***/ function(module, exports, __webpack_require__) { + // 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); - /** - * @prototype Point2d - * @param {Number} [x] - * @param {Number} [y] - */ - Point2d = function (x, y) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; + // apply new range + this.setRange(newStart, newEnd); + } }; - module.exports = Point2d; - - -/***/ }, -/* 13 */ -/***/ function(module, exports, __webpack_require__) { - - 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 + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date + * @private */ - Camera = function () { - this.armLocation = new Point3d(); - this.armRotation = {}; - this.armRotation.horizontal = 0; - this.armRotation.vertical = 0; - this.armLength = 1.7; + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; - this.cameraLocation = new Point3d(); - this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); + validateDirection(direction); - this.calculateCameraOrientation(); + 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; + } }; /** - * 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 + * 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 */ - Camera.prototype.setArmLocation = function(x, y, z) { - this.armLocation.x = x; - this.armLocation.y = y; - this.armLocation.z = z; - - this.calculateCameraOrientation(); - }; + function getPointer (touch, element) { + return { + x: touch.pageX - util.getAbsoluteLeft(element), + y: touch.pageY - util.getAbsoluteTop(element) + }; + } /** - * 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. + * 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. */ - Camera.prototype.setArmRotation = function(horizontal, vertical) { - if (horizontal !== undefined) { - this.armRotation.horizontal = horizontal; + 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; } - 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; - } + // calculate new start and end + var newStart = center + (this.start - center) * scale; + var newEnd = center + (this.end - center) * scale; - if (horizontal !== undefined || vertical !== undefined) { - this.calculateCameraOrientation(); - } + this.setRange(newStart, newEnd); }; /** - * Retrieve the current arm rotation - * @return {object} An object with parameters horizontal and vertical + * 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 */ - Camera.prototype.getArmRotation = function() { - var rot = {}; - rot.horizontal = this.armRotation.horizontal; - rot.vertical = this.armRotation.vertical; + Range.prototype.move = function(delta) { + // zoom start Date and end Date relative to the centerDate + var diff = (this.end - this.start); - return rot; + // 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; }; /** - * Set the (normalized) length of the camera arm. - * @param {Number} length A length between 0.71 and 5.0 + * Move the range to a new center point + * @param {Number} moveTo New center point of the range */ - Camera.prototype.setArmLength = function(length) { - if (length === undefined) - return; + Range.prototype.moveTo = function(moveTo) { + var center = (this.start + this.end) / 2; - this.armLength = length; + var diff = center - moveTo; - // 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; + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; - this.calculateCameraOrientation(); + this.setRange(newStart, newEnd); }; - /** - * Retrieve the arm length - * @return {Number} length - */ - Camera.prototype.getArmLength = function() { - return this.armLength; - }; + module.exports = Range; + + +/***/ }, +/* 16 */ +/***/ function(module, exports, __webpack_require__) { + + // Utility functions for ordering and stacking of items + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors /** - * Retrieve the camera location - * @return {Point3d} cameraLocation + * Order items by their start data + * @param {Item[]} items */ - Camera.prototype.getCameraLocation = function() { - return this.cameraLocation; + exports.orderByStart = function(items) { + items.sort(function (a, b) { + return a.data.start - b.data.start; + }); }; /** - * Retrieve the camera rotation - * @return {Point3d} cameraRotation + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items */ - Camera.prototype.getCameraRotation = function() { - return this.cameraRotation; + 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; + }); }; /** - * Calculate the location and rotation of the camera based on the - * position and orientation of the camera arm + * 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 */ - 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); + exports.stack = function(items, margin, force) { + var i, iMax; - // calculate rotation of the camera - this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; - this.cameraRotation.y = 0; - this.cameraRotation.z = -this.armRotation.horizontal; - }; + if (force) { + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = null; + } + } - module.exports = Camera; + // 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; -/***/ }, -/* 14 */ -/***/ function(module, exports, __webpack_require__) { + 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; + } + } - var DataView = __webpack_require__(8); + 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); + } + } + }; /** - * @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 + * 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. */ - 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; - }); - - if (this.values.length > 0) { - this.selectValue(0); - } - - // create an array with the filtered datapoints. this will be loaded afterwards - this.dataPoints = []; - - this.loaded = false; - this.onLoadCallback = undefined; + exports.nostack = function(items, margin) { + var i, iMax; - if (graph.animationPreload) { - this.loaded = false; - this.loadInBackground(); - } - else { - this.loaded = true; + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = margin.axis; } }; - /** - * Return the label - * @return {string} label + * 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 */ - Filter.prototype.isLoaded = function() { - return this.loaded; + 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); }; +/***/ }, +/* 17 */ +/***/ function(module, exports, __webpack_require__) { + + var moment = __webpack_require__(40); + /** - * Return the loaded progress - * @return {Number} percentage between 0 and 100 + * @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 */ - Filter.prototype.getLoadedProgress = function() { - var len = this.values.length; + function TimeStep(start, end, minimumStep) { + // variables + this.current = new Date(); + this._start = new Date(); + this._end = new Date(); - var i = 0; - while (this.dataPoints[i]) { - i++; - } + this.autoScale = true; + this.scale = TimeStep.SCALE.DAY; + this.step = 1; - return Math.round(i / len * 100); + // 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 }; /** - * Return the label - * @return {string} label + * 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 */ - Filter.prototype.getLabel = function() { - return this.graph.filterLabel; - }; + TimeStep.prototype.setRange = function(start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } + this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); + this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); - /** - * Return the columnIndex of the filter - * @return {Number} columnIndex - */ - Filter.prototype.getColumn = function() { - return this.column; + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } }; /** - * Return the currently selected value. Returns undefined if there is no selection - * @return {*} value + * Set the range iterator to the start date. */ - Filter.prototype.getSelectedValue = function() { - if (this.index === undefined) - return undefined; - - return this.values[this.index]; + TimeStep.prototype.first = function() { + this.current = new Date(this._start.valueOf()); + this.roundToMinor(); }; /** - * Retrieve all values of the filter - * @return {Array} values + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date */ - Filter.prototype.getValues = function() { - return this.values; + 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 + } + + 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; + } + } }; /** - * Retrieve one value of the filter - * @param {Number} index - * @return {*} value + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date */ - Filter.prototype.getValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; - - return this.values[index]; + TimeStep.prototype.hasNext = function () { + return (this.current.valueOf() <= this._end.valueOf()); }; - /** - * Retrieve the (filtered) dataPoints for the currently selected filter index - * @param {Number} [index] (optional) - * @return {Array} dataPoints + * Do the next step */ - Filter.prototype._getDataPoints = function(index) { - if (index === undefined) - index = this.index; - - if (index === undefined) - return []; + TimeStep.prototype.next = function() { + var prev = this.current.valueOf(); - var dataPoints; - if (this.dataPoints[index]) { - dataPoints = this.dataPoints[index]; + // 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; + } } 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); + 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; + } + } - this.dataPoints[index] = dataPoints; + 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; + } } - return dataPoints; + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = new Date(this._end.valueOf()); + } }; - /** - * Set a callback function when the filter is fully loaded. + * Get the current datetime + * @return {Date} current The current date */ - Filter.prototype.setOnLoadCallback = function(callback) { - this.onLoadCallback = callback; + TimeStep.prototype.getCurrent = function() { + return this.current; }; - /** - * Add a value to the list with available values for this filter - * No double entries will be created. - * @param {Number} index + * 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. */ - Filter.prototype.selectValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + TimeStep.prototype.setScale = function(newScale, newStep) { + this.scale = newScale; - this.index = index; - this.value = this.values[index]; + if (newStep > 0) { + this.step = newStep; + } + + this.autoScale = false; }; /** - * Load all filtered rows in the background one by one - * Start this method without providing an index! + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true */ - Filter.prototype.loadInBackground = function(index) { - if (index === undefined) - index = 0; - - var frame = this.graph.frame; - - if (index < this.values.length) { - var dataPointsTemp = this._getDataPoints(index); - //this.graph.redrawInfo(); // TODO: not neat - - // 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'; - - 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; - } - - if (this.onLoadCallback) - this.onLoadCallback(); - } + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; }; - module.exports = Filter; - - -/***/ }, -/* 15 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); /** - * @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. + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds */ - function Slider(container, options) { - if (container === undefined) { - throw 'Error: No container element defined'; + TimeStep.prototype.setMinimumStep = function(minimumStep) { + if (minimumStep == undefined) { + return; } - 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); + 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); - this.frame.prev = document.createElement('INPUT'); - this.frame.prev.type = 'BUTTON'; - this.frame.prev.value = 'Prev'; - this.frame.appendChild(this.frame.prev); + // 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;} + }; - this.frame.play = document.createElement('INPUT'); - this.frame.play.type = 'BUTTON'; - this.frame.play.value = 'Play'; - this.frame.appendChild(this.frame.play); + /** + * 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 + */ + TimeStep.prototype.snap = function(date) { + var clone = new Date(date.valueOf()); - this.frame.next = document.createElement('INPUT'); - this.frame.next.type = 'BUTTON'; - this.frame.next.value = 'Next'; - this.frame.appendChild(this.frame.next); + 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); + } - 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); - - 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); - - // 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);}; + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); } - - this.onChangeCallback = undefined; - - this.values = []; - this.index = undefined; - - this.playTimeout = undefined; - this.playInterval = 1000; // milliseconds - this.playLoop = true; - } + 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; + }; /** - * Select the previous index + * 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. */ - Slider.prototype.prev = function() { - var index = this.getIndex(); - if (index > 0) { - index--; - this.setIndex(index); + 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; } }; + /** - * Select the next index + * 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 */ - Slider.prototype.next = function() { - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); + TimeStep.prototype.getLabelMinor = function(date) { + if (date == undefined) { + date = this.current; + } + + 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 ''; } }; + /** - * Select the next index + * 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 */ - Slider.prototype.playNext = function() { - var start = new Date(); - - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); + TimeStep.prototype.getLabelMajor = function(date) { + if (date == undefined) { + date = this.current; } - else if (this.playLoop) { - // jump to the start - index = 0; - this.setIndex(index); + + //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 ''; } + }; - var end = new Date(); - var diff = (end - start); + module.exports = TimeStep; - // 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 - var me = this; - this.playTimeout = setTimeout(function() {me.playNext();}, interval); - }; +/***/ }, +/* 18 */ +/***/ function(module, exports, __webpack_require__) { /** - * Toggle start or stop playing + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] */ - Slider.prototype.togglePlay = function() { - if (this.playTimeout === undefined) { - this.play(); - } else { - this.stop(); - } - }; + function Component (body, options) { + this.options = null; + this.props = null; + } /** - * Start playing + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options */ - Slider.prototype.play = function() { - // Test whether already playing - if (this.playTimeout) return; - - this.playNext(); - - if (this.frame) { - this.frame.play.value = 'Stop'; + Component.prototype.setOptions = function(options) { + if (options) { + util.extend(this.options, options); } }; /** - * Stop playing + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Slider.prototype.stop = function() { - clearInterval(this.playTimeout); - this.playTimeout = undefined; - - if (this.frame) { - this.frame.play.value = 'Play'; - } + Component.prototype.redraw = function() { + // should be implemented by the component + return false; }; /** - * Set a callback function which will be triggered when the value of the - * slider bar has changed. + * Destroy the component. Cleanup DOM and event listeners */ - Slider.prototype.setOnChangeCallback = function(callback) { - this.onChangeCallback = callback; + Component.prototype.destroy = function() { + // should be implemented by the component }; /** - * Set the interval for playing the list - * @param {Number} interval The interval in milliseconds - */ - Slider.prototype.setPlayInterval = function(interval) { - this.playInterval = interval; - }; - - /** - * Retrieve the current play interval - * @return {Number} interval The interval in milliseconds + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected */ - Slider.prototype.getPlayInterval = function(interval) { - return this.playInterval; - }; + Component.prototype._isResized = function() { + var resized = (this.props._previousWidth !== this.props.width || + this.props._previousHeight !== this.props.height); - /** - * 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; + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; + + return resized; }; + module.exports = Component; - /** - * Execute the onchange callback function - */ - Slider.prototype.onChange = function() { - if (this.onChangeCallback !== undefined) { - this.onChangeCallback(); - } - }; + +/***/ }, +/* 19 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var Component = __webpack_require__(18); + var moment = __webpack_require__(40); + var locales = __webpack_require__(44); /** - * redraw the slider on the correct place + * A current time bar + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * @constructor CurrentTime + * @extends Component */ - 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'; + function CurrentTime (body, options) { + this.body = body; - // position the slider button - var left = this.indexToLeft(this.index); - this.frame.slide.style.left = (left) + 'px'; - } - }; + // default options + this.defaultOptions = { + showCurrentTime: true, + + locales: locales, + locale: 'en' + }; + this.options = util.extend({}, this.defaultOptions); + + this._create(); + this.setOptions(options); + } + + CurrentTime.prototype = new Component(); /** - * Set the list with values for the slider - * @param {Array} values A javascript array with values (any type) + * Create the HTML DOM for the current time bar + * @private */ - Slider.prototype.setValues = function(values) { - this.values = values; + CurrentTime.prototype._create = function() { + var bar = document.createElement('div'); + bar.className = 'currenttime'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; - if (this.values.length > 0) - this.setIndex(0); - else - this.index = undefined; + this.bar = bar; }; /** - * Select a value by its index - * @param {Number} index + * Destroy the CurrentTime bar */ - Slider.prototype.setIndex = function(index) { - if (index < this.values.length) { - this.index = index; + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing - this.redraw(); - this.onChange(); - } - else { - throw 'Error: index out of range'; - } + this.body = null; }; /** - * retrieve the index of the currently selected vaue - * @return {Number} index + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] */ - Slider.prototype.getIndex = function() { - return this.index; + CurrentTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCurrentTime', 'locale', 'locales'], this.options, options); + } }; - /** - * retrieve the currently selected value - * @return {*} value + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Slider.prototype.get = function() { - return this.values[this.index]; - }; + 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(); + } - 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 now = new Date(); + var x = this.body.util.toScreen(now); - this.startClientX = event.clientX; - this.startSlideX = parseFloat(this.frame.slide.style.left); + var locale = this.options.locales[this.options.locale]; + var title = locale.current + ' ' + locale.time + ': ' + moment(now).format('dddd, MMMM Do YYYY, H:mm:ss'); + title = title.charAt(0).toUpperCase() + title.substring(1); - this.frame.style.cursor = 'move'; + this.bar.style.left = x + 'px'; + this.bar.title = title; + } + else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + this.stop(); + } - // 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); + return false; }; + /** + * Start auto refreshing the current time bar + */ + CurrentTime.prototype.start = function() { + var me = this; - Slider.prototype.leftToIndex = function (left) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; - var x = left - 3; + function update () { + me.stop(); - 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; + // 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; - return index; - }; + me.redraw(); - Slider.prototype.indexToLeft = function (index) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; + // start a timer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); + } - var x = index / (this.values.length-1) * width; - var left = x + 3; + update(); + }; - return left; + /** + * Stop auto refreshing the current time bar + */ + CurrentTime.prototype.stop = function() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } }; + module.exports = CurrentTime; - Slider.prototype._onMouseMove = function (event) { - var diff = event.clientX - this.startClientX; - var x = this.startSlideX + diff; +/***/ }, +/* 20 */ +/***/ function(module, exports, __webpack_require__) { - var index = this.leftToIndex(x); + var Hammer = __webpack_require__(41); + var util = __webpack_require__(1); + var Component = __webpack_require__(18); + var moment = __webpack_require__(40); + var locales = __webpack_require__(44); - this.setIndex(index); + /** + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCustomTime] + * @constructor CustomTime + * @extends Component + */ - util.preventDefault(); - }; + function CustomTime (body, options) { + this.body = body; + // default options + this.defaultOptions = { + showCustomTime: false, + locales: locales, + locale: 'en' + }; + this.options = util.extend({}, this.defaultOptions); - Slider.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; + this.customTime = new Date(); + this.eventParams = {}; // stores state parameters while dragging the bar - // remove event listeners - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); - - util.preventDefault(); - }; - - module.exports = Slider; + // create the DOM + this._create(); + this.setOptions(options); + } -/***/ }, -/* 16 */ -/***/ function(module, exports, __webpack_require__) { + CustomTime.prototype = new Component(); /** - * @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, ...) + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCustomTime] */ - function StepNumber(start, end, step, prettyStep) { - // set default values - this._start = 0; - this._end = 0; - this._step = 1; - this.prettyStep = true; - this.precision = 5; - - this._current = 0; - this.setRange(start, end, step, prettyStep); + CustomTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCustomTime', 'locale', 'locales'], this.options, options); + } }; /** - * 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, ...) + * Create the DOM for the custom time + * @private */ - StepNumber.prototype.setRange = function(start, end, step, prettyStep) { - this._start = start ? start : 0; - this._end = end ? end : 0; + 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; - this.setStep(step, prettyStep); + 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); + + // 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)); }; /** - * 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, ...) + * Destroy the CustomTime bar */ - StepNumber.prototype.setStep = function(step, prettyStep) { - if (step === undefined || step <= 0) - return; + CustomTime.prototype.destroy = function () { + this.options.showCustomTime = false; + this.redraw(); // will remove the bar from the DOM - if (prettyStep !== undefined) - this.prettyStep = prettyStep; + this.hammer.enable(false); + this.hammer = null; - if (this.prettyStep === true) - this._step = StepNumber.calculatePrettyStep(step); - else - this._step = step; + this.body = null; }; /** - * 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 + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - StepNumber.calculatePrettyStep = function (step) { - var log10 = function (x) {return Math.log(x) / Math.LN10;}; + 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); + } - // 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))); + var x = this.body.util.toScreen(this.customTime); - // 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; + var locale = this.options.locales[this.options.locale]; + var title = locale.time + ': ' + moment(this.customTime).format('dddd, MMMM Do YYYY, H:mm:ss'); + title = title.charAt(0).toUpperCase() + title.substring(1); - // for safety - if (prettyStep <= 0) { - prettyStep = 1; + this.bar.style.left = x + 'px'; + this.bar.title = title; + } + else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } } - return prettyStep; + return false; }; /** - * returns the current value of the step - * @return {Number} current value + * Set custom time. + * @param {Date} time */ - StepNumber.prototype.getCurrent = function () { - return parseFloat(this._current.toPrecision(this.precision)); + CustomTime.prototype.setCustomTime = function(time) { + this.customTime = new Date(time.valueOf()); + this.redraw(); }; /** - * returns the current step size - * @return {Number} current step size + * Retrieve the current custom time. + * @return {Date} customTime */ - StepNumber.prototype.getStep = function () { - return this._step; + CustomTime.prototype.getCustomTime = function() { + return new Date(this.customTime.valueOf()); }; /** - * Set the current value to the largest value smaller than start, which - * is a multiple of the step size + * Start moving horizontally + * @param {Event} event + * @private */ - StepNumber.prototype.start = function() { - this._current = this._start - this._start % this._step; + CustomTime.prototype._onDragStart = function(event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; + + event.stopPropagation(); + event.preventDefault(); }; /** - * Do a step, add the step size to the current value + * Perform moving operating. + * @param {Event} event + * @private */ - StepNumber.prototype.next = function () { - this._current += this._step; + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; + + var deltaX = event.gesture.deltaX, + x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, + time = this.body.util.toTime(x); + + this.setCustomTime(time); + + // fire a timechange event + this.body.emitter.emit('timechange', { + time: new Date(this.customTime.valueOf()) + }); + + event.stopPropagation(); + event.preventDefault(); }; /** - * Returns true whether the end is reached - * @return {boolean} True if the current value has passed the end value. + * Stop moving operating. + * @param {event} event + * @private */ - StepNumber.prototype.end = function () { - return (this._current > this._end); + 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(); }; - module.exports = StepNumber; + module.exports = CustomTime; /***/ }, -/* 17 */ +/* 21 */ /***/ 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__(28); - var ItemSet = __webpack_require__(29); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(18); + var DataStep = __webpack_require__(14); /** - * 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 + * A horizontal time axis + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @constructor DataAxis + * @extends Component + * @param body */ - 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]; - } - } - - if (!(this instanceof Timeline)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } + function DataAxis (body, options, svg) { + this.id = util.randomUUID(); + this.body = body; - var me = this; this.defaultOptions = { - start: null, - end: null, - - autoResize: true, - - orientation: 'bottom', - width: null, - height: null, - maxHeight: null, - minHeight: null + 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} + } }; - 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) - } + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {} }; - // range - this.range = new Range(this.body); - this.components.push(this.range); - this.body.range = this.range; + this.dom = {}; - // time axis - this.timeAxis = new TimeAxis(this.body); - this.components.push(this.timeAxis); - this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + this.range = {start:0, end:0}; - // current time bar - this.currentTime = new CurrentTime(this.body); - this.components.push(this.currentTime); + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; - // 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); + this.setOptions(options); + this.width = Number(('' + this.options.width).replace("px","")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; - // item set - this.itemSet = new ItemSet(this.body); - this.components.push(this.itemSet); + this.stepPixels = 25; + this.stepPixelsForced = 25; + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet - // apply options - if (options) { - this.setOptions(options); - } + this.groups = {}; + this.amountOfGroups = 0; - // create itemset - if (items) { - this.setItems(items); - } - else { - this.redraw(); - } + // create the HTML DOM + this._create(); } - /** - * 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); + DataAxis.prototype = new Component(); - // enable/disable autoResize - this._initAutoResize(); - } - // 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.'); + DataAxis.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; } - - // redraw everything - this.redraw(); + this.amountOfGroups += 1; }; - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items - */ - Timeline.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); + DataAxis.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - // 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' - } - }); + DataAxis.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; } + }; - // set items - this.itemsData = newDataSet; - this.itemSet && this.itemSet.setItems(newDataSet); - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + 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); - 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.minWidth = Number(('' + this.options.width).replace("px","")); - this.setWindow(start, end); + if (redraw == true && this.dom.frame) { + this.hide(); + this.show(); + } } }; + /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Create the HTML DOM for the DataAxis */ - 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); - } + 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.groupsData = newDataSet; - this.itemSet.setGroups(newDataSet); - }; + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; - /** - * 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); - }; - - /** - * 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() || []; + // 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); }; + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); - /** - * 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 - */ - Timeline.prototype.getItemRange = function() { - // calculate min from start filed - var dataset = this.itemsData.getDataSet(), - min = null, - max = null; + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; - 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 (this.options.orientation == 'left') { + x = iconOffset; + } + else { + x = this.width - iconWidth - iconOffset; + } - // 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(); - } - else { - max = Math.max(max, util.convert(maxEndItem.end, 'Date').valueOf()); + 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; } } } - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; + DOMutil.cleanupElements(this.svgElements); }; - - module.exports = Timeline; - - -/***/ }, -/* 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.'); + /** + * Create the HTML DOM for the DataAxis + */ + 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); + } } - } - -/***/ }, -/* 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'; + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } + }; /** - * @main - * @module hammer - * - * @class Hammer - * @static + * Create the HTML DOM for the DataAxis */ + DataAxis.prototype.hide = function() { + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } - /** - * 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 || {}); + if (this.dom.lineContainer.parentNode) { + this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); + } }; /** - * version, as defined in package.json - * the value will be set at each build - * @property VERSION - * @final - * @type {String} + * Set a range (start and end) + * @param end + * @param start + * @param end */ - Hammer.VERSION = '1.1.3'; + DataAxis.prototype.setRange = function (start, end) { + this.range.start = start; + this.range.end = end; + }; /** - * 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} + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - 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', + 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... - /** - * 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', + this.dom.lineContainer.style.height = this.height + 'px'; + this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; - /** - * 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', + var props = this.props; + var frame = this.dom.frame; - /** - * Specifies whether zooming is enabled. Used by IE10> - * @property defaults.behavior.contentZooming - * @type {String} - * @default 'none' - */ - contentZooming: 'none', + // update classname + frame.className = 'dataaxis'; - /** - * 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', + // calculate character width and height + this._calculateCharSize(); - /** - * 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)' - } - }; + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; - /** - * hammer document where the base events are added at - * @property DOCUMENT - * @type {HTMLElement} - * @default window.document - */ - Hammer.DOCUMENT = document; + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; - /** - * detect support for pointer events - * @property HAS_POINTEREVENTS - * @type {Boolean} - */ - Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; + 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; - /** - * detect support for touch events - * @property HAS_TOUCHEVENTS - * @type {Boolean} - */ - Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + // 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; + }; /** - * detect mobile browsers - * @property IS_MOBILE - * @type {Boolean} + * Repaint major and minor text labels and vertical grid lines + * @private */ - Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); + DataAxis.prototype._redrawLabels = function () { + DOMutil.prepareElements(this.DOMelements.lines); + DOMutil.prepareElements(this.DOMelements.labels); - /** - * 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 orientation = this.options['orientation']; - /** - * interval in which Hammer recalculates current velocity/direction/angle in ms - * @property CALCULATE_INTERVAL - * @type {Number} - * @default 25 - */ - Hammer.CALCULATE_INTERVAL = 25; + // 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; - /** - * 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 = {}; + var amountOfSteps = this.height / stepPixels; + var stepDifference = 0; - /** - * direction strings, for safe comparisons - * @property DIRECTION_DOWN|LEFT|UP|RIGHT - * @final - * @type {String} - * @default 'down' 'left' 'up' 'right' - */ - 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'; + 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; + } - /** - * pointertype strings, for safe comparisons - * @property POINTER_MOUSE|TOUCH|PEN - * @final - * @type {String} - * @default 'mouse' 'touch' 'pen' - */ - var POINTER_MOUSE = Hammer.POINTER_MOUSE = 'mouse'; - var POINTER_TOUCH = Hammer.POINTER_TOUCH = 'touch'; - var POINTER_PEN = Hammer.POINTER_PEN = 'pen'; - /** - * 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'; + this.valueAtZero = step.marginEnd; + var marginStartPos = 0; - /** - * if the window events are set... - * @property READY - * @writeOnce - * @type {Boolean} - * @default false - */ - Hammer.READY = false; + // do not draw the first label + var max = 1; - /** - * plugins namespace - * @property plugins - * @type {Object} - */ - Hammer.plugins = Hammer.plugins || {}; + 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(); - /** - * gestures namespace - * see `/gestures` for the definitions - * @property gestures - * @type {Object} - */ - Hammer.gestures = Hammer.gestures || {}; + 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); + } - /** - * setup events to detect gestures on the document - * this function is called when creating an new instance - * @private - */ - function setup() { - if(Hammer.READY) { - return; + 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); } - // find what eventtypes we add listeners to - Event.determineEventTypes(); + max++; + } - // Register all gestures inside Hammer.gestures - Utils.each(Hammer.gestures, function(gesture) { - Detection.register(gesture); - }); + if (this.master == false) { + this.conversionFactor = y / (this.valueAtZero - step.current); + } + else { + this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; + } - // Add touch events on the document - Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); - Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); + 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; + } + }; - // Hammer is ready...! - Hammer.READY = true; - } + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; + }; /** - * @module hammer - * - * @class Utils - * @static + * Create a label for the axis at position x + * @private + * @param y + * @param text + * @param orientation + * @param className + * @param characterHeight */ - 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; - }, - - /** - * 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); - }, + 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"; + } - /** - * 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); - }, + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; - /** - * 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; + text += ''; - // 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; - } - } - } - }, + var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; + } + }; - /** - * 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; - }, + /** + * Create a minor line for the axis at position y + * @param y + * @param orientation + * @param className + * @param offset + * @param width + */ + 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 = ''; - /** - * 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; - } - }, + if (orientation == 'left') { + line.style.left = (this.width - offset) + 'px'; + } + else { + line.style.right = (this.width - offset) + 'px'; + } - /** - * 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); - }, + line.style.width = width + 'px'; + line.style.top = y + 'px'; + } + }; - /** - * 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; - }, - /** - * 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; - // 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 - }; - } - Utils.each(touches, function(touch) { - pageX.push(touch.pageX); - pageY.push(touch.pageY); - clientX.push(touch.clientX); - clientY.push(touch.clientY); - }); - 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 - }; - }, + /** + * 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); - /** - * 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 - }; - }, + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; - /** - * 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; + this.dom.frame.removeChild(measureCharMinor); + } - return Math.atan2(y, x) * 180 / Math.PI; - }, + 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); - /** - * 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); + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; - if(x >= y) { - return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; - }, + this.dom.frame.removeChild(measureCharMajor); + } + }; - /** - * 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; + /** + * 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 Math.sqrt((x * x) + (y * y)); - }, + module.exports = DataAxis; - /** - * 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; - }, - /** - * 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; - }, +/***/ }, +/* 22 */ +/***/ function(module, exports, __webpack_require__) { - /** - * 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; - }, + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); - /** - * 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); + /** + * @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; + } - 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); - } + 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 = []; + } + }; - // test the style - if(p in element.style) { - element.style[p] = (toggle == null || toggle) && value || ''; - break; - } - } - }, + GraphGroup.prototype.setZeroPosition = function(pos) { + this.zeroPosition = pos; + }; - /** - * 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; + 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'); + + 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; + } } + } + } + } + }; - // set the css properties - Utils.each(props, function(value, prop) { - Utils.setPrefixedCss(element, prop, value, toggle); - }); + 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); + }; - var falseFn = toggle && function() { - return false; - }; + GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; - // also the disable onselectstart - if(props.userSelect == 'none') { - element.onselectstart = falseFn; - } - // and disable ondragstart - if(props.userDrag == 'none') { - element.ondragstart = falseFn; - } - }, + 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"); - /** - * 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(); - }); + 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); + } + }; /** - * @module hammer + * + * @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; + + +/***/ }, +/* 23 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var stack = __webpack_require__(16); + var ItemRange = __webpack_require__(31); + /** - * @class Event - * @static + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet */ - 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, - - /** - * if EVENT_START has been fired - * @property started - * @private - * @type {Boolean} - */ - started: false, + function Group (groupId, data, itemSet) { + this.groupId = groupId; - /** - * when the mouse is hold down, this is true - * @property should_detect - * @private - * @type {Boolean} - */ - shouldDetect: false, + this.itemSet = itemSet; - /** - * 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); - }); - }, + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; - /** - * 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); - }); - }, + 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: [] + }; - /** - * 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._create(); - var onTouchHandler = function onTouchHandler(ev) { - var srcType = ev.type.toLowerCase(), - isPointer = Hammer.HAS_POINTEREVENTS, - isMouse = Utils.inStr(srcType, 'mouse'), - triggerType; + this.setData(data); + } - // 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; + /** + * Create DOM elements for the group + * @private + */ + Group.prototype._create = function() { + var label = document.createElement('div'); + label.className = 'vlabel'; + this.dom.label = label; - // 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; - } + var inner = document.createElement('div'); + inner.className = 'inner'; + label.appendChild(inner); + this.dom.inner = inner; - // update the pointer event before entering the detection - if(isPointer && eventType != EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } + var foreground = document.createElement('div'); + foreground.className = 'group'; + foreground['timeline-group'] = this; + this.dom.foreground = foreground; - // we are in a touch/down state, so allowed detection of gestures - if(self.shouldDetect) { - triggerType = self.doDetect.call(self, ev, eventType, element, handler); - } + this.dom.background = document.createElement('div'); + this.dom.background.className = 'group'; - // ...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 - } + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'group'; - if(isPointer && eventType == EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - }; + // 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.on(element, EVENT_TYPES[eventType], onTouchHandler); - return onTouchHandler; - }, + /** + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className + */ + 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 + } - /** - * 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; + // update title + this.dom.label.title = data && data.title || ''; - // 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; + if (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, 'hidden'); + } + else { + util.removeClassName(this.dom.inner, 'hidden'); + } - // keep track of how many touches have been removed - changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); - } + // 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); + } + }; - // 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; - } + /** + * Get the width of the group label + * @return {number} width + */ + Group.prototype.getLabelWidth = function() { + return this.props.label.width; + }; - // 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); + /** + * 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; - // 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); - } + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); - // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed - if(triggerChange) { - evData.changedLength = changedLength; - evData.eventType = triggerChange; - - handler.call(Detection, evData); + // 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; - evData.eventType = triggerType; - delete evData.changedLength; - } + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); - // trigger the END event - if(triggerType == EVENT_END) { - handler.call(Detection, evData); + restack = true; + } - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - this.started = false; - } + // 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); + } - return triggerType; - }, + // 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); - /** - * 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' - ]; - } + // 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; - EVENT_TYPES[EVENT_START] = types[0]; - EVENT_TYPES[EVENT_MOVE] = types[1]; - EVENT_TYPES[EVENT_END] = types[2]; - return EVENT_TYPES; - }, + // 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; - /** - * 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(); - } + // apply new height + this.dom.background.style.height = height + 'px'; + this.dom.foreground.style.height = height + 'px'; + this.dom.label.style.height = height + 'px'; - // get the touchlist - if(ev.touches) { - if(eventType == EVENT_MOVE) { - return ev.touches; - } + // 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(); + } - var identifiers = []; - var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); - var touchList = []; + return resized; + }; - Utils.each(concat, function(touch) { - if(Utils.inArray(identifiers, touch.identifier) === false) { - touchList.push(touch); - } - identifiers.push(touch.identifier); - }); + /** + * Show this group: attach to the DOM + */ + Group.prototype.show = function() { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } - return touchList; - } + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } - // make fake touchList from mouse position - ev.identifier = 1; - return [ev]; - }, + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } - /** - * 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; - } + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); + } + }; - return { - center: Utils.getCenter(touches), - timeStamp: Date.now(), - target: ev.target, - touches: touches, - eventType: eventType, - pointerType: pointerType, - srcEvent: ev, + /** + * Hide this group: remove from the DOM + */ + Group.prototype.hide = function() { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); + } - /** - * 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(); - }, + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } - /** - * stop bubbling the event up to its parents - */ - stopPropagation: function() { - this.srcEvent.stopPropagation(); - }, + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); + } - /** - * immediately stop gesture detection - * might be useful after a swipe was detected - * @return {*} - */ - stopDetect: function() { - return Detection.stopDetect(); - } - }; - } + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } }; - /** - * @module hammer - * - * @class PointerEvent - * @static + * Add an item to the group + * @param {Item} item */ - var PointerEvent = Hammer.PointerEvent = { - /** - * holds all pointers, by `identifier` - * @property pointers - * @type {Object} - */ - pointers: {}, + Group.prototype.add = function(item) { + this.items[item.id] = item; + item.setParent(this); - /** - * 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 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; - } - }, - - /** - * 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; - } + 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); + } + }; - var pt = ev.pointerType, - types = {}; + /** + * Remove an item from the group + * @param {Item} item + */ + Group.prototype.remove = function(item) { + delete this.items[item.id]; + item.setParent(this.itemSet); - 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]; - }, + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); - /** - * reset the stored pointers - * @method reset - */ - reset: function resetList() { - this.pointers = {}; - } + // TODO: also remove from ordered items? }; - /** - * @module hammer - * - * @class Detection - * @static + * Remove an item from the corresponding DataSet + * @param {Item} item */ - var Detection = Hammer.detection = { - // contains all registred Hammer.gestures in the correct order - gestures: [], - - // data of the current Hammer.gesture detection session - current: null, - - // the previous Hammer.gesture session data - // is a full clone of the previous gesture.current object - previous: null, + Group.prototype.removeFromDataSet = function(item) { + this.itemSet.removeItem(item.id); + }; - // when this becomes true, no gestures are fired - stopped: false, + /** + * Reorder the items + */ + Group.prototype.order = function() { + var array = util.toArray(this.items); + this.orderedItems.byStart = array; + this.orderedItems.byEnd = this._constructByEndArray(array); - /** - * 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; - } + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); + }; - this.stopped = false; + /** + * Create an array containing all items being a range (having an end date) + * @param {Item[]} array + * @returns {ItemRange[]} + * @private + */ + Group.prototype._constructByEndArray = function(array) { + var endArray = []; - // 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 - }; + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); + } + } + return endArray; + }; - this.detect(eventData); - }, + /** + * 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 + */ + Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { + var initialPosByStart, + newVisibleItems = [], + i; - /** - * Hammer.gesture detection - * @method detect - * @param {Object} eventData - * @return {any} - */ - detect: function detect(eventData) { - if(!this.current || this.stopped) { - return; - } + // 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); + } + } - // extend event data with calculations about scale, distance etc - eventData = this.extendEventData(eventData); + // 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]); + } - // hammer instance and instance options - var inst = this.current.inst, - instOptions = inst.options; + // use visible search to find a visible ItemRange (only based on endTime) + var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); - // 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); + // 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;} + } + } - // store as previous event event - if(this.current) { - this.current.lastEvent = eventData; - } + // 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;} + } + } - if(eventData.eventType == EVENT_END) { - this.stopDetect(); - } + return newVisibleItems; + }; - return eventData; - }, - /** - * 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); - // reset the current - this.current = null; - this.stopped = true; - }, + /** + * 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 + */ + 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; + } + }; - /** - * 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; - - 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(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - cur.futureCalcEvent = ev; - } + /** + * 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); + } + else { + if (item.displayed) item.hide(); + } + }; - 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); + module.exports = Group; - cur.lastCalcEvent = cur.futureCalcEvent || ev; - cur.futureCalcEvent = ev; - } - ev.velocityX = calcData.velocity.x; - ev.velocityY = calcData.velocity.y; - ev.interimAngle = calcData.angle; - ev.interimDirection = calcData.direction; - }, +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { - /** - * 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; + 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); - // 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 - }); - }); - } - var deltaTime = ev.timeStamp - startEv.timeStamp, - deltaX = ev.center.clientX - startEv.center.clientX, - deltaY = ev.center.clientY - startEv.center.clientY; + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items - this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + /** + * 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; - Utils.extend(ev, { - startEvent: startEv, + this.defaultOptions = { + type: null, // 'box', 'point', 'range' + orientation: 'bottom', // 'top' or 'bottom' + align: 'center', // alignment of box items + stack: true, + groupOrder: null, - deltaTime: deltaTime, - deltaX: deltaX, - deltaY: deltaY, + selectable: true, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false + }, - 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) - }); + onAdd: function (item, callback) { + callback(item); + }, + onUpdate: function (item, callback) { + callback(item); + }, + onMove: function (item, callback) { + callback(item); + }, + onRemove: function (item, callback) { + callback(item); + }, - return ev; + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 }, + padding: 5 + }; - /** - * 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; - } + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); - // extend Hammer default options with the Hammer.gesture options - Utils.extend(Hammer.defaults, options, true); + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: {start: 'Date', end: 'Date'} + }; - // set its index - gesture.index = gesture.index || 1000; + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; - // add Hammer.gesture to the list - this.gestures.push(gesture); + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - // 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; - }); + // 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); + } + }; - return this.gestures; + // 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 = []; - /** - * @module hammer - */ + this.selection = []; // list with the ids of all selected nodes + this.stackDirty = true; // if true, all items will be restacked on next redraw - /** - * 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} - */ - Hammer.Instance = function(element, options) { - var self = this; + this.touchParams = {}; // stores properties while dragging + // create the HTML DOM - // setup HammerJS window events and register all gestures - // this also sets up the default options - setup(); + this._create(); - /** - * @property element - * @type {HTMLElement} - */ - this.element = element; + this.setOptions(options); + } - /** - * @property enabled - * @type {Boolean} - * @protected - */ - this.enabled = true; + ItemSet.prototype = new Component(); - /** - * 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); - } - - /** - * 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 = []; + // available item types will be registered here + ItemSet.types = { + box: ItemBox, + range: ItemRange, + point: ItemPoint }; - 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; - - 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; - }, + /** + * Create the HTML DOM for the ItemSet + */ + ItemSet.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'itemset'; + frame['timeline-itemset'] = this; + this.dom.frame = frame; - /** - * trigger gesture event - * @method trigger - * @chainable - * @param {String} gesture - * @param {Object} [eventData] - */ - trigger: function triggerEvent(gesture, eventData) { - // optional - if(!eventData) { - eventData = {}; - } + // create background panel + var background = document.createElement('div'); + background.className = 'background'; + frame.appendChild(background); + this.dom.background = background; - // create DOM event - var event = Hammer.DOCUMENT.createEvent('Event'); - event.initEvent(gesture, true, true); - event.gesture = eventData; + // create foreground panel + var foreground = document.createElement('div'); + foreground.className = 'foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; - // 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; - } + // create axis panel + var axis = document.createElement('div'); + axis.className = 'axis'; + this.dom.axis = axis; - element.dispatchEvent(event); - return this; - }, + // create labelset + var labelSet = document.createElement('div'); + labelSet.className = 'labelset'; + this.dom.labelSet = labelSet; - /** - * enable of disable hammer.js detection - * @method enable - * @chainable - * @param {Boolean} state - */ - enable: function enable(state) { - this.enabled = state; - return this; - }, + // create ungrouped Group + this._updateUngrouped(); - /** - * dispose this hammer instance - * @method dispose - * @return {Null} - */ - dispose: function dispose() { - var i, eh; + // 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 + }); - // undo all changes made by stop_browser_behavior - Utils.toggleBehavior(this.element, this.options.behavior, 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)); - // unbind all custom event handlers - for(i = -1; (eh = this.eventHandlers[++i]);) { - Utils.off(this.element, eh.gesture, eh.handler); - } + // single select (or unselect) when tapping an item + this.hammer.on('tap', this._onSelectItem.bind(this)); - this.eventHandlers = []; + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on('hold', this._onMultiSelectItem.bind(this)); - // unbind the start event listener - Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); + // add item on doubletap + this.hammer.on('doubletap', this._onAddItem.bind(this)); - return null; - } + // attach to the DOM + this.show(); }; - - /** - * @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(); - * }); - * ```` - * - * @class Drag - * @static - */ - /** - * @event drag - * @param {Object} ev + * 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 ('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(); + } + }; + /** - * @event dragstart - * @param {Object} ev + * Mark the ItemSet dirty so it will refresh everything with next redraw */ + ItemSet.prototype.markDirty = function() { + this.groupIds = []; + this.stackDirty = true; + }; + /** - * @event dragend - * @param {Object} ev + * Destroy the ItemSet */ + ItemSet.prototype.destroy = function() { + this.hide(); + this.setItems(null); + this.setGroups(null); + + this.hammer = null; + + this.body = null; + this.conversion = null; + }; + /** - * @event drapleft - * @param {Object} ev + * Hide the component from the DOM */ + 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); + } + }; + /** - * @event dragright - * @param {Object} ev + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ + 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); + } + }; + /** - * @event dragup - * @param {Object} ev + * 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'); + } + + // 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(); + } + } + } + }; + /** - * @event dragdown - * @param {Object} ev + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ + ItemSet.prototype.getSelection = function() { + return this.selection.concat([]); + }; /** - * @param {String} name + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - (function(name) { - var triggered = false; + 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); - function dragGesture(ev, inst) { - var cur = Detection.current; + var ids = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.visibleItems; - // max touches - if(inst.options.dragMaxTouches > 0 && - ev.touches.length > inst.options.dragMaxTouches) { - return; + // 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); } + } + } + } - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + return ids; + }; - 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; - } + /** + * 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 startCenter = cur.startEvent.center; + /** + * 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; - // 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; + // update class name + frame.className = 'itemset' + (editable ? ' editable' : ''); - // recalculate event data using new start point - ev = Detection.extendEventData(ev); - } - } + // reorder the groups (if needed) + resized = this._orderGroups() || resized; - // lock drag to axis? - if(cur.lastEvent.dragLockToAxis || - ( inst.options.dragLockToAxis && - inst.options.dragLockMinDistance <= ev.distance - )) { - ev.dragLockToAxis = true; - } - - // 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; - } - } - - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } - - // trigger events - inst.trigger(name, ev); - inst.trigger(name + ev.direction, ev); + // 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; - var isVertical = Utils.isVertical(ev.direction); + // 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; - // block the browser events - if((inst.options.dragBlockVertical && isVertical) || - (inst.options.dragBlockHorizontal && !isVertical)) { - ev.preventDefault(); - } - break; + // update frame height + frame.style.height = asSize(height); - case EVENT_RELEASE: - if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; + // calculate actual size and position + this.props.top = frame.offsetTop; + this.props.left = frame.offsetLeft; + this.props.width = frame.offsetWidth; + this.props.height = height; - case EVENT_END: - triggered = false; - break; - } - } + // 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'; - 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, + // check if this component is resized + resized = this._isResized() || resized; - /** - * 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, + return resized; + }; - /** - * set 0 for unlimited, but this can conflict with transform - * @property dragMaxTouches - * @type {Number} - * @default 1 - */ - dragMaxTouches: 1, + /** + * 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]; - /** - * 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, + return firstGroup || null; + }; - /** - * same as `dragBlockHorizontal`, but for vertical movement - * @property dragBlockVertical - * @type {Boolean} - * @default false - */ - dragBlockVertical: false, + /** + * 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]; - /** - * 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, + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED]; + } + } + 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; - /** - * 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 + for (var itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + ungrouped.add(this.items[itemId]); } - }; - })('drag'); + } - /** - * @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); + ungrouped.show(); } + } }; /** - * @module gestures - */ - /** - * Touch stays at the same place for x time - * - * @class Hold - * @static - */ - /** - * @event hold - * @param {Object} ev + * Get the element for the labelset + * @return {HTMLElement} labelSet */ + ItemSet.prototype.getLabelSet = function() { + return this.dom.labelSet; + }; /** - * @param {String} name + * Set items + * @param {vis.DataSet | null} items */ - (function(name) { - var timer; - - function holdGesture(ev, inst) { - var options = inst.options, - current = Detection.current; + ItemSet.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; - switch(ev.eventType) { - case EVENT_START: - clearTimeout(timer); + // 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'); + } - // set the gesture so we can check in the timeout if it still is - current.name = name; + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); - // 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; - - case EVENT_MOVE: - if(ev.distance > options.holdThreshold) { - clearTimeout(timer); - } - break; + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - case EVENT_RELEASE: - clearTimeout(timer); - break; - } - } + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - Hammer.gestures.Hold = { - name: name, - index: 10, - defaults: { - /** - * @property holdTimeout - * @type {Number} - * @default 500 - */ - holdTimeout: 500, + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); - /** - * movement allowed while holding - * @property holdThreshold - * @type {Number} - * @default 2 - */ - holdThreshold: 2 - }, - handler: holdGesture - }; - })('hold'); + // update the group holding all ungrouped items + this._updateUngrouped(); + } + }; /** - * @module gestures - */ - /** - * when a touch is being released from the page - * - * @class Release - * @static - */ - /** - * @event release - * @param {Object} ev + * Get the current items + * @returns {vis.DataSet | null} */ - Hammer.gestures.Release = { - name: 'release', - index: Infinity, - handler: function releaseGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - inst.trigger(this.name, ev); - } - } + ItemSet.prototype.getItems = function() { + return this.itemsData; }; /** - * @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 + * Set groups + * @param {vis.DataSet} groups */ - Hammer.gestures.Swipe = { - name: 'swipe', - index: 40, - defaults: { - /** - * @property swipeMinTouches - * @type {Number} - * @default 1 - */ - swipeMinTouches: 1, + ItemSet.prototype.setGroups = function(groups) { + var me = this, + ids; - /** - * @property swipeMaxTouches - * @type {Number} - * @default 1 - */ - swipeMaxTouches: 1, + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - /** - * horizontal swipe velocity - * @property swipeVelocityX - * @type {Number} - * @default 0.6 - */ - swipeVelocityX: 0.6, + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } - /** - * vertical swipe velocity - * @property swipeVelocityY - * @type {Number} - * @default 0.6 - */ - swipeVelocityY: 0.6 - }, + // 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'); + } - handler: function swipeGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - var touches = ev.touches.length, - options = inst.options; + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - // max touches - if(touches < options.swipeMinTouches || - touches > options.swipeMaxTouches) { - return; - } + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } - // 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); - } - } - } + // 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'); }; /** - * @module gestures - */ - /** - * Single tap and a double tap on a place - * - * @class Tap - * @static - */ - /** - * @event tap - * @param {Object} ev + * Get the current groups + * @returns {vis.DataSet | null} groups */ + ItemSet.prototype.getGroups = function() { + return this.groupsData; + }; + /** - * @event doubletap - * @param {Object} ev + * 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); + } + }); + } + }; /** - * @param {String} name + * Handle updated items + * @param {Number[]} ids + * @protected */ - (function(name) { - var hasMoved = false; - - function tapGesture(ev, inst) { - var options = inst.options, - current = Detection.current, - prev = Detection.previous, - sincePrev, - didDoubleTap; + ItemSet.prototype._onUpdate = function(ids) { + var me = this; - switch(ev.eventType) { - case EVENT_START: - hasMoved = false; - break; - - case EVENT_MOVE: - hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); - break; - - 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; + 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'); - // check if double tap - if(prev && prev.name == name && - (sincePrev && sincePrev < options.doubleTapInterval) && - ev.distance < options.doubleTapDistance) { - inst.trigger('doubletap', ev); - didDoubleTap = true; - } + var constructor = ItemSet.types[type]; - // do a single tap - if(!didDoubleTap || options.tapAlways) { - current.name = name; - inst.trigger(current.name, ev); - } - } - break; - } + 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); + } } - 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, + 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 { + throw new TypeError('Unknown item type "' + type + '"'); + } + } + }); - /** - * max distance of movement of a tap, this is for the slow tappers - * @property tapMaxDistance - * @type {Number} - * @default 10 - */ - tapMaxDistance: 10, + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + }; - /** - * always trigger the `tap` event, even while double-tapping - * @property tapAlways - * @type {Boolean} - * @default true - */ - tapAlways: true, + /** + * Handle added items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; - /** - * max distance between two taps - * @property doubleTapDistance - * @type {Number} - * @default 20 - */ - doubleTapDistance: 20, + /** + * 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); + } + }); - /** - * max time between two taps - * @property doubleTapInterval - * @type {Number} - * @default 300 - */ - doubleTapInterval: 300 - } - }; - })('tap'); + if (count) { + // update order + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + } + }; /** - * @module gestures + * 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(); + }); + }; + /** - * when a touch is being touched at the page - * - * @class Touch - * @static + * Handle updated groups + * @param {Number[]} ids + * @private */ + ItemSet.prototype._onUpdateGroups = function(ids) { + this._onAddGroups(ids); + }; + /** - * @event touch - * @param {Object} ev + * Handle changed groups + * @param {Number[]} ids + * @private */ - 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, + ItemSet.prototype._onAddGroups = function(ids) { + var me = this; - /** - * 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; - } + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; - if(inst.options.preventDefault) { - ev.preventDefault(); - } + if (!group) { + // check for reserved ids + if (id == UNGROUPED) { + throw new Error('Illegal group id. ' + id + ' is a reserved id.'); + } - if(ev.eventType == EVENT_TOUCH) { - inst.trigger('touch', ev); + 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'); }; /** - * @module gestures + * Handle removed groups + * @param {Number[]} ids + * @private */ + 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'); + }; + /** - * 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 + * 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; + } + + return changed; + } + else { + return false; + } + }; + /** - * @event transformstart - * @param {Object} ev + * Add a new item + * @param {Item} item + * @private */ + 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); + }; + /** - * @event transformend - * @param {Object} ev + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private */ + 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); + } + }; + /** - * @event pinchin - * @param {Object} ev + * 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 */ + 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); + }; + /** - * @event pinchout - * @param {Object} ev + * 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 = []; + + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); + } + } + return endArray; + }; + /** - * @event rotate - * @param {Object} ev + * 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); + }; /** - * @param {String} name + * Start dragging the selected events + * @param {Event} event + * @private */ - (function(name) { - var triggered = false; - - function transformGesture(ev, inst) { - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; - - 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); + ItemSet.prototype._onDragStart = function (event) { + if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; + } - // 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 item = this.touchParams.item || null, + me = this, + props; - // we are transforming! - Detection.current.name = name; + if (item && item.selected) { + var dragLeftItem = event.target.dragLeftItem; + var dragRightItem = event.target.dragRightItem; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + if (dragLeftItem) { + props = { + item: dragLeftItem + }; - inst.trigger(name, ev); // basic transform event + 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; + } - // trigger rotate event - if(rotationThreshold > inst.options.transformMinRotation) { - inst.trigger('rotate', ev); - } + this.touchParams.itemProps = [props]; + } + else if (dragRightItem) { + props = { + item: dragRightItem + }; - // trigger pinch event - if(scaleThreshold > inst.options.transformMinScale) { - inst.trigger('pinch', ev); - inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); - } - break; + 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; + } - case EVENT_RELEASE: - if(triggered && ev.changedLength < 2) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - } + this.touchParams.itemProps = [props]; } + else { + this.touchParams.itemProps = this.getSelection().map(function (id) { + var item = me.items[id]; + var props = { + item: item + }; - 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, + 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; + } - /** - * rotation in degrees - * @property transformMinRotation - * @type {Number} - * @default 1 - */ - transformMinRotation: 1 - }, + return props; + }); + } - handler: transformGesture - }; - })('transform'); + event.stopPropagation(); + } + }; /** - * @module hammer - */ - - // 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); - -/***/ }, -/* 20 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var moment = __webpack_require__(2); - var Component = __webpack_require__(22); - - /** - * @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 + * Drag selected items + * @param {Event} event + * @private */ - 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 + 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; - this.body = body; + // 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; + } - // 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); + if ('end' in props) { + var end = new Date(props.end + offset); + props.item.data.end = snap ? snap(end) : end; + } - this.props = { - touch: {} - }; + if ('group' in props) { + // drag from one group to another + var group = ItemSet.groupFromTarget(event); + _moveToGroup(props.item, group); + } + }); - // 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)); + // TODO: implement onMoving handler - // ignore dragging when holding - this.body.emitter.on('hold', this._onHold.bind(this)); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); - // mouse wheel for zooming - this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); - this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF + event.stopPropagation(); + } + }; - // pinch to zoom - this.body.emitter.on('touch', this._onTouch.bind(this)); - this.body.emitter.on('pinch', this._onPinch.bind(this)); + /** + * 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(); - this.setOptions(options); + item.data.group = group.groupId; + } } - Range.prototype = new Component(); - /** - * 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 + * End of dragging selected items + * @param {Event} event + * @private */ - 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); + 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(); - if ('start' in options || 'end' in options) { - // apply a new range. both start and end are optional - this.setRange(options.start, options.end); + 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); + + 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; + } + + // 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); + } + + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit('change'); + } + }); + } + }); + + // apply the changes to the data (if there are changes) + if (changes.length) { + dataset.update(changes); } + + event.stopPropagation(); } }; /** - * Test whether direction has a valid value - * @param {String} direction 'horizontal' or 'vertical' + * Handle selecting/deselecting an item when tapping it + * @param {Event} event + * @private */ - function validateDirection (direction) { - if (direction != 'horizontal' && direction != 'vertical') { - throw new TypeError('Unknown direction "' + direction + '". ' + - 'Choose "horizontal" or "vertical".'); + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; + + 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; } - } - /** - * Set a new start and end range - * @param {Number} [start] - * @param {Number} [end] - */ - 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); + 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(); }; /** - * 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 + * Handle creation and updates of an item on double tap + * @param event * @private */ - 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; - - // 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 + '"'); - } + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; - // prevent start < end - if (newEnd < newStart) { - newEnd = newStart; - } + var me = this, + snap = this.body.util.snap || null, + item = ItemSet.itemFromTarget(event); - // prevent start < min - if (min !== null) { - if (newStart < min) { - diff = (min - newStart); - newStart += diff; - newEnd += diff; + if (item) { + // update item - // prevent end > max - if (max != null) { - if (newEnd > max) { - newEnd = max; - } + // 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' + }; - // prevent end > max - if (max !== null) { - if (newEnd > max) { - diff = (newEnd - max); - newStart -= diff; - newEnd -= diff; - - // prevent start < min - if (min != null) { - if (newStart < min) { - newStart = min; - } - } + // 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; } - } - // prevent (end-start) < zoomMin - if (this.options.zoomMin !== null) { - var zoomMin = parseFloat(this.options.zoomMin); - if (zoomMin < 0) { - zoomMin = 0; + newItem[this.itemsData.fieldId] = util.randomUUID(); + + var group = ItemSet.groupFromTarget(event); + if (group) { + newItem.group = group.groupId; } - 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; + + // 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? } - } + }); } + }; - // prevent (end-start) > zoomMax - if (this.options.zoomMax !== null) { - var zoomMax = parseFloat(this.options.zoomMax); - if (zoomMax < 0) { - zoomMax = 0; + /** + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private + */ + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; + + var selection, + item = ItemSet.itemFromTarget(event); + + 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); } - 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 { + // item is already selected -> deselect it + selection.splice(index, 1); } - } - - var changed = (this.start != newStart || this.end != newEnd); + this.setSelection(selection); - this.start = newStart; - this.end = newEnd; + this.body.emitter.emit('select', { + items: this.getSelection() + }); - return changed; + event.stopPropagation(); + } }; /** - * Retrieve the current range. - * @return {Object} An object with start and end properties + * 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 */ - Range.prototype.getRange = function() { - return { - start: this.start, - end: this.end - }; - }; + ItemSet.itemFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-item')) { + return target['timeline-item']; + } + target = target.parentNode; + } - /** - * 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); + return null; }; /** - * 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 + * 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 */ - Range.conversion = function (start, end, width) { - if (width != 0 && (end - start != 0)) { - return { - offset: start, - scale: width / (end - start) + ItemSet.groupFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-group')) { + return target['timeline-group']; } + target = target.parentNode; } - else { - return { - offset: 0, - scale: 1 - }; - } + + return null; }; /** - * Start dragging horizontally or vertically + * Find the ItemSet from an event target: + * searches for the attribute 'timeline-itemset' in the event target's element tree * @param {Event} event - * @private + * @return {ItemSet | null} item */ - Range.prototype._onDragStart = function(event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + ItemSet.itemSetFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-itemset')) { + return target['timeline-itemset']; + } + target = target.parentNode; + } - // 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; + return null; + }; - this.props.touch.start = this.start; - this.props.touch.end = this.end; + module.exports = ItemSet; - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'move'; - } - }; + +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(18); /** - * Perform dragging operation - * @param {Event} event - * @private + * Legend for Graph2d */ - 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) - }); - }; + 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); - /** - * Stop dragging operation - * @param {event} event - * @private - */ - Range.prototype._onDragEnd = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); - // 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.setOptions(options); + } - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'auto'; - } + Legend.prototype = new Component(); - // fire a rangechanged event - this.body.emitter.emit('rangechanged', { - start: new Date(this.start), - end: new Date(this.end) - }); + + Legend.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; }; - /** - * Event handler for mouse wheel event, used to zoom - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {Event} event - * @private - */ - Range.prototype._onMouseWheel = function(event) { - // only allow zooming when configured as zoomable and moveable - if (!(this.options.zoomable && this.options.moveable)) return; + Legend.prototype.updateGroup = function(label, graphOptions) { + this.groups[label] = graphOptions; + }; - // 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; + Legend.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; } + }; - // 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)) ; - } + 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"; - // 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.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'legendText'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; - this.zoom(scale, pointerDate); - } + 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'; - // Prevent default actions caused by mouse wheel - // (else the page and timeline both zoom and scroll) - event.preventDefault(); + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); }; /** - * Start of a touch gesture - * @private + * Hide the component from the DOM */ - 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; + Legend.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } }; /** - * On start of a hold gesture - * @private + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - Range.prototype._onHold = function () { - this.props.touch.allowDragging = false; + Legend.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } }; - /** - * 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; + Legend.prototype.setOptions = function(options) { + var fields = ['enabled','orientation','icons','left','right']; + util.selectiveDeepExtend(fields, this.options, options); + }; - this.props.touch.allowDragging = false; + 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++; + } + } + } - if (event.gesture.touches.length > 1) { - if (!this.props.touch.center) { - this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); + 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 = ''; } - var scale = 1 / event.gesture.scale, - initDate = this._pointerToDate(this.props.touch.center); + 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 = ''; + } - // 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.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(); + } - // apply new range - this.setRange(newStart, newEnd); + 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'; } }; - /** - * 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; + 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; - validateDirection(direction); + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; - 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; - } - }; - - /** - * 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) - }; - } + 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; + } + } + } - /** - * 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; + DOMutil.cleanupElements(this.svgElements); } - - // 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); + module.exports = Legend; - // apply new values - var newStart = this.start + diff * delta; - var newEnd = this.end + diff * delta; - // TODO: reckon with min and max range +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { - this.start = newStart; - this.end = newEnd; - }; + 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); + + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items /** - * Move the range to a new center point - * @param {Number} moveTo New center point of the range + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor */ - Range.prototype.moveTo = function(moveTo) { - var center = (this.start + this.end) / 2; + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; - var diff = center - moveTo; + 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 + } + } + }; - // calculate new start and end - var newStart = this.start - diff; - var newEnd = this.end - diff; + // 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 = {}; - this.setRange(newStart, newEnd); - }; + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - module.exports = Range; + // 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.selection = []; // list with the ids of all selected nodes + this.lastStart = this.body.range.start; + this.touchParams = {}; // stores properties while dragging -/***/ }, -/* 21 */ -/***/ function(module, exports, __webpack_require__) { + this.svgElements = {}; + this.setOptions(options); + this.groupsUsingDefaultStyles = [0]; + + 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); + }); + + // create the HTML DOM + this._create(); + this.body.emitter.emit("change"); + } - var Hammer = __webpack_require__(18); + LineGraph.prototype = new Component(); /** - * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent - * @param {Element} element - * @param {Event} event + * Create the HTML DOM for the ItemSet */ - exports.fakeGesture = function(element, event) { - var eventType = null; - - // for hammer.js 1.0.5 - // var gesture = Hammer.event.collectEventData(this, eventType, event); + LineGraph.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'LineGraph'; + this.dom.frame = frame; - // for hammer.js 1.0.6+ - var touches = Hammer.event.getTouchList(event, eventType); - var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + // 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); - // 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; - } + // data axis + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - return gesture; - }; + this.options.dataAxis.orientation = 'right'; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); + delete this.options.dataAxis.orientation; + // legends + this.legendLeft = new Legend(this.body, this.options.legend, 'left'); + this.legendRight = new Legend(this.body, this.options.legend, 'right'); -/***/ }, -/* 22 */ -/***/ function(module, exports, __webpack_require__) { + this.show(); + }; /** - * Prototype for visual components - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] - * @param {Object} [options] + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param options */ - function Component (body, options) { - this.options = null; - this.props = null; - } - - /** - * Set options for the component. The new options will be merged into the - * current options. - * @param {Object} options - */ - Component.prototype.setOptions = function(options) { + LineGraph.prototype.setOptions = function(options) { if (options) { - util.extend(this.options, 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'); + + 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; + } + } + } + } + + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); + } + } + + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); + } + } + + if (this.groups.hasOwnProperty(UNGROUPED)) { + this.groups[UNGROUPED].setOptions(options); + } + } + if (this.dom.frame) { + this._updateGraph(); } }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Hide the component from the DOM */ - Component.prototype.redraw = function() { - // should be implemented by the component - return false; + LineGraph.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } }; /** - * Destroy the component. Cleanup DOM and event listeners + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - Component.prototype.destroy = function() { - // should be implemented by the component + LineGraph.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } }; + /** - * Test whether the component is resized since the last time _isResized() was - * called. - * @return {Boolean} Returns true if the component is resized - * @protected + * Set items + * @param {vis.DataSet | null} items */ - 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; + 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 { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } -/***/ }, -/* 23 */ -/***/ function(module, exports, __webpack_require__) { + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); - 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__(28); - var ItemSet = __webpack_require__(29); + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - /** - * 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 Core () {} + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - // turn Core into an event emitter - Emitter(Core.prototype); + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); + }; /** - * 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 + * Set groups + * @param {vis.DataSet} groups */ - Core.prototype._create = function (container) { - this.dom = {}; + LineGraph.prototype.setGroups = function(groups) { + var me = this, + ids; - 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'); + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - 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'; + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } - 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); + // 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'); + } - this.dom.centerContainer.appendChild(this.dom.center); - this.dom.leftContainer.appendChild(this.dom.left); - this.dom.rightContainer.appendChild(this.dom.right); + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - 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); + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + this._onUpdate(); + }; - 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; - }); + 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]); + } - // 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._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - // attach the root panel to the provided container - if (!container) throw new Error('No container provided'); - container.appendChild(this.dom.root); + 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(); }; /** - * Destroy the Core, clean up all DOM elements and event listeners. + * update a group object + * + * @param group + * @param groupId + * @private */ - 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); + 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]); + } } - this.dom = null; - - // cleanup hammer touch events - for (var event in this.listeners) { - if (this.listeners.hasOwnProperty(event)) { - delete this.listeners[event]; + 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.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 - */ - Core.prototype.setCustomTime = function (time) { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); + 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]); + } + } } - - this.customTime.setCustomTime(time); }; /** - * Retrieve the current custom time. - * @return {Date} customTime + * 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.getCustomTime = function() { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); + 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); } - 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 + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized */ - Core.prototype.getVisibleItems = function() { - return this.itemSet && this.itemSet.getVisibleItems() || []; - }; - - + LineGraph.prototype.redraw = function() { + var resized = false; - /** - * 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); + 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; - // clear groups - if (!what || what.groups) { - this.setGroups(null); + // calculate actual size and position + this.width = this.dom.frame.offsetWidth; + + // 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(); } - // clear options of timeline and of each of the components - if (!what || what.options) { - this.components.forEach(function (component) { - component.setOptions(component.defaultOptions); - }); + this.legendLeft.redraw(); + this.legendRight.redraw(); - this.setOptions(this.defaultOptions); // this will also do a redraw - } + return resized; }; /** - * Set Core window such that it fits all items + * Update and redraw the graph. + * */ - Core.prototype.fit = function() { - // apply the data range as range - var dataRange = this.getItemRange(); + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); - // 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 + if (this.width != 0 && this.itemsData != null) { + var group, groupData, preprocessedGroup, i; + var preprocessedGroupData = []; + var processedGroupData = []; + var groupRanges = []; + var changeCalled = false; + + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupIds.push(groupId); + } } - 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 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); - this.range.setRange(start, end); - }; + // 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([]); + } + } - /** - * 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 - */ - Core.prototype.setWindow = function(start, end) { - if (arguments.length == 1) { - var range = arguments[0]; - this.range.setRange(range.start, range.end); - } - else { - this.range.setRange(start, end); + // 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); + } + } + } + } } - }; - /** - * 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) - }; + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); }; /** - * Force a redraw of the Core. Can be useful to manually redraw when - * option autoResize=false + * 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.redraw = function() { - var resized = false, - options = this.options, - props = this.props, - dom = this.dom; + 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 (!dom) return; // when destroyed + // 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'; + } - // update class names - dom.root.className = 'vis timeline root ' + options.orientation; + minVal = groupRanges[i].min; + maxVal = groupRanges[i].max; - // 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, ''); + 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); + } + } - // 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; + changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; + changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; - // 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; + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; + } + else { + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; + } - // TODO: compensate borders when any of the panels is empty. + this.yAxisRight.master = !yAxisLeftUsed; - // 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'); - - // 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; - - // 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; - - // 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'; - - 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'; - - // 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(); + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} + else {this.yAxisLeft.lineOffset = 0;} - // 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); + changeCalled = this.yAxisLeft.redraw() || changeCalled; + this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; + changeCalled = this.yAxisRight.redraw() || changeCalled; } - 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'; - - // 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; - - // redraw all components - this.components.forEach(function (component) { - resized = component.redraw() || resized; - }); - if (resized) { - // keep repainting until all sizes are settled - this.redraw(); + else { + changeCalled = this.yAxisRight.redraw() || changeCalled; } - }; - - // TODO: deprecated since version 1.1.0, remove some day - Core.prototype.repaint = function () { - throw new Error('Function repaint is deprecated. Use redraw instead.'); + return changeCalled; }; /** - * 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 + * 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 */ - // 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._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; }; /** - * 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 + * draw a bar graph + * @param datapoints + * @param group */ - // 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); - }; + 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; - /** - * 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 - */ - // 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; - }; + // check for intersections + var intersections = {}; + 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; + } + } - /** - * 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; + // 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; + + 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); + + // draw points + if (group.options.drawPoints.enabled == true) { + DOMutil.drawPoint(dataset[i].x + drawData.offset, dataset[i].y, group, this.svgElements, this.svg); + } + } + } + } }; + LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; - /** - * Initialize watching when option autoResize is true - * @private - */ - Core.prototype._initAutoResize = function () { - if (this.options.autoResize == true) { - this._startAutoResize(); + 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 { - this._stopAutoResize(); + // 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;} } - }; + + return {width: width, offset: offset}; + } + /** - * Watch for changes in the size of the container. On resize, the Panel will - * automatically redraw itself. - * @private + * draw a line graph + * + * @param datapoints + * @param group */ - Core.prototype._startAutoResize = function () { - var me = this; - - this._stopAutoResize(); + 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); - this._onResize = function() { - if (me.options.autoResize != true) { - // stop watching when the option autoResize is changed to false - me._stopAutoResize(); - return; - } + // construct path from dataset + if (group.options.catmullRom.enabled == true) { + d = this._catmullRom(dataset, group); + } + else { + d = this._linear(dataset); + } - 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; + // 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); - me.emit('change'); + // draw points + if (group.options.drawPoints.enabled == true) { + this._drawPoints(dataset, group, this.svgElements, this.svg); } } - }; - - // add event listener to window resize - util.addEventListener(window, 'resize', this._onResize); - - this.watchTimer = setInterval(this._onResize, 1000); + } }; /** - * Stop watching for a resize of the frame. - * @private + * draw the data points + * + * @param dataset + * @param JSONcontainer + * @param svg + * @param group */ - Core.prototype._stopAutoResize = function () { - if (this.watchTimer) { - clearInterval(this.watchTimer); - this.watchTimer = undefined; + 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); } - - // 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; - }; - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onPinch = function (event) { - this.touch.allowDragging = false; - }; /** - * Start moving the timeline vertically - * @param {Event} event + * 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 */ - Core.prototype._onDragStart = function (event) { - this.touch.initialScrollTop = this.props.scrollTop; - }; + LineGraph.prototype._preprocessData = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; - /** - * 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; + var increment = 1; + var amountOfPoints = datapoints.length; - var delta = event.gesture.deltaY; + var yMin = datapoints[0].y; + var yMax = datapoints[0].y; - var oldScrollTop = this._getScrollTop(); - var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + // 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))); + } - if (newScrollTop != oldScrollTop) { - this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already + 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; } - }; - /** - * Apply a scrollTop - * @param {Number} scrollTop - * @returns {Number} scrollTop Returns the applied scrollTop - * @private - */ - Core.prototype._setScrollTop = function (scrollTop) { - this.props.scrollTop = scrollTop; - this._updateScrollTop(); - return this.props.scrollTop; + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return {min: yMin, max: yMax, data: extractedData}; }; /** - * Update the current scrollTop when the height of the containers has been changed - * @returns {Number} scrollTop Returns the applied scrollTop + * 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._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; + 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; } - // 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; + 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}); + } - return this.props.scrollTop; + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + + // extractedData.sort(function (a,b) {return a.x - b.x;}); + return extractedData; }; + /** - * Get the current scrollTop - * @returns {number} scrollTop + * 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._getScrollTop = function () { - return this.props.scrollTop; - }; + 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++) { - module.exports = Core; + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; -/***/ }, -/* 24 */ -/***/ function(module, exports, __webpack_require__) { + // 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 - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var TimeStep = __webpack_require__(25); - var moment = __webpack_require__(2); + // 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; + }; /** - * 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: [], + * 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 + */ + 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 ] + + // [ 0 1 0 0 ] + // [ -d2pow2a/N A/N d1pow2a/N 0 ] + // [ 0 d3pow2a/M B/M -d2pow2a/M ] + // [ 0 0 1 0 ] + + 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); + + 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;} + + bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), + y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; + + 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; + } + }; + + /** + * this generates the SVG path for a linear drawing between datapoints. + * @param data + * @returns {string} + * @private + */ + 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; + }; + + module.exports = LineGraph; + + +/***/ }, +/* 27 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var Component = __webpack_require__(18); + var TimeStep = __webpack_require__(17); + var moment = __webpack_require__(40); + + /** + * 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: { @@ -13279,17856 +12645,18490 @@ return /******/ (function(modules) { // webpackBootstrap /***/ }, -/* 25 */ +/* 28 */ /***/ function(module, exports, __webpack_require__) { - var moment = __webpack_require__(2); + var Hammer = __webpack_require__(41); /** - * @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 + * @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 TimeStep(start, end, minimumStep) { - // variables - this.current = new Date(); - this._start = new Date(); - this._end = new Date(); + function Item (data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; - this.autoScale = true; - this.scale = TimeStep.SCALE.DAY; - this.step = 1; + this.selected = false; + this.displayed = false; + this.dirty = true; - // initialize the range - this.setRange(start, end, minimumStep); + this.top = null; + this.left = null; + this.width = null; + this.height = null; } - /// enum scale - TimeStep.SCALE = { - MILLISECOND: 1, - SECOND: 2, - MINUTE: 3, - HOUR: 4, - DAY: 5, - WEEKDAY: 6, - MONTH: 7, - YEAR: 8 + /** + * Select current item + */ + Item.prototype.select = function() { + this.selected = true; + if (this.displayed) this.redraw(); }; + /** + * Unselect current item + */ + Item.prototype.unselect = function() { + this.selected = false; + if (this.displayed) this.redraw(); + }; /** - * 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 + * Set a parent for the item + * @param {ItemSet | Group} parent */ - TimeStep.prototype.setRange = function(start, end, minimumStep) { - if (!(start instanceof Date) || !(end instanceof Date)) { - throw "No legal start or end date in method setRange"; + Item.prototype.setParent = function(parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + if (this.parent) { + this.show(); + } } - - this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); - this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); - - if (this.autoScale) { - this.setMinimumStep(minimumStep); + else { + this.parent = parent; } }; /** - * Set the range iterator to the start date. + * 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 */ - TimeStep.prototype.first = function() { - this.current = new Date(this._start.valueOf()); - this.roundToMinor(); + Item.prototype.isVisible = function(range) { + // Should be implemented by Item implementations + return false; }; /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed */ - 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 - } + Item.prototype.show = function() { + return false; + }; - 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; - } - } + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + Item.prototype.hide = function() { + return false; }; /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date + * Repaint the item */ - TimeStep.prototype.hasNext = function () { - return (this.current.valueOf() <= this._end.valueOf()); + Item.prototype.redraw = function() { + // should be implemented by the item }; /** - * Do the next step + * Reposition the Item horizontally */ - TimeStep.prototype.next = function() { - var prev = this.current.valueOf(); + Item.prototype.repositionX = function() { + // should be implemented by the item + }; - // 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: + /** + * Reposition the Item vertically + */ + Item.prototype.repositionY = function() { + // should be implemented by the item + }; - 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; - } + /** + * 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 deleteButton = document.createElement('div'); + deleteButton.className = 'delete'; + deleteButton.title = 'Delete this item'; + + Hammer(deleteButton, { + preventDefault: true + }).on('tap', function (event) { + me.parent.removeFromDataSet(me); + event.stopPropagation(); + }); + + anchor.appendChild(deleteButton); + this.dom.deleteButton = deleteButton; } - 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; + 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; } + }; - 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; - } - } + module.exports = Item; - // safety mechanism: if current time is still unchanged, move to the end - if (this.current.valueOf() == prev) { - this.current = new Date(this._end.valueOf()); - } - }; +/***/ }, +/* 29 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Get the current datetime - * @return {Date} current The current date - */ - TimeStep.prototype.getCurrent = function() { - return this.current; - }; + var Item = __webpack_require__(28); /** - * 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. + * @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 */ - TimeStep.prototype.setScale = function(newScale, newStep) { - this.scale = newScale; + function ItemBox (data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 + } + }; - if (newStep > 0) { - this.step = newStep; + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } } - this.autoScale = false; - }; + Item.call(this, data, conversion, options); + } + + ItemBox.prototype = new Item (null, null, null); /** - * Enable or disable autoscaling - * @param {boolean} enable If true, autoascaling is set true + * 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 */ - TimeStep.prototype.setAutoScale = function (enable) { - this.autoScale = enable; + 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); }; - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds + * Repaint the item */ - TimeStep.prototype.setMinimumStep = function(minimumStep) { - if (minimumStep == undefined) { - return; - } + ItemBox.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - 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); + // create main box + dom.box = document.createElement('DIV'); - // 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;} - }; + // contents box (inside the background box). used for making margins + dom.content = document.createElement('DIV'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - /** - * 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 - */ - TimeStep.prototype.snap = function(date) { - var clone = new Date(date.valueOf()); + // line to axis + dom.line = document.createElement('DIV'); + dom.line.className = 'line'; - 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); + // dot on axis + dom.dot = document.createElement('DIV'); + dom.dot.className = 'dot'; + + // attach this item as attribute + dom.box['timeline-item'] = this; } - 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); - } - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); } - 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); + 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); } - 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); + 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); } - 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; + 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); } - 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; + else if (this.data.content != undefined) { + dom.content.innerHTML = this.content; } - 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 { + throw new Error('Property "content" missing in item ' + this.data.id); } + + this.dirty = true; } - 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; - }; - /** - * 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. - */ - 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; + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; } - }; + // 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; - /** - * 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 - */ - TimeStep.prototype.getLabelMinor = function(date) { - if (date == undefined) { - date = this.current; + this.dirty = true; } - 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 ''; + // 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); + }; /** - * 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 + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. */ - TimeStep.prototype.getLabelMajor = function(date) { - if (date == undefined) { - date = this.current; - } - - //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 ''; + ItemBox.prototype.show = function() { + if (!this.displayed) { + this.redraw(); } }; - module.exports = TimeStep; + /** + * Hide the item from the DOM (when visible) + */ + 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); -/***/ }, -/* 26 */ -/***/ function(module, exports, __webpack_require__) { + this.top = null; + this.left = null; - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var moment = __webpack_require__(2); - var locales = __webpack_require__(27); + this.displayed = false; + } + }; /** - * A current time bar - * @param {{range: Range, dom: Object, domProps: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCurrentTime] - * @constructor CurrentTime - * @extends Component + * Reposition the item horizontally + * @Override */ - function CurrentTime (body, options) { - this.body = body; - - // default options - this.defaultOptions = { - showCurrentTime: true, - - locales: locales, - locale: 'en' - }; - this.options = util.extend({}, this.defaultOptions); - - this._create(); - - this.setOptions(options); - } - - CurrentTime.prototype = new Component(); - - /** - * Create the HTML DOM for the current time bar - * @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; - }; - - /** - * Destroy the CurrentTime bar - */ - CurrentTime.prototype.destroy = function () { - this.options.showCurrentTime = false; - this.redraw(); // will remove the bar from the DOM and stop refreshing - - this.body = null; - }; + 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; - /** - * 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', 'locale', 'locales'], this.options, options); + // calculate left position of the box + if (align == 'right') { + this.left = start - this.width; } - }; - - /** - * 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); - } - parent.appendChild(this.bar); - - this.start(); - } - - var now = new Date(); - var x = this.body.util.toScreen(now); - - var locale = this.options.locales[this.options.locale]; - var title = locale.current + ' ' + locale.time + ': ' + moment(now).format('dddd, MMMM Do YYYY, H:mm:ss'); - title = title.charAt(0).toUpperCase() + title.substring(1); - - this.bar.style.left = x + 'px'; - this.bar.title = title; + else if (align == 'left') { + this.left = start; } else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } - this.stop(); + // default or 'center' + this.left = start - this.width / 2; } - return false; - }; - - /** - * Start auto refreshing the current time bar - */ - CurrentTime.prototype.start = function() { - var me = this; - - function update () { - me.stop(); - - // 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; - - me.redraw(); + // reposition box + box.style.left = this.left + 'px'; - // start a timer to adjust for the new time - me.currentTimeTimer = setTimeout(update, interval); - } + // reposition line + line.style.left = (start - this.props.line.width / 2) + 'px'; - update(); + // reposition dot + dot.style.left = (start - this.props.dot.width / 2) + 'px'; }; /** - * Stop auto refreshing the current time bar + * Reposition the item vertically + * @Override */ - CurrentTime.prototype.stop = function() { - if (this.currentTimeTimer !== undefined) { - clearTimeout(this.currentTimeTimer); - delete this.currentTimeTimer; - } - }; + ItemBox.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; - module.exports = CurrentTime; + 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; -/***/ }, -/* 27 */ -/***/ function(module, exports, __webpack_require__) { + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + line.style.top = (itemSetHeight - lineHeight) + 'px'; + line.style.bottom = '0'; + } - // English - exports['en'] = { - current: 'current', - time: 'time' + dot.style.top = (-this.props.dot.height / 2) + 'px'; }; - exports['en_EN'] = exports['en']; - exports['en_US'] = exports['en']; - // Dutch - exports['nl'] = { - custom: 'aangepaste', - time: 'tijd' - }; - exports['nl_NL'] = exports['nl']; - exports['nl_BE'] = exports['nl']; + module.exports = ItemBox; /***/ }, -/* 28 */ +/* 30 */ /***/ function(module, exports, __webpack_require__) { - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var moment = __webpack_require__(2); - var locales = __webpack_require__(27); + var Item = __webpack_require__(28); /** - * A custom time bar - * @param {{range: Range, dom: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCustomTime] - * @constructor CustomTime - * @extends Component + * @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 CustomTime (body, options) { - this.body = body; - - // default options - this.defaultOptions = { - showCustomTime: false, - locales: locales, - locale: 'en' + function ItemPoint (data, conversion, options) { + this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0 + } }; - this.options = util.extend({}, this.defaultOptions); - - this.customTime = new Date(); - this.eventParams = {}; // stores state parameters while dragging the bar - // create the DOM - this._create(); + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } + } - this.setOptions(options); + Item.call(this, data, conversion, options); } - CustomTime.prototype = new Component(); + ItemPoint.prototype = new Item (null, null, null); /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCustomTime] + * 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 */ - CustomTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCustomTime', 'locale', 'locales'], this.options, options); - } + 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); }; /** - * Create the DOM for the custom time - * @private + * Repaint the item */ - 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; + ItemPoint.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - 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); + // background box + dom.point = document.createElement('div'); + // className is updated in redraw() - // 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)); - }; + // contents box, right from the dot + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.point.appendChild(dom.content); - /** - * Destroy the CustomTime bar - */ - CustomTime.prototype.destroy = function () { - this.options.showCustomTime = false; - this.redraw(); // will remove the bar from the DOM + // dot at start + dom.dot = document.createElement('div'); + dom.point.appendChild(dom.dot); - this.hammer.enable(false); - this.hammer = null; + // attach this item as attribute + dom.point['timeline-item'] = this; + } - this.body = null; - }; + // 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; - /** - * 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); + // 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); } - var x = this.body.util.toScreen(this.customTime); + this.dirty = true; + } - var locale = this.options.locales[this.options.locale]; - var title = locale.time + ': ' + moment(this.customTime).format('dddd, MMMM Do YYYY, H:mm:ss'); - title = title.charAt(0).toUpperCase() + title.substring(1); + // update title + if (this.data.title != this.title) { + dom.point.title = this.data.title; + this.title = this.data.title; + } - this.bar.style.left = x + 'px'; - this.bar.title = title; + // 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; } - else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } + + // 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; + + // resize contents + dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; + //dom.content.style.marginRight = ... + 'px'; // TODO: margin right + + 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; } - return false; + this._repaintDeleteButton(dom.point); }; /** - * Set custom time. - * @param {Date} time + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - CustomTime.prototype.setCustomTime = function(time) { - this.customTime = new Date(time.valueOf()); - this.redraw(); + ItemPoint.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } }; /** - * Retrieve the current custom time. - * @return {Date} customTime + * Hide the item from the DOM (when visible) */ - CustomTime.prototype.getCustomTime = function() { - return new Date(this.customTime.valueOf()); - }; + ItemPoint.prototype.hide = function() { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); + } - /** - * Start moving horizontally - * @param {Event} event - * @private - */ - CustomTime.prototype._onDragStart = function(event) { - this.eventParams.dragging = true; - this.eventParams.customTime = this.customTime; + this.top = null; + this.left = null; - event.stopPropagation(); - event.preventDefault(); + this.displayed = false; + } }; /** - * Perform moving operating. - * @param {Event} event - * @private + * Reposition the item horizontally + * @Override */ - CustomTime.prototype._onDrag = function (event) { - if (!this.eventParams.dragging) return; - - var deltaX = event.gesture.deltaX, - x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, - time = this.body.util.toTime(x); - - this.setCustomTime(time); + ItemPoint.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start); - // fire a timechange event - this.body.emitter.emit('timechange', { - time: new Date(this.customTime.valueOf()) - }); + this.left = start - this.props.dot.width; - event.stopPropagation(); - event.preventDefault(); + // reposition point + this.dom.point.style.left = this.left + 'px'; }; /** - * Stop moving operating. - * @param {event} event - * @private + * Reposition the item vertically + * @Override */ - 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()) - }); + ItemPoint.prototype.repositionY = function() { + var orientation = this.options.orientation, + point = this.dom.point; - event.stopPropagation(); - event.preventDefault(); + if (orientation == 'top') { + point.style.top = this.top + 'px'; + } + else { + point.style.top = (this.parent.height - this.top - this.height) + 'px'; + } }; - module.exports = CustomTime; + module.exports = ItemPoint; /***/ }, -/* 29 */ +/* 31 */ /***/ function(module, exports, __webpack_require__) { - 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__(30); - var ItemBox = __webpack_require__(34); - var ItemPoint = __webpack_require__(35); - var ItemRange = __webpack_require__(32); - - - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + var Hammer = __webpack_require__(41); + var Item = __webpack_require__(28); /** - * 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 + * @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 */ - function ItemSet(body, options) { - this.body = body; + 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 - this.defaultOptions = { - type: null, // 'box', 'point', 'range' - orientation: 'bottom', // 'top' or 'bottom' - align: 'center', // alignment of box items - stack: true, - groupOrder: null, + // 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); + } + } - selectable: true, - editable: { - updateTime: false, - updateGroup: false, - add: false, - remove: false - }, + Item.call(this, data, conversion, options); + } - onAdd: function (item, callback) { - callback(item); - }, - onUpdate: function (item, callback) { - callback(item); - }, - onMove: function (item, callback) { - callback(item); - }, - onRemove: function (item, callback) { - callback(item); - }, + ItemRange.prototype = new Item (null, null, null); - margin: { - item: { - horizontal: 10, - vertical: 10 - }, - axis: 20 - }, - padding: 5 - }; + ItemRange.prototype.baseClassName = 'item range'; - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); + /** + * 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 + */ + ItemRange.prototype.isVisible = function(range) { + // determine visibility + return (this.data.start < range.end) && (this.data.end > range.start); + }; - // options for getting items from the DataSet with the correct type - this.itemOptions = { - type: {start: 'Date', end: 'Date'} - }; + /** + * Repaint the item + */ + ItemRange.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - this.conversion = { - toScreen: body.util.toScreen, - toTime: body.util.toTime - }; - this.dom = {}; - this.props = {}; - this.hammer = null; + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + // contents box + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - // 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); + // 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; - // 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); + // 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.items = {}; // object with an Item for every data item - this.groups = {}; // Group object for every group - this.groupIds = []; + this.dirty = true; + } - this.selection = []; // list with the ids of all selected nodes - this.stackDirty = true; // if true, all items will be restacked on next redraw + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; + } - this.touchParams = {}; // stores properties while dragging - // create the HTML DOM + // 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._create(); + this.dirty = true; + } - this.setOptions(options); - } + // recalculate size + if (this.dirty) { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; - ItemSet.prototype = new Component(); + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; - // available item types will be registered here - ItemSet.types = { - box: ItemBox, - range: ItemRange, - point: ItemPoint + this.dirty = false; + } + + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); }; /** - * Create the HTML DOM for the ItemSet + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - 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; - - // create foreground panel - var foreground = document.createElement('div'); - foreground.className = 'foreground'; - frame.appendChild(foreground); - this.dom.foreground = foreground; - - // create axis panel - var axis = document.createElement('div'); - axis.className = 'axis'; - this.dom.axis = axis; - - // create labelset - var labelSet = document.createElement('div'); - labelSet.className = 'labelset'; - this.dom.labelSet = labelSet; + ItemRange.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } + }; - // create ungrouped Group - this._updateUngrouped(); + /** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + ItemRange.prototype.hide = function() { + if (this.displayed) { + var box = this.dom.box; - // 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 (box.parentNode) { + box.parentNode.removeChild(box); + } - // 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.top = null; + this.left = null; - // single select (or unselect) when tapping an item - this.hammer.on('tap', this._onSelectItem.bind(this)); + this.displayed = false; + } + }; - // multi select when holding mouse/touch, or on ctrl+click - this.hammer.on('hold', this._onMultiSelectItem.bind(this)); + /** + * 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; - // add item on doubletap - this.hammer.on('doubletap', this._onAddItem.bind(this)); + // 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); - // attach to the DOM - this.show(); - }; + 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); - /** - * 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 ('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); - } - } - } + 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. } - - 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); - } + else { + contentLeft = 0; } - // 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(); + this.left = start; + this.width = boxWidth; } - }; - /** - * Mark the ItemSet dirty so it will refresh everything with next redraw - */ - ItemSet.prototype.markDirty = function() { - this.groupIds = []; - this.stackDirty = true; + this.dom.box.style.left = this.left + 'px'; + this.dom.box.style.width = boxWidth + 'px'; + this.dom.content.style.left = contentLeft + 'px'; }; /** - * Destroy the ItemSet + * Reposition the item vertically + * @Override */ - ItemSet.prototype.destroy = function() { - this.hide(); - this.setItems(null); - this.setGroups(null); - - this.hammer = null; + ItemRange.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box; - this.body = null; - this.conversion = null; + if (orientation == 'top') { + box.style.top = this.top + 'px'; + } + else { + box.style.top = (this.parent.height - this.top - this.height) + 'px'; + } }; /** - * Hide the component from the DOM + * Repaint a drag area on the left side of the range when the range is selected + * @protected */ - ItemSet.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + 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; - // remove the axis with dots - if (this.dom.axis.parentNode) { - this.dom.axis.parentNode.removeChild(this.dom.axis); - } + // TODO: this should be redundant? + Hammer(dragLeft, { + preventDefault: true + }).on('drag', function () { + //console.log('drag left') + }); - // remove the labelset containing all group labels - if (this.dom.labelSet.parentNode) { - this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + 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; } }; /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Repaint a drag area on the right side of the range when the range is selected + * @protected */ - ItemSet.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); - } + 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; - // show axis with dots - if (!this.dom.axis.parentNode) { - this.body.dom.backgroundVertical.appendChild(this.dom.axis); - } + // TODO: this should be redundant? + Hammer(dragRight, { + preventDefault: true + }).on('drag', function () { + //console.log('drag right') + }); - // show labelset containing labels - if (!this.dom.labelSet.parentNode) { - this.body.dom.left.appendChild(this.dom.labelSet); + 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; } }; - /** - * 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; + module.exports = ItemRange; - if (ids) { - if (!Array.isArray(ids)) { - throw new TypeError('Array expected'); - } - // 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(); - } +/***/ }, +/* 32 */ +/***/ function(module, exports, __webpack_require__) { - // 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(); - } - } - } - }; + var Emitter = __webpack_require__(48); + var Hammer = __webpack_require__(41); + var mousetrap = __webpack_require__(51); + 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__(47); + var locales = __webpack_require__(45); - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - ItemSet.prototype.getSelection = function() { - return this.selection.concat([]); - }; + // Load custom shapes into CanvasRenderingContext2D + __webpack_require__(46); /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items + * @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 */ - 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 Network (container, data, options) { + if (!(this instanceof Network)) { + throw new SyntaxError('Constructor must be called with the new operator'); } - return ids; - }; - - /** - * 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; - } - } - }; + this._initializeMixinLoaders(); - /** - * 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; + // create variables and set default values + this.containerElement = container; - // update class name - frame.className = 'itemset' + (editable ? ' editable' : ''); + // 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 - // reorder the groups (if needed) - resized = this._orderGroups() || resized; + this.initializing = true; - // 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; + this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; - // redraw all groups - var restack = this.stackDirty, - firstGroup = this._firstGroup(), - firstMargin = { - item: margin.item, - axis: margin.axis + // 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' + } }, - nonFirstMargin = { - item: margin.item, - axis: margin.item.vertical / 2 + 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' }, - 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; - }; - - /** - * 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]; - - return firstGroup || null; - }; - - /** - * 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 { - // 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(); - } - } - }; - - /** - * Get the element for the labelset - * @return {HTMLElement} labelSet - */ - 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 { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } + 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 + locale: 'en', + locales: locales, + 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); - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + this.hoverObj = {nodes:{},edges:{}}; + this.controlNodesActive = false; - // remove all drawn items - ids = oldItemsData.getIds(); - this._onRemove(ids); - } + // 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(); + }); - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); + // keyboard navigation variables + this.xIncrement = 0; + this.yIncrement = 0; + this.zoomIncrement = 0; - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); + // 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(); - // update the group holding all ungrouped items - this._updateUngrouped(); - } - }; + // apply options + this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); + this._setScale(1); + this.setOptions(options); - /** - * Get the current items - * @returns {vis.DataSet | null} - */ - ItemSet.prototype.getItems = function() { - return this.itemsData; - }; + // other vars + this.freezeSimulation = false;// freeze the simulation + this.cachedFunctions = {}; - /** - * Set groups - * @param {vis.DataSet} groups - */ - ItemSet.prototype.setGroups = function(groups) { - var me = this, - ids; + // 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 - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + // 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 - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } + // datasets or dataviews + this.nodesData = null; // A DataSet or DataView + this.edgesData = null; // A DataSet or DataView - // 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'); - } + // 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(); + } + }; - if (this.groupsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.on(event, callback, id); - }); + // properties for the animation + this.moving = true; + this.timer = undefined; // Scheduling function. Is definded in this.start(); - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); + // 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); + } } - // update the group holding all ungrouped items - this._updateUngrouped(); + // if clustering is disabled, the simulation will have started in the setData function + if (this.constants.clustering.enabled) { + this.startWithClustering(); + } + } - // update the order of all items in each group - this._order(); + // Extend Network with an Emitter mixin + Emitter(Network.prototype); - this.body.emitter.emit('change'); + /** + * 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' ); + + // 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; }; + /** - * Get the current groups - * @returns {vis.DataSet | null} groups + * Find the center position of the network + * @private */ - ItemSet.prototype.getGroups = function() { - return this.groupsData; + 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}; }; + /** - * Remove an item by its id - * @param {String | Number} id + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} + * @private */ - 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); - } - }); - } + Network.prototype._findCenter = function(range) { + return {x: (0.5 * (range.maxX + range.minX)), + y: (0.5 * (range.maxY + range.minY))}; }; + /** - * Handle updated items - * @param {Number[]} ids - * @protected + * center the network + * + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; */ - ItemSet.prototype._onUpdate = function(ids) { - var me = this; + Network.prototype._centerNetwork = function(range) { + var center = this._findCenter(range); - 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'); + center.x *= this.scale; + center.y *= this.scale; + center.x -= 0.5 * this.frame.canvas.clientWidth; + center.y -= 0.5 * this.frame.canvas.clientHeight; - var constructor = ItemSet.types[type]; + this._setTranslation(-center.x,-center.y); // set at 0,0 + }; - if (item) { - // update item - if (!constructor || !(item instanceof constructor)) { - // item type has changed, delete the item and recreate it - me._removeItem(item); - item = null; + + /** + * 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; + } + + var range = this._getRange(); + var zoomLevel; + + 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 { - me._updateItem(item, itemData); + zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. } } - - 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 { + 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 { - throw new TypeError('Unknown item type "' + type + '"'); + zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. } } - }); - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.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; - /** - * Handle added items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + var xZoomLevel = this.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.frame.canvas.clientHeight / yDistance; - /** - * 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); - } - }); + zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; + } - if (count) { - // update order - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + if (zoomLevel > 1.0) { + zoomLevel = 1.0; } - }; - /** - * 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(); - }); + + this._setScale(zoomLevel); + this._centerNetwork(range); + if (disableStart == false) { + this.moving = true; + this.start(); + } }; + /** - * Handle updated groups - * @param {Number[]} ids + * Update the this.nodeIndices with the most recent node index list * @private */ - ItemSet.prototype._onUpdateGroups = function(ids) { - this._onAddGroups(ids); + Network.prototype._updateNodeIndexList = function() { + this._clearNodeIndexList(); + for (var idx in this.nodes) { + if (this.nodes.hasOwnProperty(idx)) { + this.nodeIndices.push(idx); + } + } }; + /** - * Handle changed groups - * @param {Number[]} ids - * @private - */ - 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.'); - } + * 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; + } - var groupOptions = Object.create(me.options); - util.extend(groupOptions, { - height: null - }); + 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.'); + } - group = new Group(id, groupData, me); - me.groups[id] = group; + // set options + this.setOptions(data && data.options); - // 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); - } - } - } + // 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); + } - group.order(); - group.show(); + 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 { - // update group - group.setData(groupData); + this.start(); } - }); - - this.body.emitter.emit('change'); + } }; /** - * Handle removed groups - * @param {Number[]} ids - * @private + * Set options + * @param {Object} options + * @param {Boolean} [initializeView] | set zoom and translation to default. */ - ItemSet.prototype._onRemoveGroups = function(ids) { - var groups = this.groups; - ids.forEach(function (id) { - var group = groups[id]; + Network.prototype.setOptions = function (options) { + if (options) { + var prop; - if (group) { - group.hide(); - delete groups[id]; + 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'); + + 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]; + } + } + } } - }); - this.markDirty(); + 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;} - this.body.emitter.emit('change'); - }; + 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'); - /** - * 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(); - }); + if (options.dataManipulation) { + this.editMode = this.constants.dataManipulation.initiallyVisible; + } - // show the groups again, attach them to the DOM in correct order - groupIds.forEach(function (groupId) { - groups[groupId].show(); - }); - this.groupIds = groupIds; + // 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;} + } + } + + 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;} + } + } } - return changed; - } - else { - return false; + 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); + } + } + } + + 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); + } + } + + if (options.labels) { + throw new Error('Option "labels" is deprecated. Use options "locale" and "locales" instead.'); + } } - }; - /** - * Add a new item - * @param {Item} item - * @private - */ - ItemSet.prototype._addItem = function(item) { - this.items[item.id] = item; + // (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(); + + + // bind keys. If disabled, this will not do anything; + this._createKeyBinds(); + this.setSize(this.constants.width, this.constants.height); + this.moving = true; + this.start(); - // add to group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); }; /** - * Update an existing item - * @param {Item} item - * @param {Object} itemData + * 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 */ - ItemSet.prototype._updateItem = function(item, itemData) { - var oldGroupId = item.data.group; - - item.data = itemData; - if (item.displayed) { - item.redraw(); + Network.prototype._create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); } - // update group - if (oldGroupId != item.data.group) { - var oldGroup = this.groups[oldGroupId]; - if (oldGroup) oldGroup.remove(item); + this.frame = document.createElement('div'); + this.frame.className = 'network-frame'; + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); + // 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); + }; + /** - * 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 + * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin * @private */ - ItemSet.prototype._removeItem = function(item) { - // remove from DOM - item.hide(); + Network.prototype._createKeyBinds = function() { + var me = this; + this.mousetrap = mousetrap; - // remove from items - delete this.items[item.id]; + this.mousetrap.reset(); - // remove from selection - var index = this.selection.indexOf(item.id); - if (index != -1) this.selection.splice(index, 1); + 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"); + } - // remove from group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.remove(item); + if (this.constants.dataManipulation.enabled == true) { + this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); + this.mousetrap.bind("del",this._deleteSelected.bind(me)); + } }; /** - * Create an array containing all items being a range (having an end date) - * @param array - * @returns {Array} + * Get the pointer location from a touch location + * @param {{pageX: Number, pageY: Number}} touch + * @return {{x: Number, y: Number}} pointer * @private */ - 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; + Network.prototype._getPointer = function (touch) { + return { + x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), + y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) + }; }; /** - * 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 + * On start of a touch gesture, store the pointer + * @param event * @private */ - ItemSet.prototype._onTouch = function (event) { - // store the touched item, used in _onDragStart - this.touchParams.item = ItemSet.itemFromTarget(event); + 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); }; /** - * Start dragging the selected events - * @param {Event} event + * handle drag start event * @private */ - ItemSet.prototype._onDragStart = function (event) { - if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { - return; - } - - var item = this.touchParams.item || null, - me = this, - props; + Network.prototype._onDragStart = function () { + this._handleDragStart(); + }; - if (item && item.selected) { - var dragLeftItem = event.target.dragLeftItem; - var dragRightItem = event.target.dragRightItem; - if (dragLeftItem) { - props = { - item: dragLeftItem - }; + /** + * 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 - 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; - } + drag.dragging = true; + drag.selection = []; + drag.translation = this._getTranslation(); + drag.nodeId = null; - this.touchParams.itemProps = [props]; + if (node != null) { + drag.nodeId = node.id; + // select the clicked node if not yet selected + if (!node.isSelected()) { + this._selectObject(node,false); } - 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; - } + // 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, - this.touchParams.itemProps = [props]; - } - else { - this.touchParams.itemProps = this.getSelection().map(function (id) { - var item = me.items[id]; - var props = { - item: item + // 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 (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; - } + object.xFixed = true; + object.yFixed = true; - return props; - }); + drag.selection.push(s); + } } - - event.stopPropagation(); } }; + /** - * Drag selected items - * @param {Event} event + * handle drag event * @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; - } + Network.prototype._onDrag = function (event) { + this._handleOnDrag(event) + }; - if ('end' in props) { - var end = new Date(props.end + offset); - props.item.data.end = snap ? snap(end) : end; - } - - if ('group' in props) { - // drag from one group to another - var group = ItemSet.groupFromTarget(event); - _moveToGroup(props.item, group); - } - }); - - // 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 + * This function is called by _onDrag. + * It is separated out because we can then overload it for the datamanipulation system. + * * @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(); - - item.data.group = group.groupId; + Network.prototype._handleOnDrag = function(event) { + if (this.drag.pinched) { + return; } - } - /** - * End of dragging selected items - * @param {Event} event - * @private - */ - 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 pointer = this._getPointer(event.gesture.center); - 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); + 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; - 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; - } + // update position of all selected nodes + selection.forEach(function (s) { + var node = s.node; - // 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); - } + if (!s.xFixed) { + node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); + } - me.stackDirty = true; // force re-stacking of all items next redraw - me.body.emitter.emit('change'); - } - }); + if (!s.yFixed) { + node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); } }); - // apply the changes to the data (if there are changes) - if (changes.length) { - dataset.update(changes); + + // 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; - event.stopPropagation(); + this._setTranslation( + this.drag.translation.x + diffX, + this.drag.translation.y + diffY + ); + this._redraw(); + // this.moving = true; + // this.start(); + } } }; /** - * Handle selecting/deselecting an item when tapping it - * @param {Event} event + * handle drag start event * @private */ - ItemSet.prototype._onSelectItem = function (event) { - if (!this.options.selectable) return; - - 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() + 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(); } - event.stopPropagation(); }; /** - * Handle creation and updates of an item on double tap - * @param event + * handle tap/click event: select/unselect a node * @private */ - ItemSet.prototype._onAddItem = function (event) { - if (!this.options.selectable) return; - if (!this.options.editable.add) return; - - var me = this, - snap = this.body.util.snap || null, - item = ItemSet.itemFromTarget(event); + Network.prototype._onTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleTap(pointer); - 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 { - // 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; - } + /** + * handle doubletap event + * @private + */ + Network.prototype._onDoubleTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleDoubleTap(pointer); + }; - newItem[this.itemsData.fieldId] = util.randomUUID(); - var group = ItemSet.groupFromTarget(event); - if (group) { - newItem.group = group.groupId; - } + /** + * 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); + }; - // 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? - } - }); - } + /** + * handle the release of the screen + * + * @private + */ + Network.prototype._onRelease = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleOnRelease(pointer); }; /** - * Handle selecting/deselecting multiple items when holding an item - * @param {Event} event + * Handle pinch event + * @param event * @private */ - ItemSet.prototype._onMultiSelectItem = function (event) { - if (!this.options.selectable) return; + Network.prototype._onPinch = function (event) { + var pointer = this._getPointer(event.gesture.center); - var selection, - item = ItemSet.itemFromTarget(event); + this.drag.pinched = true; + if (!('scale' in this.pinch)) { + this.pinch.scale = 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); - - this.body.emitter.emit('select', { - items: this.getSelection() - }); - - event.stopPropagation(); - } + // TODO: enabled moving while pinching? + var scale = this.pinch.scale * event.gesture.scale; + this._zoom(scale, pointer) }; /** - * 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 + * 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 */ - ItemSet.itemFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-item')) { - return target['timeline-item']; + Network.prototype._zoom = function(scale, pointer) { + if (this.constants.zoomable == true) { + var scaleOld = this._getScale(); + if (scale < 0.00001) { + scale = 0.00001; } - target = target.parentNode; - } - - return null; - }; - - /** - * 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']; + if (scale > 10) { + scale = 10; } - 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 - */ - ItemSet.itemSetFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-itemset')) { - return target['timeline-itemset']; + var preScaleDragPointer = null; + if (this.drag !== undefined) { + if (this.drag.dragging == true) { + preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); + } } - target = target.parentNode; - } - - return null; - }; - - module.exports = ItemSet; + // + this.frame.canvas.clientHeight / 2 + var translation = this._getTranslation(); + var scaleFrac = scale / scaleOld; + var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; + var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; -/***/ }, -/* 30 */ -/***/ function(module, exports, __webpack_require__) { + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; - var util = __webpack_require__(1); - var stack = __webpack_require__(31); - var ItemRange = __webpack_require__(32); + this._setScale(scale); + this._setTranslation(tx, ty); + this.updateClustersDefault(); - /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet - */ - function Group (groupId, data, itemSet) { - this.groupId = groupId; + if (preScaleDragPointer != null) { + var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); + this.drag.pointer.x = postScaleDragPointer.x; + this.drag.pointer.y = postScaleDragPointer.y; + } - this.itemSet = itemSet; + this._redraw(); - this.dom = {}; - this.props = { - label: { - width: 0, - height: 0 + if (scaleOld < scale) { + this.emit("zoom", {direction:"+"}); + } + else { + this.emit("zoom", {direction:"-"}); } - }; - 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(); + return scale; + } + }; - this.setData(data); - } /** - * Create DOM elements for the group + * 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 */ - Group.prototype._create = function() { - var label = document.createElement('div'); - label.className = 'vlabel'; - this.dom.label = label; + 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; + } - var inner = document.createElement('div'); - inner.className = 'inner'; - label.appendChild(inner); - this.dom.inner = inner; + // 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 foreground = document.createElement('div'); - foreground.className = 'group'; - foreground['timeline-group'] = this; - this.dom.foreground = foreground; + // calculate the new scale + var scale = this._getScale(); + var zoom = delta / 10; + if (delta < 0) { + zoom = zoom / (1 - zoom); + } + scale *= (1 + zoom); - this.dom.background = document.createElement('div'); - this.dom.background.className = 'group'; + // calculate the pointer location + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); - this.dom.axis = document.createElement('div'); - this.dom.axis.className = 'group'; + // apply the new scale + this._zoom(scale, pointer); + } - // 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); + // Prevent default actions caused by mouse wheel. + event.preventDefault(); }; + /** - * Set the group data for this group - * @param {Object} data Group data, can contain properties content and className + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event + * @private */ - 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 - } + Network.prototype._onMouseMoveTitle = function (event) { + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); - // update title - this.dom.label.title = data && data.title || ''; + // check if the previously selected node is still selected + if (this.popupObj) { + this._checkHidePopup(pointer); + } - if (!this.dom.inner.firstChild) { - util.addClassName(this.dom.inner, 'hidden'); + // 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 } - else { - util.removeClassName(this.dom.inner, 'hidden'); + if (!this.drag.dragging) { + this.popupTimer = setTimeout(checkShow, this.constants.tooltip.delay); } - // 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); - } - }; - /** - * Get the width of the group label - * @return {number} width - */ - Group.prototype.getLabelWidth = function() { - return this.props.label.width; - }; + /** + * 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(); + } + }; /** - * 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 + * 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 */ - 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; + 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) + }; - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); + var id; + var lastPopupNode = this.popupObj; - restack = true; + 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; + } + } + } } - // 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); + 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; + } + } + } } - // 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; - }); + 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(); } - height = max + margin.item.vertical / 2; } else { - height = margin.axis + margin.item.vertical; + if (this.popup) { + this.popup.hide(); + } } - 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(); + /** + * 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(); + } } - - return resized; }; + /** - * Show this group: attach to the DOM + * 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%') */ - Group.prototype.show = function() { - if (!this.dom.label.parentNode) { - this.itemSet.dom.labelSet.appendChild(this.dom.label); - } + Network.prototype.setSize = function(width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - if (!this.dom.foreground.parentNode) { - this.itemSet.dom.foreground.appendChild(this.dom.foreground); - } + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; - if (!this.dom.background.parentNode) { - this.itemSet.dom.background.appendChild(this.dom.background); - } + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - if (!this.dom.axis.parentNode) { - this.itemSet.dom.axis.appendChild(this.dom.axis); + 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"; + } } + + this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); }; /** - * Hide this group: remove from the DOM + * Set a data set with nodes for the network + * @param {Array | DataSet | DataView} nodes The data containing the nodes. + * @private */ - Group.prototype.hide = function() { - var label = this.dom.label; - if (label.parentNode) { - label.parentNode.removeChild(label); - } + Network.prototype._setNodes = function(nodes) { + var oldNodesData = this.nodesData; - var foreground = this.dom.foreground; - if (foreground.parentNode) { - foreground.parentNode.removeChild(foreground); + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.nodesData = nodes; } - - var background = this.dom.background; - if (background.parentNode) { - background.parentNode.removeChild(background); + else if (nodes instanceof Array) { + this.nodesData = new DataSet(); + this.nodesData.add(nodes); } - - var axis = this.dom.axis; - if (axis.parentNode) { - axis.parentNode.removeChild(axis); + else if (!nodes) { + this.nodesData = new DataSet(); } - }; - - /** - * Add an item to the group - * @param {Item} item - */ - 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); + else { + throw new TypeError('Array or DataSet expected'); } - }; - /** - * Remove an item from the group - * @param {Item} item - */ - Group.prototype.remove = function(item) { - delete this.items[item.id]; - item.setParent(this.itemSet); + if (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); + } - // remove from visible items - var index = this.visibleItems.indexOf(item); - if (index != -1) this.visibleItems.splice(index, 1); + // remove drawn nodes + this.nodes = {}; - // TODO: also remove from ordered items? + if (this.nodesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.nodesListeners, function (callback, event) { + me.nodesData.on(event, callback); + }); + + // draw all new nodes + var ids = this.nodesData.getIds(); + this._addNodes(ids); + } + this._updateSelection(); }; /** - * Remove an item from the corresponding DataSet - * @param {Item} item + * Add nodes + * @param {Number[] | String[]} ids + * @private */ - Group.prototype.removeFromDataSet = function(item) { - this.itemSet.removeItem(item.id); + 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(); }; /** - * Reorder the items + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - 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); + 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); }; /** - * Create an array containing all items being a range (having an end date) - * @param {Item[]} array - * @returns {ItemRange[]} + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids * @private */ - Group.prototype._constructByEndArray = function(array) { - var endArray = []; - - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); - } + 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]; } - return endArray; + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateSelection(); + this._updateValueRange(nodes); }; /** - * 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. + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private * @private */ - Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { - var initialPosByStart, - newVisibleItems = [], - i; + Network.prototype._setEdges = function(edges) { + var oldEdgesData = this.edgesData; - // 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); - } + if (edges instanceof DataSet || edges instanceof DataView) { + this.edgesData = edges; } - - // 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 if (edges instanceof Array) { + this.edgesData = new DataSet(); + this.edgesData.add(edges); + } + else if (!edges) { + this.edgesData = new DataSet(); } else { - initialPosByStart = orderedItems.byStart.indexOf(newVisibleItems[0]); + throw new TypeError('Array or DataSet expected'); } - // 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 (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); + }); } - // 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;} - } - } + // remove drawn edges + this.edges = {}; - return newVisibleItems; - }; + 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); + } + this._reconnectEdges(); + }; /** - * 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} + * Add edges + * @param {Number[] | String[]} ids * @private */ - 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); + Network.prototype._addEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; + + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); } - return false; + + var data = edgesData.get(id, {"showInternalIds" : true}); + edges[id] = new Edge(data, this, this.constants); } - else { - if (item.displayed) item.hide(); - return true; + + this.moving = true; + this._updateValueRange(edges); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } + this._updateCalculationNodes(); }; /** - * 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 + * Update existing edges, or create them when not yet existing + * @param {Number[] | String[]} ids * @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); - } - else { - if (item.displayed) item.hide(); - } - }; - - module.exports = Group; - - -/***/ }, -/* 31 */ -/***/ function(module, exports, __webpack_require__) { + 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]; - // Utility functions for ordering and stacking of items - var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + 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; + } + } - /** - * 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; - }); + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.moving = true; + this._updateValueRange(edges); }; /** - * Order items by their end date. If they have no end date, their start date - * is used. - * @param {Item[]} items + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids + * @private */ - 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; + 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]; + } + } - return aTime - bTime; - }); + this.moving = true; + this._updateValueRange(edges); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateCalculationNodes(); }; /** - * 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 + * Reconnect all edges + * @private */ - 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; + Network.prototype._reconnectEdges = function() { + var id, + nodes = this.nodes, + edges = this.edges; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; } } - // 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); + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); } } }; /** - * 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. + * 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 */ - exports.nostack = function(items, margin) { - var i, iMax; + Network.prototype._updateValueRange = function(obj) { + var id; - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = margin.axis; + // 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); + } + } + } + + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax); + } + } } }; /** - * 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 + * Redraw the network with the current data + * chart will be resized too. */ - 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); + Network.prototype.redraw = function() { + this.setSize(this.constants.width, this.constants.height); + this._redraw(); }; - -/***/ }, -/* 32 */ -/***/ function(module, exports, __webpack_require__) { - - var Hammer = __webpack_require__(18); - var Item = __webpack_require__(33); - /** - * @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 + * Redraw the network with the current data + * @private */ - function ItemRange (data, conversion, options) { - this.props = { - content: { - width: 0 - } + 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) }; - 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._doInAllSectors("_drawAllSectorNodes",ctx); + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { + this._doInAllSectors("_drawEdges",ctx); } - Item.call(this, data, conversion, options); - } + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { + this._doInAllSectors("_drawNodes",ctx,false); + } - ItemRange.prototype = new Item (null, null, null); + if (this.controlNodesActive == true) { + this._doInAllSectors("_drawControlNodes",ctx); + } - ItemRange.prototype.baseClassName = 'item range'; + // this._doInSupportSector("_drawNodes",ctx,true); + // this._drawTree(ctx,"#F00F0F"); - /** - * 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 - */ - ItemRange.prototype.isVisible = function(range) { - // determine visibility - return (this.data.start < range.end) && (this.data.end > range.start); + // restore original scaling and translation + ctx.restore(); }; /** - * Repaint the item + * Set the translation of the network + * @param {Number} offsetX Horizontal offset + * @param {Number} offsetY Vertical offset + * @private */ - ItemRange.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; - - // background box - dom.box = document.createElement('div'); - // className is updated in redraw() - - // 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 { - throw new Error('Property "content" missing in item ' + this.data.id); - } - - this.dirty = true; - } - - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; + Network.prototype._setTranslation = function(offsetX, offsetY) { + if (this.translation === undefined) { + this.translation = { + x: 0, + y: 0 + }; } - // 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.dirty = true; + if (offsetX !== undefined) { + this.translation.x = offsetX; } - - // recalculate size - if (this.dirty) { - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; - - this.props.content.width = this.dom.content.offsetWidth; - this.height = this.dom.box.offsetHeight; - - this.dirty = false; + if (offsetY !== undefined) { + this.translation.y = offsetY; } - this._repaintDeleteButton(dom.box); - this._repaintDragLeft(); - this._repaintDragRight(); + this.emit('viewChanged'); }; /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Get the translation of the network + * @return {Object} translation An object with parameters x and y, both a number + * @private */ - ItemRange.prototype.show = function() { - if (!this.displayed) { - this.redraw(); - } + Network.prototype._getTranslation = function() { + return { + x: this.translation.x, + y: this.translation.y + }; }; /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed + * Scale the network + * @param {Number} scale Scaling factor 1.0 is unscaled + * @private */ - 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; - } + Network.prototype._setScale = function(scale) { + this.scale = scale; }; /** - * Reposition the item horizontally - * @Override + * Get the current scale of the network + * @return {Number} scale Scaling factor 1.0 is unscaled + * @private */ - 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; - - // 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; - } - 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; - } - - this.dom.box.style.left = this.left + 'px'; - this.dom.box.style.width = boxWidth + 'px'; - this.dom.content.style.left = contentLeft + 'px'; + Network.prototype._getScale = function() { + return this.scale; }; /** - * Reposition the item vertically - * @Override + * 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 */ - ItemRange.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box; - - if (orientation == 'top') { - box.style.top = this.top + 'px'; - } - else { - box.style.top = (this.parent.height - this.top - this.height) + 'px'; - } + Network.prototype._XconvertDOMtoCanvas = function(x) { + return (x - this.translation.x) / this.scale; }; /** - * Repaint a drag area on the left side of the range when the range is selected - * @protected + * 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 */ - 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') - }); - - 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; - } + Network.prototype._XconvertCanvasToDOM = function(x) { + return x * this.scale + this.translation.x; }; /** - * Repaint a drag area on the right side of the range when the range is selected - * @protected + * 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 */ - 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; + Network.prototype._YconvertDOMtoCanvas = function(y) { + return (y - this.translation.y) / this.scale; + }; - // 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; - } - 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; - } + /** + * 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 ; }; - module.exports = ItemRange; - - -/***/ }, -/* 33 */ -/***/ function(module, exports, __webpack_require__) { - - var Hammer = __webpack_require__(18); /** - * @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 + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor */ - 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; - - this.top = null; - this.left = null; - this.width = null; - this.height = null; + Network.prototype.canvasToDOM = function(pos) { + return {x:this._XconvertCanvasToDOM(pos.x),y:this._YconvertCanvasToDOM(pos.y)}; } /** - * Select current item + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor */ - Item.prototype.select = function() { - this.selected = true; - if (this.displayed) this.redraw(); - }; + Network.prototype.DOMtoCanvas = function(pos) { + return {x:this._XconvertDOMtoCanvas(pos.x),y:this._YconvertDOMtoCanvas(pos.y)}; + } /** - * Unselect current item + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private */ - Item.prototype.unselect = function() { - this.selected = false; - if (this.displayed) this.redraw(); - }; + Network.prototype._drawNodes = function(ctx,alwaysShow) { + if (alwaysShow === undefined) { + alwaysShow = false; + } - /** - * 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(); + // first draw the unselected nodes + var nodes = this.nodes; + var selected = []; + + 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); + } + } } } - else { - this.parent = parent; + + // 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); + } } }; /** - * 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 + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private */ - Item.prototype.isVisible = function(range) { - // Should be implemented by Item implementations - return false; + 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); + } + } + } }; /** - * Show the Item in the DOM (when not already visible) - * @return {Boolean} changed + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private */ - Item.prototype.show = function() { - return false; + Network.prototype._drawControlNodes = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + edges[id]._drawControlNodes(ctx); + } + } }; /** - * Hide the Item from the DOM (when visible) - * @return {Boolean} changed + * Find a stable position for all nodes + * @private */ - Item.prototype.hide = function() { - return false; - }; + Network.prototype._stabilize = function() { + if (this.constants.freezeForStabilization == true) { + this._freezeDefinedNodes(); + } - /** - * Repaint the item - */ - Item.prototype.redraw = function() { - // should be implemented by the item + // 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}); }; /** - * Reposition the Item horizontally + * 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 */ - Item.prototype.repositionX = function() { - // should be implemented by the item + 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; + } + } + } }; /** - * Reposition the Item vertically + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @private */ - Item.prototype.repositionY = function() { - // should be implemented by the item + 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; + } + } + } }; + /** - * Repaint a delete button on the top right of the item when the item is selected - * @param {HTMLElement} anchor - * @protected + * 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 */ - Item.prototype._repaintDeleteButton = function (anchor) { - if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { - // create and show button - var me = this; - - var deleteButton = document.createElement('div'); - deleteButton.className = 'delete'; - deleteButton.title = 'Delete this item'; - - 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); + Network.prototype._isMoving = function(vmin) { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { + return true; } - this.dom.deleteButton = null; } + return false; }; - module.exports = Item; - - -/***/ }, -/* 34 */ -/***/ function(module, exports, __webpack_require__) { - - var Item = __webpack_require__(33); /** - * @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 + * /** + * Perform one discrete step for all nodes + * + * @private */ - function ItemBox (data, conversion, options) { - this.props = { - dot: { - width: 0, - height: 0 - }, - line: { - width: 0, - height: 0 - } - }; + Network.prototype._discreteStepNodes = function(checkMovement) { + var interval = this.physicsDiscreteStepsize; + var nodes = this.nodes; + var nodeId; + var nodesPresent = false; - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); + 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; + } } } - Item.call(this, data, conversion, options); - } + 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; - 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 + * A single simulation step (or "tick") in the physics simulation + * + * @private */ - 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); + 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()) + } + } }; + /** - * Repaint the item + * 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 */ - 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'; + 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(); - // attach this item as attribute - dom.box['timeline-item'] = this; - } + // this schedules a new animation step + this.start(); - // 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); + // 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++; } - this.displayed = true; + // start the rendering process + var renderTime = Date.now(); + this._redraw(); + this.renderTime = Date.now() - renderTime; - // 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.dirty = true; - } + if (typeof window !== 'undefined') { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || + window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; - } + /** + * 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(); - // 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; + 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.dirty = true; + 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 + } + } } - - // 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; + else { + this._redraw(); } - - this._repaintDeleteButton(dom.box); }; + /** - * Show the item in the DOM (when not already displayed). The items DOM will - * be created when needed. + * Move the network according to the keyboard presses. + * + * @private */ - ItemBox.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + 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); } }; + /** - * Hide the item from the DOM (when visible) + * Freeze the _animationStep */ - 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; + Network.prototype.toggleFreeze = function() { + if (this.freezeSimulation == false) { + this.freezeSimulation = true; + } + else { + this.freezeSimulation = false; + this.start(); } }; + /** - * Reposition the item horizontally - * @Override + * This function cleans the support nodes if they are not needed and adds them when they are. + * + * @param {boolean} [disableStart] + * @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; - - // calculate left position of the box - if (align == 'right') { - this.left = start - this.width; + Network.prototype._configureSmoothCurves = function(disableStart) { + if (disableStart === undefined) { + disableStart = true; } - else if (align == 'left') { - this.left = start; + 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 { - // default or 'center' - this.left = start - this.width / 2; + // delete the support nodes + this.sectors['support']['nodes'] = {}; + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.edges[edgeId].via = null; + } + } } - // reposition box - box.style.left = this.left + 'px'; - - // reposition line - line.style.left = (start - this.props.line.width / 2) + 'px'; - // reposition dot - dot.style.left = (start - this.props.dot.width / 2) + 'px'; + this._updateCalculationNodes(); + if (!disableStart) { + this.moving = true; + this.start(); + } }; + /** - * Reposition the item vertically - * @Override + * 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 */ - 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'; + 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(); + } + } + } } - - dot.style.top = (-this.props.dot.height / 2) + 'px'; }; - module.exports = ItemBox; - - -/***/ }, -/* 35 */ -/***/ function(module, exports, __webpack_require__) { - - var Item = __webpack_require__(33); - /** - * @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 + * load the functions that load the mixins into the prototype. + * + * @private */ - function ItemPoint (data, conversion, options) { - this.props = { - dot: { - top: 0, - width: 0, - height: 0 - }, - content: { - height: 0, - marginLeft: 0 - } - }; - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); + Network.prototype._initializeMixinLoaders = function () { + for (var mixin in MixinLoader) { + if (MixinLoader.hasOwnProperty(mixin)) { + Network.prototype[mixin] = MixinLoader[mixin]; } } - - Item.call(this, data, conversion, options); - } - - ItemPoint.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 + * Load the XY positions of the nodes into the dataset. */ - 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); + 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); }; + /** - * Repaint the item + * Center a node in view. + * + * @param {Number} nodeId + * @param {Number} [zoomLevel] */ - ItemPoint.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; - - // background box - dom.point = document.createElement('div'); - // className is updated in redraw() + 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}; - // contents box, right from the dot - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.point.appendChild(dom.content); + var requiredScale = zoomLevel; + this._setScale(requiredScale); - // dot at start - dom.dot = document.createElement('div'); - dom.point.appendChild(dom.dot); + var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); + var translation = this._getTranslation(); - // attach this item as attribute - dom.point['timeline-item'] = this; - } + var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, + y:canvasCenter.y - nodePosition.y}; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); + this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, + translation.y + requiredScale * distanceFromCenter.y); + this.redraw(); } - 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); + else { + console.log("This nodeId cannot be found.") } - 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); - } + module.exports = Network; - this.dirty = true; - } - // update title - if (this.data.title != this.title) { - dom.point.title = this.data.title; - this.title = this.data.title; - } +/***/ }, +/* 33 */ +/***/ function(module, exports, __webpack_require__) { - // 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; + var util = __webpack_require__(1); + var Node = __webpack_require__(36); - this.dirty = true; + /** + * @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']; - // 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; - // resize contents - dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; - //dom.content.style.marginRight = ... + 'px'; // TODO: margin right + this.network = network; - dom.dot.style.top = ((this.height - this.props.dot.height) / 2) + 'px'; - dom.dot.style.left = (this.props.dot.width / 2) + 'px'; + // 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; - this.dirty = false; - } + this.from = null; // a node + this.to = null; // a node + this.via = null; // a temp node - this._repaintDeleteButton(dom.point); - }; + // 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 = []; + + this.connected = false; + + this.widthFixed = false; + this.lengthFixed = false; + + this.setProperties(properties); + + this.controlNodesEnabled = false; + this.controlNodes = {from:null, to:null, positions:{}}; + this.connectedNode = null; + } /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Set or overwrite properties for the edge + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties */ - ItemPoint.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + Edge.prototype.setProperties = function(properties) { + if (!properties) { + return; } - }; - /** - * Hide the item from the DOM (when visible) - */ - ItemPoint.prototype.hide = function() { - if (this.displayed) { - if (this.dom.point.parentNode) { - this.dom.point.parentNode.removeChild(this.dom.point); + var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', + 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' + ]; + util.selectiveDeepExtend(fields, this.options, properties); + + if (properties.from !== undefined) {this.fromId = properties.from;} + if (properties.to !== undefined) {this.toId = properties.to;} + + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label;} + + 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;} + + // 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;} } + } - this.top = null; - this.left = null; + // A node is connected when it has a from and to node. + this.connect(); - this.displayed = false; + this.widthFixed = this.widthFixed || (properties.width !== undefined); + this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + + this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + + // 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; } }; /** - * Reposition the item horizontally - * @Override + * Connect an edge to its nodes */ - ItemPoint.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start); + Edge.prototype.connect = function () { + this.disconnect(); - this.left = start - this.props.dot.width; + this.from = this.network.nodes[this.fromId] || null; + this.to = this.network.nodes[this.toId] || null; + this.connected = (this.from && this.to); - // reposition point - this.dom.point.style.left = this.left + 'px'; + 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); + } + } }; /** - * Reposition the item vertically - * @Override + * Disconnect an edge from its nodes */ - ItemPoint.prototype.repositionY = function() { - var orientation = this.options.orientation, - point = this.dom.point; - - if (orientation == 'top') { - point.style.top = this.top + 'px'; + Edge.prototype.disconnect = function () { + if (this.from) { + this.from.detachEdge(this); + this.from = null; } - else { - point.style.top = (this.parent.height - this.top - this.height) + 'px'; + if (this.to) { + this.to.detachEdge(this); + this.to = null; } - }; - module.exports = ItemPoint; + this.connected = 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; + }; -/***/ }, -/* 36 */ -/***/ 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__(28); - var LineGraph = __webpack_require__(37); + /** + * Retrieve the value of the edge. Can be undefined + * @return {Number} value + */ + Edge.prototype.getValue = function() { + return this.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 + * Adjust the value range of the edge. The edge will adjust it's width + * based on its value. + * @param {Number} min + * @param {Number} max */ - 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]; - } + 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; } + }; - var me = this; - this.defaultOptions = { - start: null, - end: null, - - autoResize: true, + /** + * 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"; + }; - 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) - } - }; - - // 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); - } + /** + * 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; - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); - } + var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); - // create itemset - if (items) { - this.setItems(items); + return (dist < distMax); } else { - this.redraw(); + return false } - } - - /** - * 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); + }; - // enable/disable autoResize - this._initAutoResize(); + 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 + }; } - - // 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.'); + 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 + }; } - // redraw everything - this.redraw(); - }; + if (this.selected == true) {return colorObj.highlight;} + else if (this.hover == true) {return colorObj.hover;} + else {return colorObj.color;} + } /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * 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 */ - Graph2d.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); + Edge.prototype._drawLine = function(ctx) { + // set style + ctx.strokeStyle = this._getColor(); + ctx.lineWidth = this._getLineWidth(); - // 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' + if (this.from != this.to) { + // draw line + var via = this._line(ctx); + + // 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); + } } - - // set items - this.itemsData = newDataSet; - this.linegraph && this.linegraph.setItems(newDataSet); - - 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); + 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); } }; /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Get the line width of the edge. Depends on width and whether one of the + * connected nodes is selected. + * @return {Number} width + * @private */ - 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; + Edge.prototype._getLineWidth = function() { + if (this.selected == true) { + return Math.min(this.widthSelected, this.options.widthMax)*this.networkScaleInv; } else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + if (this.hover == true) { + return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; + } + else { + return this.options.width*this.networkScaleInv; + } } - - this.groupsData = newDataSet; - this.linegraph.setGroups(newDataSet); }; - /** - * 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); + Edge.prototype._getViaCoordinates = function () { + var xVia = null; + var yVia = null; + var factor = this.options.smoothCurves.roundness; + var type = this.options.smoothCurves.type; + + 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; + } + } } - else { - return "cannot find group:" + groupId; + 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; + } } - } - - /** - * 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; + 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 { - return false; + 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; + } + } + } + } + + return {x:xVia, y:yVia}; + } /** - * 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 + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private */ - Graph2d.prototype.getItemRange = function() { - var min = null; - var max = null; - - // 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; - } + 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; + } + } + else { + ctx.lineTo(this.to.x, this.to.y); + ctx.stroke(); + return null; } - - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; }; - - - module.exports = Graph2d; - - -/***/ }, -/* 37 */ -/***/ function(module, exports, __webpack_require__) { - - 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__(38); - var GraphGroup = __webpack_require__(40); - var Legend = __webpack_require__(41); - - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items - /** - * 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; - - 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 - } - } - }; - - // 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 = {}; - - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet - - // 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.selection = []; // list with the ids of all selected nodes - this.lastStart = this.body.range.start; - this.touchParams = {}; // stores properties while dragging - - this.svgElements = {}; - this.setOptions(options); - this.groupsUsingDefaultStyles = [0]; - - 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); - }); - - // create the HTML DOM - this._create(); - this.body.emitter.emit("change"); - } - - LineGraph.prototype = new Component(); + * 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(); + }; /** - * Create the HTML DOM for the ItemSet + * 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 */ - LineGraph.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'LineGraph'; - this.dom.frame = frame; - - // 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 axis - this.options.dataAxis.orientation = 'left'; - this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - - this.options.dataAxis.orientation = 'right'; - this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg); - delete this.options.dataAxis.orientation; + 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; - // legends - this.legendLeft = new Legend(this.body, this.options.legend, 'left'); - this.legendRight = new Legend(this.body, this.options.legend, 'right'); + ctx.fillRect(left, top, width, height); - this.show(); + // draw text + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = "left"; + ctx.textBaseline = "top"; + ctx.fillText(text, left, top); + } }; /** - * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. - * @param options + * 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 */ - 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'); + 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;} - 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; - } - } - } - } + ctx.lineWidth = this._getLineWidth(); - if (this.yAxisLeft) { - if (options.dataAxis !== undefined) { - this.yAxisLeft.setOptions(this.options.dataAxis); - this.yAxisRight.setOptions(this.options.dataAxis); - } + 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 (this.legendLeft) { - if (options.legend !== undefined) { - this.legendLeft.setOptions(this.options.legend); - this.legendRight.setOptions(this.options.legend); - } + else { + pattern = [5,5]; } - if (this.groups.hasOwnProperty(UNGROUPED)) { - this.groups[UNGROUPED].setOptions(options); - } - } - if (this.dom.frame) { - this._updateGraph(); - } - }; + // set dash settings for chrome or firefox + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; - /** - * 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); + } else { //Firefox + ctx.mozDash = pattern; + ctx.mozDashOffset = 0; + } + + // draw the line + via = this._line(ctx); + + // restore the dash settings. + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; + + } 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(); + } + + // 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); } }; /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Get a point on a line + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private */ - LineGraph.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + 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 } }; - /** - * Set items - * @param {vis.DataSet | null} items + * 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 */ - 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 { - 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); + 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) } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); }; /** - * Set groups - * @param {vis.DataSet} groups + * 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 */ - LineGraph.prototype.setGroups = function(groups) { - var me = this, - ids; + 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(); - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } + 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); + } - // replace the dataset - if (!groups) { - this.groupsData = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; + ctx.arrow(point.x, point.y, angle, length); + ctx.fill(); + ctx.stroke(); + + // draw label + if (this.label) { + this._label(ctx, this.label, point.x, point.y); + } } else { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } + // 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); - 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 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(); - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } } - this._onUpdate(); }; - 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]); - } + /** + * 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;} - this._updateGraph(); - this.redraw(); - }; - LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; + ctx.lineWidth = this._getLineWidth(); - 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(); + 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 (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; + } + + 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 { - this.yAxisLeft.removeGroup(groupIds[i]); - this.legendLeft.removeGroup(groupIds[i]); - this.legendLeft.redraw(); + point = this._pointOnLine(0.5); } - delete this.groups[groupIds[i]]; + 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(); + + // 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(); + + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); } } - this._updateUngrouped(); - this._updateGraph(); - this.redraw(); }; + + /** - * update a group object - * - * @param group - * @param groupId + * 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 */ - 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]); + 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 { - this.yAxisLeft.addGroup(groupId, this.groups[groupId]); - this.legendLeft.addGroup(groupId, this.groups[groupId]); + return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); } } 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]); + 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 { - this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); - this.legendLeft.updateGroup(groupId, this.groups[groupId]); + 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); } - 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]); - } - } + 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; + + if (u > 1) { + u = 1; } - }; + else if (u < 0) { + u = 0; + } + + 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); + } /** - * 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 + * This allows the zoom level of the network to influence the rendering + * + * @param scale */ - 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; - } - } - } + Edge.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + }; + + + Edge.prototype.select = function() { + this.selected = true; + }; + + Edge.prototype.unselect = function() { + this.selected = false; + }; + + 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); + } + }; + + /** + * 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); } - // 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); + 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; } - // console.log("getting amount ungrouped",new Date() - t1); - // console.log("putting in ungrouped",new Date() - t0); + + this.controlNodes.from.draw(ctx); + this.controlNodes.to.draw(ctx); } else { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); + this.controlNodes = {from:null, to:null, positions:{}}; } + }; - this.legendLeft.redraw(); - this.legendRight.redraw(); + /** + * Enable control nodes. + * @private + */ + Edge.prototype._enableControlNodes = function() { + this.controlNodesEnabled = true; }; + /** + * disable control nodes + * @private + */ + Edge.prototype._disableControlNodes = function() { + this.controlNodesEnabled = false; + }; /** - * Redraw the component, mandatory function - * @return {boolean} Returns true if the component is resized + * 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 */ - LineGraph.prototype.redraw = function() { - var resized = false; + 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)); - this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; - if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { - resized = true; + if (fromDistance < 15) { + this.connectedNode = this.from; + this.from = this.controlNodes.from; + return this.controlNodes.from; } - // 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; - - // calculate actual size and position - this.width = this.dom.frame.offsetWidth; - - // 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); + else if (toDistance < 15) { + this.connectedNode = this.to; + this.to = this.controlNodes.to; + return this.controlNodes.to; } - if (zoomed == true) { - this._updateGraph(); + else { + return null; } + }; - this.legendLeft.redraw(); - this.legendRight.redraw(); - return resized; + /** + * 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(); + } }; /** - * Update and redraw the graph. + * 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: *}}} */ - LineGraph.prototype._updateGraph = function () { - // reset the svg elements - DOMutil.prepareElements(this.svgElements); + 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; - if (this.width != 0 && this.itemsData != null) { - var group, groupData, preprocessedGroup, i; - var preprocessedGroupData = []; - var processedGroupData = []; - var groupRanges = []; - var changeCalled = false; + 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(); + } - // getting group Ids - var groupIds = []; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupIds.push(groupId); - } - } + 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; - // 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); + 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; + } - // 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')); + return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; + }; - 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([]); - } - } + module.exports = Edge; - // 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; - } +/***/ }, +/* 34 */ +/***/ function(module, exports, __webpack_require__) { - // 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)) - } + var util = __webpack_require__(1); - // 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); - } - } - } - } - } + /** + * @class Groups + * This class can store groups and properties specific for groups. + */ + function Groups() { + this.clear(); + this.defaultIndex = 0; + } - // cleanup unused svg elements - DOMutil.cleanupElements(this.svgElements); - }; /** - * 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 + * default constants for group colors */ - 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'; - } + 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 + ]; - 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; - } + /** + * 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++; } } - if (yAxisLeftUsed == true) { - this.yAxisLeft.setRange(minLeft, maxLeft); - } - if (yAxisRightUsed == true) { - this.yAxisRight.setRange(minRight, maxRight); - } + return i; } + }; - 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; + /** + * 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 + */ + 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; } - else { - this.yAxisLeft.drawIcons = false; - this.yAxisRight.drawIcons = false; + + return group; + }; + + /** + * 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; + }; - this.yAxisRight.master = !yAxisLeftUsed; + module.exports = Groups; - 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; +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { + + /** + * @class Images + * This class loads images and keeps them stored. + */ + function Images() { + this.images = {}; + + this.callback = undefined; + } + + /** + * 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 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 + * @param {string} url Url of the image + * @return {Image} img The image object */ - 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; - } + 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; } - return changed; + + return img; }; + module.exports = Images; - /** - * draw a bar graph - * @param datapoints - * @param group - */ - 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 = {}; +/***/ }, +/* 36 */ +/***/ function(module, exports, __webpack_require__) { - 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; - } - } + var util = __webpack_require__(1); - // 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; + /** + * @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; - 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); + this.selected = false; + this.hover = false; - // draw points - if (group.options.drawPoints.enabled == true) { - DOMutil.drawPoint(dataset[i].x + drawData.offset, dataset[i].y, group, this.svgElements, this.svg); - } - } - } - } - }; + this.edges = []; // all edges connected to this node + this.dynamicEdges = []; + this.reroutedEdges = {}; - LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { - var width, offset; - if (coreDistance < group.options.barChart.width && coreDistance > 0) { - width = coreDistance < minWidth ? minWidth : coreDistance; + this.fontDrawThreshold = 3; - 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;} - } + // 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; - return {width: width, offset: offset}; - } + this.imagelist = imagelist; + this.grouplist = grouplist; - /** - * 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); + // 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}; - // construct path from dataset - if (group.options.catmullRom.enabled == true) { - d = this._catmullRom(dataset, group); - } - else { - d = this._linear(dataset); - } - // 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); + this.setProperties(properties, constants); - // draw points - if (group.options.drawPoints.enabled == true) { - this._drawPoints(dataset, group, this.svgElements, this.svg); - } - } - } - }; + // 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; + + // 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; + } /** - * draw the data points - * - * @param dataset - * @param JSONcontainer - * @param svg - * @param group + * (re)setting the clustering variables and objects */ - 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); - } + 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 = []; }; - - /** - * 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 + * Attach a edge to the node + * @param {Edge} edge */ - LineGraph.prototype._preprocessData = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; - - var increment = 1; - var amountOfPoints = datapoints.length; - - 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))); + Node.prototype.attachEdge = function(edge) { + if (this.edges.indexOf(edge) == -1) { + this.edges.push(edge); } - - 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; + if (this.dynamicEdges.indexOf(edge) == -1) { + this.dynamicEdges.push(edge); } - - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return {min: yMin, max: yMax, data: extractedData}; + this.dynamicEdgesLength = this.dynamicEdges.length; }; /** - * 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 + * Detach a edge from the node + * @param {Edge} edge */ - 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}); + 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.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); - - // extractedData.sort(function (a,b) {return a.x - b.x;}); - return extractedData; + this.dynamicEdgesLength = this.dynamicEdges.length; }; /** - * 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 + * Set or overwrite properties for the node + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties */ - 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; + Node.prototype.setProperties = function(properties, constants) { + if (!properties) { + return; + } + var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', + 'fontSize','fontFace','group','mass' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - // 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 + 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;} - // 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 }; + // 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;} - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; + if (this.id === undefined) { + throw "Node must have an id"; } - return d; - }; - - /** - * 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 - */ - LineGraph.prototype._catmullRom = function(data, group) { - var alpha = group.options.catmullRom.alpha; - if (alpha == 0 || alpha === undefined) { - return this._catmullRomUniform(data); + // 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]; + } + } } - 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 ] - // [ 0 1 0 0 ] - // [ -d2pow2a/N A/N d1pow2a/N 0 ] - // [ 0 d3pow2a/M B/M -d2pow2a/M ] - // [ 0 0 1 0 ] - 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); + // individual shape properties + if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} + if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} - 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;} + if (this.options.image!== undefined && this.options.image!= "") { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image); + } + else { + throw "No imagelist provided"; + } + } - bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), - y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; + 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); - bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), - y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; + if (this.options.shape == 'image') { + this.options.radiusMin = constants.nodes.widthMin; + this.options.radiusMax = constants.nodes.widthMax; + } - 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; + // 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(); }; /** - * this generates the SVG path for a linear drawing between datapoints. - * @param data - * @returns {string} - * @private + * select this node */ - 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; + Node.prototype.select = function() { + this.selected = true; + this._reset(); }; - module.exports = LineGraph; - + /** + * unselect this node + */ + Node.prototype.unselect = function() { + this.selected = false; + this._reset(); + }; -/***/ }, -/* 38 */ -/***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); - var DataStep = __webpack_require__(39); + /** + * Reset the calculated size of the node, forces it to recalculate its size + */ + Node.prototype.clearSizeCache = function() { + this._reset(); + }; /** - * A horizontal time axis - * @param {Object} [options] See DataAxis.setOptions for the available - * options. - * @constructor DataAxis - * @extends Component - * @param body + * Reset the calculated size of the node, forces it to recalculate its size + * @private */ - function DataAxis (body, options, svg) { - this.id = util.randomUUID(); - this.body = body; + Node.prototype._reset = function() { + this.width = undefined; + this.height = undefined; + }; - 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} - } - }; - - this.linegraphSVG = svg; - this.props = {}; - this.DOMelements = { // dynamic elements - lines: {}, - labels: {} - }; - - this.dom = {}; - - this.range = {start:0, end:0}; - - 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 = {}; + /** + * 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; + }; + /** + * 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; - this.groups = {}; - this.amountOfGroups = 0; + if (!this.width) { + this.resize(ctx); + } - // create the HTML DOM - this._create(); - } + switch (this.options.shape) { + case 'circle': + case 'dot': + return this.options.radius+ borderWidth; - DataAxis.prototype = new Component(); + 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); + // TODO: implement distanceToBorder for database + // TODO: implement distanceToBorder for triangle + // TODO: implement distanceToBorder for triangleDown + 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; + } - DataAxis.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; } - this.amountOfGroups += 1; - }; - - DataAxis.prototype.updateGroup = function(label, graphOptions) { - this.groups[label] = graphOptions; + // TODO: implement calculation of distance to border for all shapes }; - DataAxis.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; - } + /** + * 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; }; - - 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.minWidth = Number(('' + this.options.width).replace("px","")); - - if (redraw == true && this.dom.frame) { - this.hide(); - this.show(); - } - } + /** + * 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; }; - /** - * Create the HTML DOM for the DataAxis + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds */ - 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; + 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 + } - // 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); + 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 + } }; - 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; - if (this.options.orientation == 'left') { - x = iconOffset; + /** + * 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 { - x = this.width - iconWidth - iconOffset; + this.fx = 0; } - 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; - } - } + 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; } - - DOMutil.cleanupElements(this.svgElements); }; /** - * Create the HTML DOM for the DataAxis + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not */ - 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); - } - } + Node.prototype.isFixed = function() { + return (this.xFixed && this.yFixed); + }; - if (!this.dom.lineContainer.parentNode) { - this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); - } + /** + * 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); }; /** - * Create the HTML DOM for the DataAxis + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false */ - DataAxis.prototype.hide = function() { - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + Node.prototype.isSelected = function() { + return this.selected; + }; - if (this.dom.lineContainer.parentNode) { - this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); - } + /** + * Retrieve the value of the node. Can be undefined + * @return {Number} value + */ + Node.prototype.getValue = function() { + return this.value; }; /** - * Set a range (start and end) - * @param end - * @param start - * @param end + * Calculate the distance from the nodes location to the given location (x,y) + * @param {Number} x + * @param {Number} y + * @return {Number} value */ - DataAxis.prototype.setRange = function (start, end) { - this.range.start = start; - this.range.end = end; + Node.prototype.getDistance = function(x, y) { + var dx = this.x - x, + dy = this.y - y; + return Math.sqrt(dx * dx + dy * dy); }; + /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Adjust the value range of the node. The node will adjust it's radius + * based on its value. + * @param {Number} min + * @param {Number} max */ - 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++; - } + 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; } } - 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.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; - - // update classname - frame.className = 'dataaxis'; + this.baseRadiusValue = this.options.radius; + }; - // calculate character width and height - this._calculateCharSize(); + /** + * 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"; + }; - var orientation = this.options.orientation; - var showMinorLabels = this.options.showMinorLabels; - var showMajorLabels = this.options.showMajorLabels; + /** + * 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"; + }; - // determine the width and height of the elemens for the axis - props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; - props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + /** + * 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 + */ + 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); + }; - 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; + Node.prototype._resizeImage = function (ctx) { + // TODO: pre calculate the image size - // 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"; + 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 { // right - frame.style.top = ''; - frame.style.bottom = '0'; - frame.style.left = '0'; - frame.style.width = this.width + 'px'; - frame.style.height = this.height + "px"; + else { + width = this.imageObj.width; + height = this.imageObj.height; } - changeCalled = this._redrawLabels(); - if (this.options.icons == true) { - this._redrawGroupIcons(); + 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; } } - return changeCalled; - }; - /** - * Repaint major and minor text labels and vertical grid lines - * @private - */ - DataAxis.prototype._redrawLabels = function () { - DOMutil.prepareElements(this.DOMelements.lines); - DOMutil.prepareElements(this.DOMelements.labels); + }; - var orientation = this.options['orientation']; + Node.prototype._drawImage = function (ctx) { + this._resizeImage(ctx); - // 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; + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var amountOfSteps = this.height / stepPixels; - var stepDifference = 0; + 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); - 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(); + ctx.globalAlpha = 0.5; + ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); } - amountOfSteps = this.height / stepPixels; + + // 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 { - amountOfSteps += 0.25; + // image still loading... just draw the label for now + yLabel = this.y; } + this._label(ctx, this.label, this.x, yLabel, undefined, "top"); + }; - this.valueAtZero = step.marginEnd; - var marginStartPos = 0; - // do not draw the first label - var max = 1; + 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.maxLabelSize = 0; - var y = 0; - while (max < Math.round(amountOfSteps)) { - step.next(); - y = Math.round(max * stepPixels); - marginStartPos = max * stepPixels; - var isMajor = step.isMajor(); + 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; - 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); - } + Node.prototype._drawBox = function (ctx) { + this._resizeBox(ctx); - max++; - } + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - if (this.master == false) { - this.conversionFactor = y / (this.valueAtZero - step.current); - } - else { - this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; - } + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - 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; - } - }; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; - }; + // 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); - /** - * Create a label for the axis at position x - * @private - * @param y - * @param text - * @param orientation - * @param className - * @param characterHeight - */ - 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"; + 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); - label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; - text += ''; + ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); + ctx.fill(); + ctx.stroke(); - var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); - if (this.maxLabelSize < text.length * largestWidth) { - this.maxLabelSize = text.length * largestWidth; - } + this._label(ctx, this.label, this.x, this.y); }; - /** - * Create a minor line for the axis at position y - * @param y - * @param orientation - * @param className - * @param offset - * @param width - */ - 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'; - } + 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; - line.style.width = width + 'px'; - line.style.top = y + 'px'; + // 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; } }; + 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; + // 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); - /** - * 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); - - this.props.minorCharHeight = measureCharMinor.clientHeight; - this.props.minorCharWidth = measureCharMinor.clientWidth; - - this.dom.frame.removeChild(measureCharMinor); + 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); - 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; + 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.dom.frame.removeChild(measureCharMajor); - } + this._label(ctx, this.label, this.x, this.y); }; - /** - * 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); - }; - module.exports = DataAxis; + 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; -/***/ }, -/* 39 */ -/***/ function(module, exports, __webpack_require__) { + // 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; + } + }; - /** - * @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; + Node.prototype._drawCircle = function (ctx) { + this._resizeCircle(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - this.autoScale = true; - this.stepIndex = 0; - this.step = 1; - this.scale = 1; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - this.marginStart; - this.marginEnd; - this.deadSpace = 0; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - this.majorSteps = [1, 2, 5, 10]; - this.minorSteps = [0.25, 0.5, 1, 2]; + // 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); - this.setRange(start, end, minimumStep, containerHeight, customRange); - } + 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); + 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._label(ctx, this.label, this.x, this.y); + }; - /** - * 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; + Node.prototype._resizeEllipse = function (ctx) { + if (!this.width) { + var textSize = this.getTextSize(ctx); - if (start == end) { - this._start = start - 0.75; - this._end = end + 1; - } + this.width = textSize.width * 1.5; + this.height = textSize.height * 2; + if (this.width < this.height) { + this.width = this.height; + } + var defaultSize = this.width; - if (this.autoScale) { - this.setMinimumStep(minimumStep, containerHeight); + // 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; } - 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); + Node.prototype._drawEllipse = function (ctx) { + this._resizeEllipse(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var minorStepIdx = -1; - var magnitudefactor = Math.pow(10,orderOfMagnitude); + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var start = 0; - if (orderOfMagnitude < 0) { - start = orderOfMagnitude; - } + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - 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; - } + // 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(); } - this.stepIndex = minorStepIdx; - this.scale = magnitudefactor; - this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + 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'); + }; + Node.prototype._drawTriangle = function (ctx) { + this._drawShape(ctx, 'triangle'); + }; - /** - * 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; + Node.prototype._drawTriangleDown = function (ctx) { + this._drawShape(ctx, 'triangleDown'); + }; - 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; + Node.prototype._drawSquare = function (ctx) { + this._drawShape(ctx, 'square'); + }; - this.current = this.marginEnd; + Node.prototype._drawStar = function (ctx) { + this._drawShape(ctx, 'star'); + }; + + 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; + } }; - 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]); + 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; } - else { - return rounded; + + 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[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(); - /** - * 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); + if (this.label) { + this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); + } }; - /** - * Do the next step - */ - DataStep.prototype.next = function() { - var prev = this.current; - this.current -= this.step; + 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; - // safety mechanism: if current time is still unchanged, move to the end - if (this.current == prev) { - this.current = this._end; + // 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 the next step - */ - DataStep.prototype.previous = function() { - this.current += this.step; - this.marginEnd += this.step; - this.marginRange = this.marginEnd - this.marginStart; + Node.prototype._drawText = function (ctx) { + this._resizeText(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; + + this._label(ctx, this.label, this.x, this.y); }; + 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"; - /** - * 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 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); } - else{ - break; + + for (var i = 0; i < lineCount; i++) { + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; } } - - return toPrecision; }; + Node.prototype.getTextSize = function(ctx) { + if (this.label !== undefined) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; - /** - * 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) { + var lines = this.label.split('\n'), + height = (Number(this.options.fontSize) + 4) * lines.length, + width = 0; - }; + for (var i = 0, iMax = lines.length; i < iMax; i++) { + width = Math.max(width, ctx.measureText(lines[i]).width); + } - /** - * 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); + return {"width": width, "height": height}; + } + else { + return {"width": 0, "height": 0}; + } }; - module.exports = DataStep; - - -/***/ }, -/* 40 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * 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} */ - 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;}) - } + 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 { - this.itemsData = []; + return true; } }; - GraphGroup.prototype.setZeroPosition = function(pos) { - this.zeroPosition = pos; - }; - - 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'); - - 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; - } - } - } - } - } + /** + * 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); }; - 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); + /** + * 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; }; - GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { - var fillHeight = iconHeight * 0.5; - var path, fillPath; - - 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"); - } + /** + * 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; + }; - 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); - } + /** + * 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; }; + /** + * Basic preservation of (kinectic) energy * - * @param iconWidth - * @param iconHeight - * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} + * @param massBeforeClustering */ - 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}; - } + 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); + }; - module.exports = GraphGroup; + module.exports = Node; /***/ }, -/* 41 */ +/* 37 */ /***/ function(module, exports, __webpack_require__) { - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); - /** - * Legend for Graph2d + * 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 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 - } + function Popup(container, x, y, text, style) { + if (container) { + this.container = container; } - this.side = side; - this.options = util.extend({},this.defaultOptions); - - this.svgElements = {}; - this.dom = {}; - this.groups = {}; - this.amountOfGroups = 0; - this._create(); - - this.setOptions(options); - } - - Legend.prototype = new Component(); - - - Legend.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + else { + this.container = document.body; } - this.amountOfGroups += 1; - }; - - Legend.prototype.updateGroup = function(label, graphOptions) { - this.groups[label] = graphOptions; - }; - Legend.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; + // 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' + } + } + } } - }; - - 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"; - this.dom.textArea = document.createElement('div'); - this.dom.textArea.className = 'legendText'; - this.dom.textArea.style.position = "relative"; - this.dom.textArea.style.top = "0px"; + this.x = 0; + this.y = 0; + this.padding = 5; - 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'; + if (x !== undefined && y !== undefined ) { + this.setPosition(x, y); + } + if (text !== undefined) { + this.setText(text); + } - this.dom.frame.appendChild(this.svg); - this.dom.frame.appendChild(this.dom.textArea); - }; + // 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); + } /** - * Hide the component from the DOM + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window */ - Legend.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + Popup.prototype.setPosition = function(x, y) { + this.x = parseInt(x); + this.y = parseInt(y); }; /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Set the text for the popup window. This can be HTML code + * @param {string} text */ - Legend.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); - } - }; - - Legend.prototype.setOptions = function(options) { - var fields = ['enabled','orientation','icons','left','right']; - util.selectiveDeepExtend(fields, this.options, options); + Popup.prototype.setText = function(text) { + this.frame.innerHTML = text; }; - 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++; - } - } + /** + * Show the popup window + * @param {boolean} show Optional. Show or hide the window + */ + Popup.prototype.show = function (show) { + if (show === undefined) { + show = true; } - 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 = ''; - } + if (show) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; - 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 = ''; + var top = (this.y - height); + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; } - else { - this.dom.frame.style.bottom = 4 - Number(this.body.dom.center.style.top.replace("px","")) + 'px'; - this.dom.frame.style.top = ''; + if (top < this.padding) { + top = this.padding; } - 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'; + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; } - else { - this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px' - this.drawLegendIcons(); + if (left < this.padding) { + left = this.padding; } - 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'; + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + } + else { + this.hide(); } }; - 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); - } + /** + * Hide the popup window + */ + Popup.prototype.hide = function () { + this.frame.style.visibility = "hidden"; }; - module.exports = Legend; + module.exports = Popup; /***/ }, -/* 42 */ +/* 38 */ /***/ function(module, exports, __webpack_require__) { - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var mousetrap = __webpack_require__(43); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var dotparser = __webpack_require__(44); - var gephiParser = __webpack_require__(45); - var Groups = __webpack_require__(46); - var Images = __webpack_require__(47); - var Node = __webpack_require__(48); - var Edge = __webpack_require__(49); - var Popup = __webpack_require__(50); - var MixinLoader = __webpack_require__(51); - var locales = __webpack_require__(62); - - // Load custom shapes into CanvasRenderingContext2D - __webpack_require__(63); - /** - * @constructor Network - * Create a network visualization, displaying nodes and edges. + * 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. * - * @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 + * 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 Network (container, data, options) { - if (!(this instanceof Network)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } - - this._initializeMixinLoaders(); + function parseDOT (data) { + dot = data; + return parseGraph(); + } - // create variables and set default values - this.containerElement = container; + // token types enumeration + var TOKENTYPE = { + NULL : 0, + DELIMITER : 1, + IDENTIFIER: 2, + UNKNOWN : 3 + }; - // 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 + // map with all delimiters + var DELIMITERS = { + '{': true, + '}': true, + '[': true, + ']': true, + ';': true, + '=': true, + ',': true, - this.initializing = true; + '->': true, + '--': true + }; - this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; + 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 - // 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 - locale: 'en', - locales: locales, - 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); + /** + * 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. + */ + function first() { + index = 0; + c = dot.charAt(0); + } - this.hoverObj = {nodes:{},edges:{}}; - this.controlNodesActive = false; + /** + * 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. + */ + function next() { + index++; + c = dot.charAt(index); + } - // 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(); - }); + /** + * Preview the next character from the dot file. + * @return {String} cNext + */ + function nextPreview() { + return dot.charAt(index + 1); + } - // keyboard navigation variables - this.xIncrement = 0; - this.yIncrement = 0; - this.zoomIncrement = 0; + /** + * Test whether given character is alphabetic or numeric + * @param {String} c + * @return {Boolean} isAlphaNumeric + */ + var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; + function isAlphaNumeric(c) { + return regexAlphaNumeric.test(c); + } - // 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(); + /** + * Merge all properties of object b into object b + * @param {Object} a + * @param {Object} b + * @return {Object} a + */ + function merge (a, b) { + if (!a) { + a = {}; + } - // apply options - this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); - this._setScale(1); - this.setOptions(options); - - // 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 - - // 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 - - // datasets or dataviews - this.nodesData = null; // A DataSet or DataView - this.edgesData = null; // A DataSet or DataView + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; + } + } + } + return a; + } - // 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(); + /** + * 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 + */ + 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]; } - }; - 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(); + else { + // this is the end point + o[key] = value; } - }; - - // 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); + /** + * 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; - // hierarchical layout - this.initializing = false; - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); + // 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; } - 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); + + // 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 clustering is disabled, the simulation will have started in the setData function - if (this.constants.clustering.enabled) { - this.startWithClustering(); + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); + } } - } - - // 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. - * @private - */ - Network.prototype._getScriptPath = function() { - var scripts = document.getElementsByTagName( 'script' ); + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; - // 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 (!g.nodes) { + g.nodes = []; + } + if (g.nodes.indexOf(current) == -1) { + g.nodes.push(current); } } - return null; - }; - + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); + } + } /** - * Find the center position of the network - * @private + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge */ - 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;} - } + function addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; } - if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { - minY = 0, maxY = 0, minX = 0, maxX = 0; + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes } - return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - }; - + } /** - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - * @returns {{x: number, y: number}} - * @private + * 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 */ - Network.prototype._findCenter = function(range) { - return {x: (0.5 * (range.maxX + range.minX)), - y: (0.5 * (range.maxY + range.minY))}; - }; + function createEdge(graph, from, to, type, attr) { + var edge = { + from: from, + to: to, + type: type + }; + + if (graph.edge) { + edge.attr = merge({}, graph.edge); // clone default attributes + } + edge.attr = merge(edge.attr || {}, attr); // merge attributes + return edge; + } /** - * center the network - * - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * Get next token in the current dot file. + * The token and token type are available as token and tokenType */ - 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; + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ''; - this._setTranslation(-center.x,-center.y); // set at 0,0 - }; + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); + } + do { + var isComment = false; - /** - * 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; - } - - var range = this._getRange(); - var zoomLevel; - - 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. + // skip comment + if (c == '#') { + // find the previous non-space character + var i = index - 1; + while (dot.charAt(i) == ' ' || dot.charAt(i) == '\t') { + i--; } - 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. + 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; } } - 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. + if (c == '/' && nextPreview() == '/') { + // skip line comment + while (c != '' && c != '\n') { + next(); } - 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. + 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; } - // correct for larger canvasses. - var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); - zoomLevel *= factor; + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); + } } - 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; + while (isComment); - var xZoomLevel = this.frame.canvas.clientWidth / xDistance; - var yZoomLevel = this.frame.canvas.clientHeight / yDistance; + // check for end of dot file + if (c == '') { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } - zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; } - if (zoomLevel > 1.0) { - zoomLevel = 1.0; + // 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(); - this._setScale(zoomLevel); - this._centerNetwork(range); - if (disableStart == false) { - this.moving = true; - this.start(); + 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; } - }; - - /** - * 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); + // 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; } - }; + // 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) + '"'); + } /** - * 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. + * Parse a graph. + * @returns {Object} graph */ - Network.prototype.setData = function(data, disableStart) { - if (disableStart === undefined) { - disableStart = false; + function parseGraph() { + var graph = {}; + + first(); + getToken(); + + // optional strict keyword + if (token == 'strict') { + graph.strict = true; + getToken(); } - 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.'); + // graph or digraph keyword + if (token == 'graph' || token == 'digraph') { + graph.type = token; + getToken(); } - // set options - this.setOptions(data && data.options); + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } - // set all data - if (data && data.dot) { - // parse DOT file - if(data && data.dot) { - var dotData = dotparser.DOTToGraph(data.dot); - this.setData(dotData); - return; - } + // open angle bracket + if (token != '{') { + throw newSyntaxError('Angle bracket { expected'); } - else if (data && data.gephi) { - // parse DOT file - if(data && data.gephi) { - var gephiData = gephiParser.parseGephi(data.gephi); - this.setData(gephiData); - return; - } + getToken(); + + // statements + parseStatements(graph); + + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); } - else { - this._setNodes(data && data.nodes); - this._setEdges(data && data.edges); + getToken(); + + // end of file + if (token !== '') { + throw newSyntaxError('End of file expected'); } + getToken(); - 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(); + // remove temporary default properties + delete graph.node; + delete graph.edge; + delete graph.graph; + + return graph; + } + + /** + * Parse a list with statements. + * @param {Object} graph + */ + function parseStatements (graph) { + while (token !== '' && token != '}') { + parseStatement(graph); + if (token == ';') { + getToken(); } } - }; + } /** - * Set options - * @param {Object} options - * @param {Boolean} [initializeView] | set zoom and translation to default. + * 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 */ - Network.prototype.setOptions = function (options) { - if (options) { - var prop; + function parseStatement(graph) { + // parse subgraph + var subgraph = parseSubgraph(graph); + if (subgraph) { + // edge statements + parseEdge(graph, subgraph); - 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); + return; + } - if (options.physics) { - util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); - util.mergeOptions(this.constants.physics, options.physics,'repulsion'); + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; + } - 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]; - } - } - } - } + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + var id = token; // id can be a string or a number + getToken(); - 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 (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); + } + } - 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'); + /** + * 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(); - if (options.dataManipulation) { - this.editMode = this.constants.dataManipulation.initiallyVisible; + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); } + } + // open angle bracket + if (token == '{') { + getToken(); - // 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;} - } - } - - 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;} - } - } + if (!subgraph) { + subgraph = {}; } + subgraph.parent = graph; + subgraph.node = graph.node; + subgraph.edge = graph.edge; + subgraph.graph = graph.graph; - 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); - } - } - } + // statements + parseStatements(subgraph); - 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); - } + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); } + getToken(); - if (options.labels) { - throw new Error('Option "labels" is deprecated. Use options "locale" and "locales" instead.'); + // remove temporary default properties + delete subgraph.node; + delete subgraph.edge; + delete subgraph.graph; + delete subgraph.parent; + + // register at the parent graph + if (!graph.subgraphs) { + graph.subgraphs = []; } + graph.subgraphs.push(subgraph); } - // (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(); + return subgraph; + } + /** + * 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(); - // bind keys. If disabled, this will not do anything; - this._createKeyBinds(); - this.setSize(this.constants.width, this.constants.height); - this.moving = true; - this.start(); + // node attributes + graph.node = parseAttributeList(); + return 'node'; + } + else if (token == 'edge') { + getToken(); - }; + // edge attributes + graph.edge = parseAttributeList(); + return 'edge'; + } + else if (token == 'graph') { + getToken(); - /** - * 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); + // graph attributes + graph.graph = parseAttributeList(); + return 'graph'; } - this.frame = document.createElement('div'); - this.frame.className = 'network-frame'; - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; + return null; + } - // 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); + /** + * 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); - 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); - - }; - + // edge statements + parseEdge(graph, id); + } /** - * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin - * @private + * Parse an edge or a series of edges + * @param {Object} graph + * @param {String | Number} from Id of the from node */ - 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"); - } + function parseEdge(graph, from) { + while (token == '->' || token == '--') { + var to; + var type = token; + getToken(); - if (this.constants.dataManipulation.enabled == true) { - this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); - this.mousetrap.bind("del",this._deleteSelected.bind(me)); - } - }; + 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(); + } - /** - * 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) - }; - }; + // parse edge attributes + var attr = parseAttributeList(); - /** - * 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(); + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); - this._handleTouch(this.drag.pointer); - }; + from = to; + } + } /** - * handle drag start event - * @private + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr */ - Network.prototype._onDragStart = function () { - this._handleDragStart(); - }; + function parseAttributeList() { + var attr = null; + while (token == '[') { + getToken(); + attr = {}; + while (token !== '' && token != ']') { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute name expected'); + } + var name = token; - /** - * 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 + getToken(); + if (token != '=') { + throw newSyntaxError('Equal sign = expected'); + } + getToken(); - drag.dragging = true; - drag.selection = []; - drag.translation = this._getTranslation(); - drag.nodeId = null; + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute value expected'); + } + var value = token; + setValue(attr, name, value); // name can be a path - if (node != null) { - drag.nodeId = node.id; - // select the clicked node if not yet selected - if (!node.isSelected()) { - this._selectObject(node,false); + getToken(); + if (token ==',') { + getToken(); + } } - // 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, - - // store original x, y, xFixed and yFixed, make the node temporarily Fixed - x: object.x, - y: object.y, - xFixed: object.xFixed, - yFixed: object.yFixed - }; - - object.xFixed = true; - object.yFixed = true; - - drag.selection.push(s); - } + if (token != ']') { + throw newSyntaxError('Bracket ] expected'); } + getToken(); } - }; + return attr; + } /** - * handle drag event - * @private + * Create a syntax error with extra information on current token and index. + * @param {String} message + * @returns {SyntaxError} err */ - Network.prototype._onDrag = function (event) { - this._handleOnDrag(event) - }; - + function newSyntaxError(message) { + return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); + } /** - * This function is called by _onDrag. - * It is separated out because we can then overload it for the datamanipulation system. - * - * @private + * Chop off text after a maximum length + * @param {String} text + * @param {Number} maxLength + * @returns {String} */ - Network.prototype._handleOnDrag = function(event) { - if (this.drag.pinched) { - return; - } - - var pointer = this._getPointer(event.gesture.center); - - 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; - - // update position of all selected nodes - selection.forEach(function (s) { - var node = s.node; + function chop (text, maxLength) { + return (text.length <= maxLength) ? text : (text.substr(0, 27) + '...'); + } - if (!s.xFixed) { - node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); + /** + * 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); + }); } - - if (!s.yFixed) { - node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); + else { + fn(elem1, array2); } }); - - - // 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(); + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } + else { + fn(array1, array2); } } - }; + } /** - * handle drag start event - * @private + * 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 */ - 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; + 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); }); - this.moving = true; - this.start(); } - else { - this._redraw(); - } - - }; - - /** - * 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); - - }; - - - /** - * handle doubletap event - * @private - */ - Network.prototype._onDoubleTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleDoubleTap(pointer); - }; - - - /** - * 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); - }; - /** - * handle the release of the screen - * - * @private - */ - Network.prototype._onRelease = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleOnRelease(pointer); - }; + // 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; + } - /** - * Handle pinch event - * @param event - * @private - */ - Network.prototype._onPinch = function (event) { - var pointer = this._getPointer(event.gesture.center); + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } + else { + from = { + id: dotEdge.from + } + } - this.drag.pinched = true; - if (!('scale' in this.pinch)) { - this.pinch.scale = 1; - } + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } + else { + to = { + id: dotEdge.to + } + } - // TODO: enabled moving while pinching? - var scale = this.pinch.scale * event.gesture.scale; - this._zoom(scale, pointer) - }; + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } - /** - * 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; - } + 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); + }); - var preScaleDragPointer = null; - if (this.drag !== undefined) { - if (this.drag.dragging == true) { - preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); } - } - // + this.frame.canvas.clientHeight / 2 - var translation = this._getTranslation(); + }); + } - var scaleFrac = scale / scaleOld; - var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; - var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; + } - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; + return graphData; + } - this._setScale(scale); - this._setTranslation(tx, ty); - this.updateClustersDefault(); + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; - if (preScaleDragPointer != null) { - var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); - this.drag.pointer.x = postScaleDragPointer.x; - this.drag.pointer.y = postScaleDragPointer.y; - } - this._redraw(); +/***/ }, +/* 39 */ +/***/ function(module, exports, __webpack_require__) { - if (scaleOld < scale) { - this.emit("zoom", {direction:"+"}); - } - else { - this.emit("zoom", {direction:"-"}); + + function parseGephi(gephiJSON, options) { + var edges = []; + var nodes = []; + this.options = { + edges: { + inheritColor: true + }, + nodes: { + allowedToMove: false, + parseColor: false } + }; - return scale; + if (options !== undefined) { + this.options.nodes['allowedToMove'] = options.allowedToMove | false; + this.options.nodes['parseColor'] = options.parseColor | false; + this.options.edges['inheritColor'] = options.inheritColor | true; } - }; - - /** - * 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; + 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); } - // 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); + 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; } - scale *= (1 + zoom); + 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); + } - // calculate the pointer location - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + return {nodes:nodes, edges:edges}; + } - // apply the new scale - this._zoom(scale, pointer); - } + exports.parseGephi = parseGephi; - // Prevent default actions caused by mouse wheel. - event.preventDefault(); - }; +/***/ }, +/* 40 */ +/***/ function(module, exports, __webpack_require__) { + // 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__(50); - /** - * 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); - } +/***/ }, +/* 41 */ +/***/ function(module, exports, __webpack_require__) { - // 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); + // 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__(49); + } + else { + module.exports = function () { + throw Error('hammer.js is only available in a browser, not in node.js.'); } + } - /** - * 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); - } +/***/ }, +/* 42 */ +/***/ function(module, exports, __webpack_require__) { - // 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(); - } - }; + var Emitter = __webpack_require__(48); + 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); /** - * 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 + * 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 */ - 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(); - } - } - }; + function Core () {} + // turn Core into an event emitter + Emitter(Core.prototype); /** - * 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 + * 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 */ - Network.prototype._checkHidePopup = function (pointer) { - if (!this.popupObj || !this._getNodeAt(pointer) ) { - this.popupObj = undefined; - if (this.popup) { - this.popup.hide(); - } - } - }; + 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'); - /** - * 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; + 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.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; + 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.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); - 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"; - } - } + 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.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); + 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); }; /** - * Set a data set with nodes for the network - * @param {Array | DataSet | DataView} nodes The data containing the nodes. - * @private + * Destroy the Core, clean up all DOM elements and event listeners. */ - Network.prototype._setNodes = function(nodes) { - var oldNodesData = this.nodesData; + Core.prototype.destroy = function () { + // unbind datasets + this.clear(); - 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'); - } + // remove all event listeners + this.off(); - if (oldNodesData) { - // unsubscribe from old dataset - util.forEach(this.nodesListeners, function (callback, event) { - oldNodesData.off(event, callback); - }); + // 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; - // remove drawn nodes - this.nodes = {}; + // 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; - if (this.nodesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.nodesListeners, function (callback, event) { - me.nodesData.on(event, callback); - }); + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + component.destroy(); + }); - // draw all new nodes - var ids = this.nodesData.getIds(); - this._addNodes(ids); - } - this._updateSelection(); + this.body = null; }; + /** - * Add nodes - * @param {Number[] | String[]} ids - * @private + * Set a custom time bar + * @param {Date} time */ - 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(); + Core.prototype.setCustomTime = function (time) { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateValueRange(this.nodes); - this.updateLabels(); + + this.customTime.setCustomTime(time); }; /** - * Update existing nodes, or create them when not yet existing - * @param {Number[] | String[]} ids - * @private + * Retrieve the current custom time. + * @return {Date} customTime */ - 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(); + Core.prototype.getCustomTime = function() { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); } - this._updateNodeIndexList(); - this._reconnectEdges(); - this._updateValueRange(nodes); + + return this.customTime.getCustomTime(); }; + /** - * Remove existing nodes. If nodes do not exist, the method will just ignore it. - * @param {Number[] | String[]} ids - * @private + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - 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); + Core.prototype.getVisibleItems = function() { + return this.itemSet && this.itemSet.getVisibleItems() || []; }; + + /** - * Load edges by reading the data table - * @param {Array | DataSet | DataView} edges The data containing the edges. - * @private - * @private + * 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} */ - 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); - } - else if (!edges) { - this.edgesData = new DataSet(); - } - else { - throw new TypeError('Array or DataSet expected'); + Core.prototype.clear = function(what) { + // clear items + if (!what || what.items) { + this.setItems(null); } - if (oldEdgesData) { - // unsubscribe from old dataset - util.forEach(this.edgesListeners, function (callback, event) { - oldEdgesData.off(event, callback); - }); + // clear groups + if (!what || what.groups) { + this.setGroups(null); } - // remove drawn edges - this.edges = {}; - - if (this.edgesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.edgesListeners, function (callback, event) { - me.edgesData.on(event, callback); + // clear options of timeline and of each of the components + if (!what || what.options) { + this.components.forEach(function (component) { + component.setOptions(component.defaultOptions); }); - // draw all new nodes - var ids = this.edgesData.getIds(); - this._addEdges(ids); + this.setOptions(this.defaultOptions); // this will also do a redraw } - - this._reconnectEdges(); }; /** - * Add edges - * @param {Number[] | String[]} ids - * @private + * Set Core window such that it fits all items */ - Network.prototype._addEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; - - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; + Core.prototype.fit = function() { + // apply the data range as range + var dataRange = this.getItemRange(); - var oldEdge = edges[id]; - if (oldEdge) { - oldEdge.disconnect(); + // 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 } - - var data = edgesData.get(id, {"showInternalIds" : true}); - edges[id] = new Edge(data, this, this.constants); - } - - this.moving = true; - this._updateValueRange(edges); - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + start = new Date(start.valueOf() - interval * 0.05); + end = new Date(end.valueOf() + interval * 0.05); } - this._updateCalculationNodes(); - }; - - /** - * 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]; - 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; - } + // skip range set if there is no start and end date + if (start === null && end === null) { + return; } - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.moving = true; - this._updateValueRange(edges); + this.range.setRange(start, end); }; + /** - * Remove existing edges. Non existing ids will be ignored - * @param {Number[] | String[]} ids - * @private + * 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 */ - 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]; - } + Core.prototype.setWindow = function(start, end) { + if (arguments.length == 1) { + var range = arguments[0]; + this.range.setRange(range.start, range.end); } - - this.moving = true; - this._updateValueRange(edges); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); + else { + this.range.setRange(start, end); } - this._updateCalculationNodes(); }; /** - * Reconnect all edges - * @private + * Get the visible window + * @return {{start: Date, end: Date}} Visible range */ - 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(); - } - } + Core.prototype.getWindow = function() { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; }; /** - * 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 + * Force a redraw of the Core. Can be useful to manually redraw when + * option autoResize=false */ - Network.prototype._updateValueRange = function(obj) { - var id; + Core.prototype.redraw = function() { + var resized = false, + options = this.options, + props = this.props, + dom = this.dom; - // 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); - } - } - } + if (!dom) return; // when destroyed - // adjust the range of all objects - if (valueMin !== undefined && valueMax !== undefined) { - for (id in obj) { - if (obj.hasOwnProperty(id)) { - obj[id].setValueRange(valueMin, valueMax); - } - } - } - }; + // update class names + dom.root.className = 'vis timeline root ' + options.orientation; - /** - * 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(); - }; + // 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, ''); - /** - * 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); + // 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; - // set scaling and translation - ctx.save(); - ctx.translate(this.translation.x, this.translation.y); - ctx.scale(this.scale, this.scale); + // 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; - 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) - }; + // TODO: compensate borders when any of the panels is empty. + // 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._doInAllSectors("_drawAllSectorNodes",ctx); - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { - this._doInAllSectors("_drawEdges",ctx); - } + // 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; - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { - this._doInAllSectors("_drawNodes",ctx,false); - } + // 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; - if (this.controlNodesActive == true) { - this._doInAllSectors("_drawControlNodes",ctx); - } + // 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._doInSupportSector("_drawNodes",ctx,true); - // this._drawTree(ctx,"#F00F0F"); + 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'; - // restore original scaling and translation - ctx.restore(); - }; + // 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'; - /** - * 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 - }; - } + // 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(); - if (offsetX !== undefined) { - this.translation.x = offsetX; - } - if (offsetY !== undefined) { - this.translation.y = offsetY; + // 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'; - this.emit('viewChanged'); + // 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; + + // redraw all components + this.components.forEach(function (component) { + resized = component.redraw() || resized; + }); + if (resized) { + // keep repainting until all sizes are settled + this.redraw(); + } }; - /** - * 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 - }; + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error('Function repaint is deprecated. Use redraw instead.'); }; /** - * Scale the network - * @param {Number} scale Scaling factor 1.0 is unscaled + * 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 */ - Network.prototype._setScale = function(scale) { - this.scale = scale; + // 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); }; + /** - * Get the current scale of the network - * @return {Number} scale Scaling factor 1.0 is unscaled + * 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._getScale = function() { - return this.scale; + // 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 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} + * 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._XconvertDOMtoCanvas = function(x) { - return (x - this.translation.x) / this.scale; + // 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; }; + /** - * 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} + * 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._XconvertCanvasToDOM = function(x) { - return x * this.scale + this.translation.x; + // 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; }; + /** - * 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} + * Initialize watching when option autoResize is true * @private */ - Network.prototype._YconvertDOMtoCanvas = function(y) { - return (y - this.translation.y) / this.scale; + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); + } + else { + this._stopAutoResize(); + } }; /** - * 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} + * Watch for changes in the size of the container. On resize, the Panel will + * automatically redraw itself. * @private */ - Network.prototype._YconvertCanvasToDOM = function(y) { - return y * this.scale + this.translation.y ; - }; - + Core.prototype._startAutoResize = function () { + var me = this; - /** - * - * @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)}; - } + this._stopAutoResize(); - /** - * - * @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)}; - } - - /** - * 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._onResize = function() { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; + } - // first draw the unselected nodes - var nodes = this.nodes; - var selected = []; + 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; - 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); - } + me.emit('change'); } } - } + }; - // 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); - } - } + // add event listener to window resize + util.addEventListener(window, 'resize', this._onResize); + + this.watchTimer = setInterval(this._onResize, 1000); }; /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx + * Stop watching for a resize of the frame. * @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); - } - } + Core.prototype._stopAutoResize = function () { + if (this.watchTimer) { + clearInterval(this.watchTimer); + this.watchTimer = undefined; } + + // remove event listener on window.resize + util.removeEventListener(window, 'resize', this._onResize); + this._onResize = null; }; /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._drawControlNodes = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - edges[id]._drawControlNodes(ctx); - } - } + Core.prototype._onTouch = function (event) { + this.touch.allowDragging = true; }; /** - * Find a stable position for all nodes + * Start moving the timeline vertically + * @param {Event} event * @private */ - Network.prototype._stabilize = function() { - if (this.constants.freezeForStabilization == true) { - this._freezeDefinedNodes(); - } - - // 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}); + Core.prototype._onPinch = function (event) { + this.touch.allowDragging = false; }; /** - * 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. - * + * Start moving the timeline vertically + * @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; - } - } - } + Core.prototype._onDragStart = function (event) { + this.touch.initialScrollTop = this.props.scrollTop; }; /** - * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. - * + * Move the timeline vertically + * @param {Event} event * @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; - } - } + 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; + + var delta = event.gesture.deltaY; + + var oldScrollTop = this._getScrollTop(); + var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + + if (newScrollTop != oldScrollTop) { + this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already } }; - /** - * 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 + * Apply a scrollTop + * @param {Number} scrollTop + * @returns {Number} scrollTop Returns the applied scrollTop * @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; + Core.prototype._setScrollTop = function (scrollTop) { + this.props.scrollTop = scrollTop; + this._updateScrollTop(); + return this.props.scrollTop; }; - /** - * /** - * Perform one discrete step for all nodes - * + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop * @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; - } + 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 (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; + // 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; }; /** - * A single simulation step (or "tick") in the physics simulation - * + * Get the current scrollTop + * @returns {number} scrollTop * @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()) - } - } + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; }; + module.exports = Core; + + +/***/ }, +/* 43 */ +/***/ function(module, exports, __webpack_require__) { + + var Hammer = __webpack_require__(41); /** - * 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 + * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent + * @param {Element} element + * @param {Event} event */ - 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(); + exports.fakeGesture = function(element, event) { + var eventType = null; - // this schedules a new animation step - this.start(); + // for hammer.js 1.0.5 + // var gesture = Hammer.event.collectEventData(this, eventType, event); - // 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++; + // for hammer.js 1.0.6+ + var touches = Hammer.event.getTouchList(event, eventType); + var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + + // 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; } - // start the rendering process - var renderTime = Date.now(); - this._redraw(); - this.renderTime = Date.now() - renderTime; + return gesture; }; - if (typeof window !== 'undefined') { - window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || - window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; - } - /** - * 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(); +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { - 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; - } - } + // English + exports['en'] = { + current: 'current', + time: 'time' + }; + exports['en_EN'] = exports['en']; + exports['en_US'] = exports['en']; - 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(); - } + // Dutch + exports['nl'] = { + custom: 'aangepaste', + time: 'tijd' }; + exports['nl_NL'] = exports['nl']; + exports['nl_BE'] = exports['nl']; - /** - * 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); - } - }; +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { + // English + exports['en'] = { + 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.', + createEdgeError: 'Cannot link edges to a cluster.', + deleteClusterError: 'Clusters cannot be deleted.' + }; + exports['en_EN'] = exports['en']; + exports['en_US'] = exports['en']; - /** - * Freeze the _animationStep - */ - Network.prototype.toggleFreeze = function() { - if (this.freezeSimulation == false) { - this.freezeSimulation = true; - } - else { - this.freezeSimulation = false; - this.start(); - } + // Dutch + exports['nl'] = { + add: 'Node', + edit: 'Wijzigen', + link: 'Link toevoegen', + del: 'Selectie verwijderen', + editNode: 'Node wijzigen', + editEdge: 'Link wijzigen', + back: 'Terug', + addDescription: 'Klik op een leeg gebied om een nieuwe node te maken.', + linkDescription: 'Klik op een node en sleep de link naar een andere node om ze te verbinden.', + editEdgeDescription: 'Klik op de verbindingspunten en sleep ze naar een node om daarmee te verbinden.', + createEdgeError: 'Kan geen link maken naar een cluster.', + deleteClusterError: 'Clusters kunnen niet worden verwijderd.' }; + exports['nl_NL'] = exports['nl']; + exports['nl_BE'] = exports['nl']; + +/***/ }, +/* 46 */ +/***/ function(module, exports, __webpack_require__) { /** - * This function cleans the support nodes if they are not needed and adds them when they are. - * - * @param {boolean} [disableStart] - * @private + * Canvas shapes used by Network */ - 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; - } - } - } + 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); + }; - this._updateCalculationNodes(); - if (!disableStart) { - this.moving = true; - this.start(); - } - }; + /** + * 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(); - /** - * 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(); - } - } - } - } - }; + 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 - /** - * 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]; + 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(); + }; + + /** + * 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.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 + + 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); + }; + + + + /** + * 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); + }; + + + /** + * 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); + + // 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); + + // 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 + } + + +/***/ }, +/* 47 */ +/***/ function(module, exports, __webpack_require__) { + + var PhysicsMixin = __webpack_require__(58); + var ClusterMixin = __webpack_require__(52); + var SectorsMixin = __webpack_require__(53); + var SelectionMixin = __webpack_require__(54); + var ManipulationMixin = __webpack_require__(55); + var NavigationMixin = __webpack_require__(56); + var HierarchicalLayoutMixin = __webpack_require__(57); /** - * Load the XY positions of the nodes into the dataset. + * Load a mixin into the network object + * + * @param {Object} sourceVariable | this object has to contain functions. + * @private */ - 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}); - } + exports._loadMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = sourceVariable[mixinFunction]; } } - this.nodesData.update(dataArray); }; /** - * Center a node in view. + * removes a mixin from the network object. * - * @param {Number} nodeId - * @param {Number} [zoomLevel] + * @param {Object} sourceVariable | this object has to contain functions. + * @private */ - Network.prototype.focusOnNode = function (nodeId, zoomLevel) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (zoomLevel === undefined) { - zoomLevel = this._getScale(); + exports._clearMixin = function (sourceVariable) { + for (var mixinFunction in sourceVariable) { + if (sourceVariable.hasOwnProperty(mixinFunction)) { + this[mixinFunction] = undefined; } - var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; - - var requiredScale = zoomLevel; - this._setScale(requiredScale); - - var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); - var translation = this._getTranslation(); - - var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, - y:canvasCenter.y - nodePosition.y}; - - this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, - translation.y + requiredScale * distanceFromCenter.y); - this.redraw(); - } - else { - console.log("This nodeId cannot be found.") } }; - module.exports = Network; - - -/***/ }, -/* 43 */ -/***/ function(module, exports, __webpack_require__) { /** - * Copyright 2012 Craig Campbell + * Mixin the physics system and initialize the parameters required. * - * 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 + * @private */ + exports._loadPhysicsSystem = function () { + this._loadMixin(PhysicsMixin); + this._loadSelectedForceSolver(); + if (this.constants.configurePhysics == true) { + this._loadPhysicsConfiguration(); + } + }; - /** - * 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' - }, - - /** - * 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: '\'' - }, - /** - * 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', - '_': '-', - '+': '=', - ':': ';', - '\"': '\'', - '<': ',', - '>': '.', - '?': '/', - '|': '\\' - }, + /** + * Mixin the cluster system and initialize the parameters required. + * + * @private + */ + exports._loadClusterSystem = function () { + this.clusterSession = 0; + this.hubThreshold = 5; + this._loadMixin(ClusterMixin); + }; - /** - * 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' - }, - /** - * 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, + /** + * Mixin the sector system and initialize the parameters required + * + * @private + */ + 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 }; - /** - * a list of all the callbacks setup via Mousetrap.bind() - * - * @type {Object} - */ - _callbacks = {}, + this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields - /** - * direct map of string combinations to callbacks used for trigger() - * - * @type {Object} - */ - _direct_map = {}, + this._loadMixin(SectorsMixin); + }; - /** - * keeps track of what level each sequence is at since multiple - * sequences can start out with the same sequence - * - * @type {Object} - */ - _sequence_levels = {}, - /** - * variable to store the setTimeout call - * - * @type {null|number} - */ - _reset_timer, + /** + * Mixin the selection system and initialize the parameters required + * + * @private + */ + exports._loadSelectionSystem = function () { + this.selectionObj = {nodes: {}, edges: {}}; - /** - * temporary state where we will ignore the next keyup - * - * @type {boolean|string} - */ - _ignore_next_keyup = false, + this._loadMixin(SelectionMixin); + }; - /** - * are we currently inside of a sequence? - * type of action ("keyup" or "keydown" or "keypress") or false - * - * @type {boolean|string} - */ - _inside_sequence = false; - /** - * 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; - } + /** + * 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; - /** - * loop through to map numbers on the numeric keypad - */ - for (i = 0; i <= 9; ++i) { - _MAP[i + 96] = i; - } + 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); + } - /** - * 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.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"; } - - object.attachEvent('on' + type, callback); - } - - /** - * takes the event and returns the key character - * - * @param {Event} e - * @return {string} - */ - function _characterFromEvent(e) { - - // for keypress events we should return the character as is - if (e.type == 'keypress') { - return String.fromCharCode(e.which); + else { + this.editModeDiv.style.display = "block"; } + this.containerElement.insertBefore(this.editModeDiv, this.frame); + } - // for non keypress events the special maps are needed - if (_MAP[e.which]) { - return _MAP[e.which]; - } + 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 (_KEYCODE_MAP[e.which]) { - return _KEYCODE_MAP[e.which]; - } + // load the manipulation functions + this._loadMixin(ManipulationMixin); - // if it is not in the special map - return String.fromCharCode(e.which).toLowerCase(); + // 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); - /** - * 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; + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + // remove the mixin functions + this._clearMixin(ManipulationMixin); + } + } + }; - // if the element has the class "mousetrap" then no need to stop - if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { - return false; - } - // stop for input, select, and textarea - return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); - } + /** + * Mixin the navigation (User Interface) system and initialize the parameters required + * + * @private + */ + exports._loadNavigationControls = function () { + this._loadMixin(NavigationMixin); - /** - * 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(','); + // the clean function removes the button divs, this is done to remove the bindings. + this._cleanNavigation(); + if (this.constants.navigation.enabled == true) { + this._loadNavigationElements(); } + }; - /** - * 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; + /** + * Mixin the hierarchical layout system. + * + * @private + */ + exports._loadHierarchySystem = function () { + this._loadMixin(HierarchicalLayoutMixin); + }; - for (key in _sequence_levels) { - if (do_not_reset[key]) { - active_sequences = true; - continue; - } - _sequence_levels[key] = 0; - } - if (!active_sequences) { - _inside_sequence = false; - } - } +/***/ }, +/* 48 */ +/***/ function(module, exports, __webpack_require__) { - /** - * 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 = []; + + /** + * Expose `Emitter`. + */ - // if there are no events related to this keycode - if (!_callbacks[character]) { - return []; - } + module.exports = Emitter; - // if a modifier key is coming up on its own we should allow it - if (action == 'keyup' && _isModifier(character)) { - modifiers = [character]; - } + /** + * Initialize a new `Emitter`. + * + * @api public + */ - // 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]; + function Emitter(obj) { + if (obj) return mixin(obj); + }; - // 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; - } + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ - // if the action we are looking for doesn't match the action we got - // then we should keep going - if (action != callback.action) { - continue; - } + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; + } - // 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)) { + /** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - // 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); - } + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; + }; - matches.push(callback); - } - } + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - return matches; + Emitter.prototype.once = function(event, fn){ + var self = this; + this._callbacks = this._callbacks || {}; + + function on() { + self.off(event, on); + fn.apply(this, arguments); } - /** - * takes a key event and figures out what the modifiers are - * - * @param {Event} e - * @returns {Array} - */ - function _eventModifiers(e) { - var modifiers = []; + on.fn = fn; + this.on(event, on); + return this; + }; - if (e.shiftKey) { - modifiers.push('shift'); - } + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ - if (e.altKey) { - modifiers.push('alt'); - } + Emitter.prototype.off = + Emitter.prototype.removeListener = + Emitter.prototype.removeAllListeners = + Emitter.prototype.removeEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; - if (e.ctrlKey) { - modifiers.push('ctrl'); - } + // all + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } - if (e.metaKey) { - modifiers.push('meta'); - } + // specific event + var callbacks = this._callbacks[event]; + if (!callbacks) return this; - return modifiers; + // remove all handlers + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; } - /** - * 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(); - } + // 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; + }; - if (e.stopPropagation) { - e.stopPropagation(); - } + /** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ - e.returnValue = false; - e.cancelBubble = true; - } + Emitter.prototype.emit = function(event){ + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1) + , callbacks = this._callbacks[event]; + + if (callbacks) { + callbacks = callbacks.slice(0); + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } } - /** - * handles a character key event - * - * @param {string} character - * @param {Event} e - * @returns void - */ - function _handleCharacter(character, e) { + return this; + }; - // if this event should not happen stop here - if (_stop(e)) { - return; - } + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ - var callbacks = _getMatches(character, _eventModifiers(e), e.type), - i, - do_not_reset = {}, - processed_sequence_callback = false; + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; + }; - // loop through matching callbacks for this key event - for (i = 0; i < callbacks.length; ++i) { + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ - // 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; + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; + }; - // keep a list of which sequences were matches for later - do_not_reset[callbacks[i].seq] = 1; - _fireCallback(callbacks[i].callback, e); - continue; - } - // 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); - } - } +/***/ }, +/* 49 */ +/***/ function(module, exports, __webpack_require__) { - // 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); - } - } + 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 */ - /** - * handles a keydown event - * - * @param {Event} e - * @returns void - */ - function _handleKey(e) { + (function(window, undefined) { + 'use strict'; - // 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; + /** + * @main + * @module hammer + * + * @class Hammer + * @static + */ - var character = _characterFromEvent(e); + /** + * 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 || {}); + }; - // no character found then stop - if (!character) { - return; - } + /** + * version, as defined in package.json + * the value will be set at each build + * @property VERSION + * @final + * @type {String} + */ + Hammer.VERSION = '1.1.3'; - if (e.type == 'keyup' && _ignore_next_keyup == character) { - _ignore_next_keyup = false; - return; - } + /** + * 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', - _handleCharacter(character, e); - } + /** + * 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', - /** - * 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'; - } + /** + * 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', - /** - * 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); - } + /** + * Specifies whether zooming is enabled. Used by IE10> + * @property defaults.behavior.contentZooming + * @type {String} + * @default 'none' + */ + contentZooming: 'none', - /** - * 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) { + /** + * 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', - // 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; - } + /** + * 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)' + } + }; - if (_MAP.hasOwnProperty(key)) { - _REVERSE_MAP[_MAP[key]] = key; - } - } - } - return _REVERSE_MAP; - } + /** + * hammer document where the base events are added at + * @property DOCUMENT + * @type {HTMLElement} + * @default window.document + */ + Hammer.DOCUMENT = document; - /** - * 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) { + /** + * detect support for pointer events + * @property HAS_POINTEREVENTS + * @type {Boolean} + */ + Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; - // 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'; - } + /** + * detect support for touch events + * @property HAS_TOUCHEVENTS + * @type {Boolean} + */ + Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); - // modifier keys don't work as expected with keypress, - // switch to keydown - if (action == 'keypress' && modifiers.length) { - action = 'keydown'; - } + /** + * detect mobile browsers + * @property IS_MOBILE + * @type {Boolean} + */ + Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); - return action; - } + /** + * 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; - /** - * 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) { + /** + * interval in which Hammer recalculates current velocity/direction/angle in ms + * @property CALCULATE_INTERVAL + * @type {Number} + * @default 25 + */ + Hammer.CALCULATE_INTERVAL = 25; - // start off by adding a sequence level record for this combination - // and setting the level to 0 - _sequence_levels[combo] = 0; + /** + * 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 there is no action pick the best one for the first key - // in the sequence - if (!action) { - action = _pickBestAction(keys[0], []); - } + /** + * direction strings, for safe comparisons + * @property DIRECTION_DOWN|LEFT|UP|RIGHT + * @final + * @type {String} + * @default 'down' 'left' 'up' 'right' + */ + 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'; - /** - * 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(); - }, + /** + * pointertype strings, for safe comparisons + * @property POINTER_MOUSE|TOUCH|PEN + * @final + * @type {String} + * @default 'mouse' 'touch' 'pen' + */ + var POINTER_MOUSE = Hammer.POINTER_MOUSE = 'mouse'; + var POINTER_TOUCH = Hammer.POINTER_TOUCH = 'touch'; + var POINTER_PEN = Hammer.POINTER_PEN = 'pen'; - /** - * 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); + /** + * 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'; - // 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); - } + /** + * if the window events are set... + * @property READY + * @writeOnce + * @type {Boolean} + * @default false + */ + Hammer.READY = false; - // weird race condition if a sequence ends with the key - // another sequence begins with - setTimeout(_resetSequences, 10); - }, - i; + /** + * plugins namespace + * @property plugins + * @type {Object} + */ + Hammer.plugins = Hammer.plugins || {}; - // 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); - } - } + /** + * gestures namespace + * see `/gestures` for the definitions + * @property gestures + * @type {Object} + */ + Hammer.gestures = Hammer.gestures || {}; - /** - * 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, ' '); + /** + * setup events to detect gestures on the document + * this function is called when creating an new instance + * @private + */ + function setup() { + if(Hammer.READY) { + return; + } - var sequence = combination.split(' '), - i, - key, - keys, - modifiers = []; + // find what eventtypes we add listeners to + Event.determineEventTypes(); - // 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); - } + // Register all gestures inside Hammer.gestures + Utils.each(Hammer.gestures, function(gesture) { + Detection.register(gesture); + }); - // take the keys from this pattern and figure out what the actual - // pattern is all about - keys = combination === '+' ? ['+'] : combination.split('+'); + // Add touch events on the document + Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); + Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); - for (i = 0; i < keys.length; ++i) { - key = keys[i]; + // Hammer is ready...! + Hammer.READY = true; + } - // normalize key names - if (_SPECIAL_ALIASES[key]) { - key = _SPECIAL_ALIASES[key]; - } + /** + * @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; + }, - // 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'); - } + /** + * 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); + }, - // if this key is a modifier then add it to the list of modifiers - if (_isModifier(key)) { - modifiers.push(key); - } - } + /** + * 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); + }, - // depending on what the key combination is - // we will try to pick the best event for it - action = _pickBestAction(key, modifiers, action); + /** + * 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; - // make sure to initialize array if this is the first time - // a callback is added for this key - if (!_callbacks[key]) { - _callbacks[key] = []; - } + // 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; + } + } + } + }, - // remove an existing match if there is one - _getMatches(key, modifiers, action, !sequence_name, combination); + /** + * 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; + }, - // 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 - }); - } + /** + * 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; + } + }, - /** - * 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); - } - } + /** + * 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); + }, - // start! - _addEvent(document, 'keypress', _handleKey); - _addEvent(document, 'keydown', _handleKey); - _addEvent(document, 'keyup', _handleKey); + /** + * 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 mousetrap = { + /** + * 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; - /** - * 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; - }, + // 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 + }; + } - /** - * 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; - }, + Utils.each(touches, function(touch) { + pageX.push(touch.pageX); + pageY.push(touch.pageY); + clientX.push(touch.clientX); + clientY.push(touch.clientY); + }); - /** - * 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; - }, + 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 + }; + }, - /** - * 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; - } - }; + /** + * 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 + }; + }, - module.exports = mousetrap; + /** + * 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 Math.atan2(y, x) * 180 / Math.PI; + }, + /** + * 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); -/***/ }, -/* 44 */ -/***/ function(module, exports, __webpack_require__) { + if(x >= y) { + return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; + }, - /** - * 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(); - } + /** + * 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; - // token types enumeration - var TOKENTYPE = { - NULL : 0, - DELIMITER : 1, - IDENTIFIER: 2, - UNKNOWN : 3 - }; + return Math.sqrt((x * x) + (y * y)); + }, - // map with all delimiters - var DELIMITERS = { - '{': true, - '}': true, - '[': true, - ']': true, - ';': true, - '=': true, - ',': true, + /** + * 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; + }, - '->': true, - '--': true - }; + /** + * 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; + }, - 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 + /** + * 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; + }, - /** - * 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. - */ - function first() { - index = 0; - c = dot.charAt(0); - } + /** + * 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); - /** - * 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. - */ - function next() { - index++; - c = dot.charAt(index); - } + 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); + } - /** - * Preview the next character from the dot file. - * @return {String} cNext - */ - function nextPreview() { - return dot.charAt(index + 1); - } + // test the style + if(p in element.style) { + element.style[p] = (toggle == null || toggle) && value || ''; + break; + } + } + }, - /** - * Test whether given character is alphabetic or numeric - * @param {String} c - * @return {Boolean} isAlphaNumeric - */ - var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; - function isAlphaNumeric(c) { - return regexAlphaNumeric.test(c); - } + /** + * 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; + } - /** - * Merge all properties of object b into object b - * @param {Object} a - * @param {Object} b - * @return {Object} a - */ - function merge (a, b) { - if (!a) { - a = {}; - } + // set the css properties + Utils.each(props, function(value, prop) { + Utils.setPrefixedCss(element, prop, value, toggle); + }); - if (b) { - for (var name in b) { - if (b.hasOwnProperty(name)) { - a[name] = b[name]; - } + var falseFn = toggle && function() { + return false; + }; + + // also the disable onselectstart + if(props.userSelect == 'none') { + element.onselectstart = falseFn; + } + // and disable ondragstart + if(props.userDrag == 'none') { + element.ondragstart = falseFn; + } + }, + + /** + * 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(); + }); } - } - return a; - } + }; + /** - * 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 + * @module hammer */ - 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; - } - } - } - /** - * 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 + * @class Event + * @static */ - function addNode(graph, node) { - var i, len; - var current = null; + 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, - // 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; - } + /** + * if EVENT_START has been fired + * @property started + * @private + * @type {Boolean} + */ + started: false, - // 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; - } - } - } + /** + * when the mouse is hold down, this is true + * @property should_detect + * @private + * @type {Boolean} + */ + shouldDetect: false, - if (!current) { - // this is a new node - current = { - id: node.id - }; - if (graph.node) { - // clone default attributes - current.attr = merge(current.attr, graph.node); - } - } + /** + * 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); + }); + }, - // add node to this (sub)graph and all its parent graphs - for (i = graphs.length - 1; i >= 0; i--) { - var g = graphs[i]; + /** + * 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); + }); + }, - if (!g.nodes) { - g.nodes = []; - } - if (g.nodes.indexOf(current) == -1) { - g.nodes.push(current); - } - } + /** + * 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; - // merge attributes - if (node.attr) { - current.attr = merge(current.attr, node.attr); - } - } + var onTouchHandler = function onTouchHandler(ev) { + var srcType = ev.type.toLowerCase(), + isPointer = Hammer.HAS_POINTEREVENTS, + isMouse = Utils.inStr(srcType, 'mouse'), + triggerType; - /** - * Add an edge to a graph object - * @param {Object} graph - * @param {Object} edge - */ - 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 - } - } + // 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; - /** - * 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 - */ - function createEdge(graph, from, to, type, attr) { - var edge = { - from: from, - to: to, - type: type - }; + // 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; + } - if (graph.edge) { - edge.attr = merge({}, graph.edge); // clone default attributes - } - edge.attr = merge(edge.attr || {}, attr); // merge attributes + // update the pointer event before entering the detection + if(isPointer && eventType != EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } - return edge; - } + // we are in a touch/down state, so allowed detection of gestures + if(self.shouldDetect) { + triggerType = self.doDetect.call(self, ev, eventType, element, handler); + } - /** - * Get next token in the current dot file. - * The token and token type are available as token and tokenType - */ - function getToken() { - tokenType = TOKENTYPE.NULL; - token = ''; + // ...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 + } - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } + if(isPointer && eventType == EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } + }; - do { - var isComment = false; + this.on(element, EVENT_TYPES[eventType], onTouchHandler); + return onTouchHandler; + }, - // 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; - } + /** + * 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; - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } - } - while (isComment); + // 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; - // check for end of dot file - if (c == '') { - // token is still empty - tokenType = TOKENTYPE.DELIMITER; - return; - } + // keep track of how many touches have been removed + changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + } - // check for delimiters consisting of 2 characters - var c2 = c + nextPreview(); - if (DELIMITERS[c2]) { - tokenType = TOKENTYPE.DELIMITER; - token = c2; - next(); - next(); - return; - } + // 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; + } - // check for delimiters consisting of 1 character - if (DELIMITERS[c]) { - tokenType = TOKENTYPE.DELIMITER; - token = c; - next(); - return; - } + // detection has been started, we keep track of this, see above + this.started = true; - // 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(); + // generate some event data, some basic information + var evData = this.collectEventData(element, triggerType, touchList, ev); - 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; - } + // 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); + } - // 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; - } + // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed + if(triggerChange) { + evData.changedLength = changedLength; + evData.eventType = triggerChange; - // 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) + '"'); - } + handler.call(Detection, evData); - /** - * Parse a graph. - * @returns {Object} graph - */ - function parseGraph() { - var graph = {}; + evData.eventType = triggerType; + delete evData.changedLength; + } - first(); - getToken(); + // trigger the END event + if(triggerType == EVENT_END) { + handler.call(Detection, evData); - // optional strict keyword - if (token == 'strict') { - graph.strict = true; - getToken(); - } + // ...and we are done with the detection + // so reset everything to start each detection totally fresh + this.started = false; + } - // graph or digraph keyword - if (token == 'graph' || token == 'digraph') { - graph.type = token; - getToken(); - } + return triggerType; + }, - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - graph.id = token; - getToken(); - } + /** + * 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' + ]; + } - // open angle bracket - if (token != '{') { - throw newSyntaxError('Angle bracket { expected'); - } - getToken(); + EVENT_TYPES[EVENT_START] = types[0]; + EVENT_TYPES[EVENT_MOVE] = types[1]; + EVENT_TYPES[EVENT_END] = types[2]; + return EVENT_TYPES; + }, - // statements - parseStatements(graph); + /** + * 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(); + } - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + // get the touchlist + if(ev.touches) { + if(eventType == EVENT_MOVE) { + return ev.touches; + } - // end of file - if (token !== '') { - throw newSyntaxError('End of file expected'); - } - getToken(); + var identifiers = []; + var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); + var touchList = []; - // remove temporary default properties - delete graph.node; - delete graph.edge; - delete graph.graph; + Utils.each(concat, function(touch) { + if(Utils.inArray(identifiers, touch.identifier) === false) { + touchList.push(touch); + } + identifiers.push(touch.identifier); + }); - return graph; - } + return touchList; + } - /** - * Parse a list with statements. - * @param {Object} graph - */ - function parseStatements (graph) { - while (token !== '' && token != '}') { - parseStatement(graph); - if (token == ';') { - getToken(); - } - } - } + // make fake touchList from mouse position + ev.identifier = 1; + return [ev]; + }, - /** - * 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); + /** + * 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; + } - return; - } + return { + center: Utils.getCenter(touches), + timeStamp: Date.now(), + target: ev.target, + touches: touches, + eventType: eventType, + pointerType: pointerType, + srcEvent: ev, - // parse an attribute statement - var attr = parseAttributeStatement(graph); - if (attr) { - return; - } + /** + * 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(); + }, - // parse node - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); - } - var id = token; // id can be a string or a number - getToken(); + /** + * stop bubbling the event up to its parents + */ + stopPropagation: function() { + this.srcEvent.stopPropagation(); + }, - if (token == '=') { - // id statement - getToken(); - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); + /** + * immediately stop gesture detection + * might be useful after a swipe was detected + * @return {*} + */ + stopDetect: function() { + return Detection.stopDetect(); + } + }; } - 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 + * @module hammer + * + * @class PointerEvent + * @static */ - function parseSubgraph (graph) { - var subgraph = null; + var PointerEvent = Hammer.PointerEvent = { + /** + * holds all pointers, by `identifier` + * @property pointers + * @type {Object} + */ + pointers: {}, - // optional subgraph keyword - if (token == 'subgraph') { - subgraph = {}; - subgraph.type = 'subgraph'; - getToken(); + /** + * 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; + }, - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - subgraph.id = token; - getToken(); - } - } + /** + * 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; + } + }, - // open angle bracket - if (token == '{') { - getToken(); - - if (!subgraph) { - subgraph = {}; - } - subgraph.parent = graph; - subgraph.node = graph.node; - subgraph.edge = graph.edge; - subgraph.graph = graph.graph; - - // statements - parseStatements(subgraph); + /** + * 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; + } - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + var pt = ev.pointerType, + types = {}; - // remove temporary default properties - delete subgraph.node; - delete subgraph.edge; - delete subgraph.graph; - delete subgraph.parent; + 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]; + }, - // register at the parent graph - if (!graph.subgraphs) { - graph.subgraphs = []; + /** + * reset the stored pointers + * @method reset + */ + reset: function resetList() { + this.pointers = {}; } - graph.subgraphs.push(subgraph); - } + }; - return subgraph; - } /** - * 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. + * @module hammer + * + * @class Detection + * @static */ - function parseAttributeStatement (graph) { - // attribute statements - if (token == 'node') { - getToken(); - - // node attributes - graph.node = parseAttributeList(); - return 'node'; - } - else if (token == 'edge') { - getToken(); - - // edge attributes - graph.edge = parseAttributeList(); - return 'edge'; - } - else if (token == 'graph') { - getToken(); + var Detection = Hammer.detection = { + // contains all registred Hammer.gestures in the correct order + gestures: [], - // graph attributes - graph.graph = parseAttributeList(); - return 'graph'; - } + // data of the current Hammer.gesture detection session + current: null, - return null; - } + // the previous Hammer.gesture session data + // is a full clone of the previous gesture.current object + previous: null, - /** - * 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); + // when this becomes true, no gestures are fired + stopped: false, - // edge statements - parseEdge(graph, id); - } + /** + * 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; + } - /** - * Parse an edge or a series of edges - * @param {Object} graph - * @param {String | Number} from Id of the from node - */ - function parseEdge(graph, from) { - while (token == '->' || token == '--') { - var to; - var type = token; - getToken(); + this.stopped = 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(); - } + // 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 + }; - // parse edge attributes - var attr = parseAttributeList(); + this.detect(eventData); + }, - // create edge - var edge = createEdge(graph, from, to, type, attr); - addEdge(graph, edge); + /** + * Hammer.gesture detection + * @method detect + * @param {Object} eventData + * @return {any} + */ + detect: function detect(eventData) { + if(!this.current || this.stopped) { + return; + } - from = to; - } - } + // extend event data with calculations about scale, distance etc + eventData = this.extendEventData(eventData); - /** - * Parse a set with attributes, - * for example [label="1.000", shape=solid] - * @return {Object | null} attr - */ - function parseAttributeList() { - var attr = null; + // hammer instance and instance options + var inst = this.current.inst, + instOptions = inst.options; - while (token == '[') { - getToken(); - attr = {}; - while (token !== '' && token != ']') { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute name expected'); - } - var name = token; + // 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); - getToken(); - if (token != '=') { - throw newSyntaxError('Equal sign = expected'); - } - getToken(); + // store as previous event event + if(this.current) { + this.current.lastEvent = eventData; + } - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute value expected'); - } - var value = token; - setValue(attr, name, value); // name can be a path + if(eventData.eventType == EVENT_END) { + this.stopDetect(); + } - getToken(); - if (token ==',') { - getToken(); - } - } + return eventData; + }, - if (token != ']') { - throw newSyntaxError('Bracket ] expected'); - } - getToken(); - } + /** + * 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); - return attr; - } + // reset the current + this.current = null; + this.stopped = true; + }, - /** - * 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 + ')'); - } + /** + * 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; - /** - * 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) + '...'); - } + 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; + } - /** - * 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); - } - } - } + if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { + cur.futureCalcEvent = ev; + } - /** - * 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: {} - }; + 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); - // 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); - }); - } + cur.lastCalcEvent = cur.futureCalcEvent || ev; + cur.futureCalcEvent = ev; + } + + ev.velocityX = calcData.velocity.x; + ev.velocityY = calcData.velocity.y; + ev.interimAngle = calcData.angle; + ev.interimDirection = calcData.direction; + }, - // copy the edges - if (dotData.edges) { /** - * Convert an edge in DOT format to an edge with VisGraph format - * @param {Object} dotEdge - * @returns {Object} graphEdge + * extend eventData for Hammer.gestures + * @method extendEventData + * @param {Object} ev + * @return {Object} ev */ - function convertEdge(dotEdge) { - var graphEdge = { - from: dotEdge.from, - to: dotEdge.to - }; - merge(graphEdge, dotEdge.attr); - graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; - return graphEdge; - } + extendEventData: function extendEventData(ev) { + var cur = this.current, + startEv = cur.startEvent, + lastEv = cur.lastEvent || startEv; - dotData.edges.forEach(function (dotEdge) { - var from, to; - if (dotEdge.from instanceof Object) { - from = dotEdge.from.nodes; - } - else { - from = { - id: dotEdge.from + // 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 (dotEdge.to instanceof Object) { - to = dotEdge.to.nodes; - } - else { - to = { - id: dotEdge.to - } - } + var deltaTime = ev.timeStamp - startEv.timeStamp, + deltaX = ev.center.clientX - startEv.center.clientX, + deltaY = ev.center.clientY - startEv.center.clientY; - if (dotEdge.from instanceof Object && dotEdge.from.edges) { - dotEdge.from.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } + this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); - 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); - }); + Utils.extend(ev, { + startEvent: startEv, - if (dotEdge.to instanceof Object && dotEdge.to.edges) { - dotEdge.to.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); + deltaTime: deltaTime, + deltaX: deltaX, + deltaY: deltaY, + + 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 the options - if (dotData.attr) { - graphData.options = dotData.attr; - } + return ev; + }, - return graphData; - } + /** + * 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; + } - // exports - exports.parseDOT = parseDOT; - exports.DOTToGraph = DOTToGraph; + // extend Hammer default options with the Hammer.gesture options + Utils.extend(Hammer.defaults, options, true); + // set its index + gesture.index = gesture.index || 1000; -/***/ }, -/* 45 */ -/***/ function(module, exports, __webpack_require__) { + // add Hammer.gesture to the list + this.gestures.push(gesture); - - function parseGephi(gephiJSON, options) { - var edges = []; - var nodes = []; - this.options = { - edges: { - inheritColor: true - }, - nodes: { - allowedToMove: false, - parseColor: false + // 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; } - }; + }; - if (options !== undefined) { - this.options.nodes['allowedToMove'] = options.allowedToMove | false; - this.options.nodes['parseColor'] = options.parseColor | false; - this.options.edges['inheritColor'] = options.inheritColor | true; - } - - 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); - } - - 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); - } - - return {nodes:nodes, edges:edges}; - } - - exports.parseGephi = parseGephi; - -/***/ }, -/* 46 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); /** - * @class Groups - * This class can store groups and properties specific for groups. + * @module hammer */ - function Groups() { - this.clear(); - this.defaultIndex = 0; - } - /** - * default constants for group colors + * 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} */ - 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 - ]; + Hammer.Instance = function(element, options) { + var self = this; + // setup HammerJS window events and register all gestures + // this also sets up the default options + setup(); - /** - * 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; - } - }; + /** + * @property element + * @type {HTMLElement} + */ + this.element = element; + /** + * @property enabled + * @type {Boolean} + * @protected + */ + this.enabled = true; - /** - * 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 - */ - 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; - } + /** + * 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; + }); - return group; - }; + this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); - /** - * 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; + // 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); + } + + /** + * 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 = []; }; - module.exports = Groups; + 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; -/***/ }, -/* 47 */ -/***/ function(module, exports, __webpack_require__) { + 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; + }, - /** - * @class Images - * This class loads images and keeps them stored. - */ - function Images() { - this.images = {}; + /** + * trigger gesture event + * @method trigger + * @chainable + * @param {String} gesture + * @param {Object} [eventData] + */ + trigger: function triggerEvent(gesture, eventData) { + // optional + if(!eventData) { + eventData = {}; + } - this.callback = undefined; - } + // create DOM event + var event = Hammer.DOCUMENT.createEvent('Event'); + event.initEvent(gesture, true, true); + event.gesture = eventData; - /** - * 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; - }; + // 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; + } - /** - * - * @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; - } - - return img; - }; - - module.exports = Images; - - -/***/ }, -/* 48 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - - /** - * @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; - - this.selected = false; - this.hover = false; - - this.edges = []; // all edges connected to this node - this.dynamicEdges = []; - this.reroutedEdges = {}; - - this.fontDrawThreshold = 3; + element.dispatchEvent(event); + return this; + }, - // 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; + /** + * enable of disable hammer.js detection + * @method enable + * @chainable + * @param {Boolean} state + */ + enable: function enable(state) { + this.enabled = state; + return this; + }, + /** + * dispose this hammer instance + * @method dispose + * @return {Null} + */ + dispose: function dispose() { + var i, eh; - this.imagelist = imagelist; - this.grouplist = grouplist; + // undo all changes made by stop_browser_behavior + Utils.toggleBehavior(this.element, this.options.behavior, 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}; + // unbind all custom event handlers + for(i = -1; (eh = this.eventHandlers[++i]);) { + Utils.off(this.element, eh.gesture, eh.handler); + } + this.eventHandlers = []; - this.setProperties(properties, constants); + // unbind the start event listener + Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); - // 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; + return null; + } + }; - // 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; - } /** - * (re)setting the clustering variables and objects + * @module gestures */ - 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 = []; - }; - /** - * Attach a edge to the node - * @param {Edge} edge + * 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 */ - 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; - }; - /** - * Detach a edge from the node - * @param {Edge} edge + * @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 */ - 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; - }; - /** - * Set or overwrite properties for the node - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties + * @param {String} name */ - Node.prototype.setProperties = function(properties, constants) { - if (!properties) { - return; - } + (function(name) { + var triggered = false; - var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', - 'fontSize','fontFace','group','mass' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + function dragGesture(ev, inst) { + var cur = Detection.current; - 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;} + // max touches + if(inst.options.dragMaxTouches > 0 && + ev.touches.length > inst.options.dragMaxTouches) { + return; + } - // 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;} + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - if (this.id === undefined) { - throw "Node must have an id"; - } + 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; + } - // 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]; - } - } - } + var startCenter = cur.startEvent.center; + // 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; - // individual shape properties - if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} - if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} + // recalculate event data using new start point + ev = Detection.extendEventData(ev); + } + } - if (this.options.image!== undefined && this.options.image!= "") { - if (this.imagelist) { - this.imageObj = this.imagelist.load(this.options.image); - } - else { - throw "No imagelist provided"; + // lock drag to axis? + if(cur.lastEvent.dragLockToAxis || + ( inst.options.dragLockToAxis && + inst.options.dragLockMinDistance <= ev.distance + )) { + ev.dragLockToAxis = true; + } + + // 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; + } + } + + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } + + // trigger events + inst.trigger(name, ev); + inst.trigger(name + ev.direction, ev); + + var isVertical = Utils.isVertical(ev.direction); + + // 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.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); - this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); - this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); + 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, - if (this.options.shape == 'image') { - this.options.radiusMin = constants.nodes.widthMin; - this.options.radiusMax = constants.nodes.widthMax; - } + /** + * 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, + /** + * set 0 for unlimited, but this can conflict with transform + * @property dragMaxTouches + * @type {Number} + * @default 1 + */ + dragMaxTouches: 1, - // 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(); - }; + /** + * 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, + + /** + * same as `dragBlockHorizontal`, but for vertical movement + * @property dragBlockVertical + * @type {Boolean} + * @default false + */ + dragBlockVertical: false, + + /** + * 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'); /** - * select this node + * @module gestures */ - Node.prototype.select = function() { - this.selected = true; - this._reset(); - }; - /** - * unselect this node + * trigger a simple gesture event, so you can do anything in your handler. + * only usable if you know what your doing... + * + * @class Gesture + * @static */ - Node.prototype.unselect = function() { - this.selected = false; - this._reset(); - }; - - /** - * Reset the calculated size of the node, forces it to recalculate its size + * @event gesture + * @param {Object} ev */ - Node.prototype.clearSizeCache = function() { - this._reset(); + Hammer.gestures.Gesture = { + name: 'gesture', + index: 1337, + handler: function releaseGesture(ev, inst) { + inst.trigger(this.name, ev); + } }; /** - * Reset the calculated size of the node, forces it to recalculate its size - * @private + * @module gestures */ - Node.prototype._reset = function() { - this.width = undefined; - this.height = undefined; - }; - /** - * get the title of this node. - * @return {string} title The title of the node, or undefined when no title - * has been set. + * Touch stays at the same place for x time + * + * @class Hold + * @static */ - Node.prototype.getTitle = function() { - return typeof this.title === "function" ? this.title() : this.title; - }; - /** - * 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 + * @event hold + * @param {Object} ev */ - Node.prototype.distanceToBorder = function (ctx, angle) { - var borderWidth = 1; - if (!this.width) { - this.resize(ctx); - } + /** + * @param {String} name + */ + (function(name) { + var timer; - switch (this.options.shape) { - case 'circle': - case 'dot': - return this.options.radius+ borderWidth; + function holdGesture(ev, inst) { + var options = inst.options, + current = Detection.current; - 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); + switch(ev.eventType) { + case EVENT_START: + clearTimeout(timer); - // TODO: implement distanceToBorder for database - // TODO: implement distanceToBorder for triangle - // TODO: implement distanceToBorder for triangleDown + // set the gesture so we can check in the timeout if it still is + current.name = name; - 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; - } - - } - // 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; - }; - - /** - * 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; - }; + // 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; - /** - * 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 - } + case EVENT_MOVE: + if(ev.distance > options.holdThreshold) { + clearTimeout(timer); + } + break; - 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 - } - }; + case EVENT_RELEASE: + clearTimeout(timer); + break; + } + } + Hammer.gestures.Hold = { + name: name, + index: 10, + defaults: { + /** + * @property holdTimeout + * @type {Number} + * @default 500 + */ + holdTimeout: 500, + /** + * movement allowed while holding + * @property holdThreshold + * @type {Number} + * @default 2 + */ + holdThreshold: 2 + }, + handler: holdGesture + }; + })('hold'); /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds - * @param {number} maxVelocity The speed limit imposed on the velocity + * @module gestures */ - 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; - } - }; - /** - * Check if this node has a fixed x and y position - * @return {boolean} true if fixed, false if not + * when a touch is being released from the page + * + * @class Release + * @static */ - Node.prototype.isFixed = function() { - return (this.xFixed && this.yFixed); - }; - /** - * 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 + * @event release + * @param {Object} ev */ - 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); + Hammer.gestures.Release = { + name: 'release', + index: Infinity, + handler: function releaseGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + inst.trigger(this.name, ev); + } + } }; /** - * check if this node is selecte - * @return {boolean} selected True if node is selected, else false + * @module gestures */ - Node.prototype.isSelected = function() { - return this.selected; - }; - /** - * Retrieve the value of the node. Can be undefined - * @return {Number} value + * 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 */ - Node.prototype.getValue = function() { - return this.value; - }; - /** - * Calculate the distance from the nodes location to the given location (x,y) - * @param {Number} x - * @param {Number} y - * @return {Number} value + * @event swipe + * @param {Object} ev */ - Node.prototype.getDistance = function(x, y) { - var dx = this.x - x, - dy = this.y - y; - return Math.sqrt(dx * dx + dy * dy); - }; - - /** - * Adjust the value range of the node. The node will adjust it's radius - * based on its value. - * @param {Number} min - * @param {Number} max + * @event swipeleft + * @param {Object} ev */ - 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; - }; - /** - * Draw this node in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * @event swiperight + * @param {Object} ev */ - Node.prototype.draw = function(ctx) { - throw "Draw method not initialized for node"; - }; - /** - * 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 + * @event swipeup + * @param {Object} ev */ - Node.prototype.resize = function(ctx) { - throw "Resize method not initialized for node"; - }; - /** - * 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 + * @event swipedown + * @param {Object} ev */ - 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); - }; + Hammer.gestures.Swipe = { + name: 'swipe', + index: 40, + defaults: { + /** + * @property swipeMinTouches + * @type {Number} + * @default 1 + */ + swipeMinTouches: 1, - Node.prototype._resizeImage = function (ctx) { - // TODO: pre calculate the image size + /** + * @property swipeMaxTouches + * @type {Number} + * @default 1 + */ + swipeMaxTouches: 1, - 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; - } - } - - }; + /** + * horizontal swipe velocity + * @property swipeVelocityX + * @type {Number} + * @default 0.6 + */ + swipeVelocityX: 0.6, - Node.prototype._drawImage = function (ctx) { - this._resizeImage(ctx); + /** + * vertical swipe velocity + * @property swipeVelocityY + * @type {Number} + * @default 0.6 + */ + swipeVelocityY: 0.6 + }, - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + handler: function swipeGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + var touches = ev.touches.length, + options = inst.options; - 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); + // max touches + if(touches < options.swipeMinTouches || + touches > options.swipeMaxTouches) { + return; + } - ctx.globalAlpha = 0.5; - ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); + // 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); + } + } } - - // 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"); }; + /** + * @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._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; + /** + * @param {String} name + */ + (function(name) { + var hasMoved = false; - } - }; + function tapGesture(ev, inst) { + var options = inst.options, + current = Detection.current, + prev = Detection.previous, + sincePrev, + didDoubleTap; - Node.prototype._drawBox = function (ctx) { - this._resizeBox(ctx); + switch(ev.eventType) { + case EVENT_START: + hasMoved = false; + break; - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + case EVENT_MOVE: + hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); + break; - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + 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; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // check if double tap + if(prev && prev.name == name && + (sincePrev && sincePrev < options.doubleTapInterval) && + ev.distance < options.doubleTapDistance) { + inst.trigger('doubletap', ev); + didDoubleTap = 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); + // do a single tap + if(!didDoubleTap || options.tapAlways) { + current.name = name; + inst.trigger(current.name, ev); + } + } + break; + } + } - 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); + 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, - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; + /** + * max distance of movement of a tap, this is for the slow tappers + * @property tapMaxDistance + * @type {Number} + * @default 10 + */ + tapMaxDistance: 10, - ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); - ctx.fill(); - ctx.stroke(); + /** + * always trigger the `tap` event, even while double-tapping + * @property tapAlways + * @type {Boolean} + * @default true + */ + tapAlways: true, - this._label(ctx, this.label, this.x, this.y); - }; + /** + * 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'); - 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; + /** + * @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, - // 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; - } - }; + /** + * 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._drawDatabase = function (ctx) { - this._resizeDatabase(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + if(inst.options.preventDefault) { + ev.preventDefault(); + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + if(ev.eventType == EVENT_TOUCH) { + inst.trigger('touch', ev); + } + } + }; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + /** + * @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. + * + * @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 + */ - // 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); + /** + * @param {String} name + */ + (function(name) { + var triggered = false; - 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); + function transformGesture(ev, inst) { + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - 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(); + case EVENT_MOVE: + // at least multitouch + if(ev.touches.length < 2) { + return; + } - this._label(ctx, this.label, this.x, this.y); - }; + var scaleThreshold = Math.abs(1 - ev.scale); + var rotationThreshold = Math.abs(ev.rotation); + // 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; + } - 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; + // we are transforming! + Detection.current.name = name; - this.width = diameter; - this.height = diameter; + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = 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; - } - }; + inst.trigger(name, ev); // basic transform event - Node.prototype._drawCircle = function (ctx) { - this._resizeCircle(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // trigger rotate event + if(rotationThreshold > inst.options.transformMinRotation) { + inst.trigger('rotate', ev); + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + // trigger pinch event + if(scaleThreshold > inst.options.transformMinScale) { + inst.trigger('pinch', ev); + inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); + } + break; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + case EVENT_RELEASE: + if(triggered && ev.changedLength < 2) { + inst.trigger(name + 'end', ev); + triggered = false; + } + 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.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, - 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); + /** + * rotation in degrees + * @property transformMinRotation + * @type {Number} + * @default 1 + */ + transformMinRotation: 1 + }, - 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(); + handler: transformGesture + }; + })('transform'); - this._label(ctx, this.label, this.x, this.y); - }; + /** + * @module hammer + */ - Node.prototype._resizeEllipse = function (ctx) { - if (!this.width) { - var textSize = this.getTextSize(ctx); + // 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; + } - this.width = textSize.width * 1.5; - this.height = textSize.height * 2; - if (this.width < this.height) { - this.width = this.height; - } - var defaultSize = this.width; + })(window); - // 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; - } - }; +/***/ }, +/* 50 */ +/***/ function(module, exports, __webpack_require__) { - Node.prototype._drawEllipse = function (ctx) { - this._resizeEllipse(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, module) {//! moment.js + //! version : 2.8.1 + //! authors : Tim Wood, Iskren Chernev, Moment.js contributors + //! license : MIT + //! momentjs.com - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + (function (undefined) { + /************************************ + Constants + ************************************/ - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + var moment, + VERSION = '2.8.1', + // the global-scope this is NOT the global object in Node.js + globalScope = typeof global !== 'undefined' ? global : this, + oldGlobalMoment, + round = Math.round, + i, - // 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(); - } - 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'); - }; - - Node.prototype._drawTriangle = function (ctx) { - this._drawShape(ctx, 'triangle'); - }; - - Node.prototype._drawTriangleDown = function (ctx) { - this._drawShape(ctx, 'triangleDown'); - }; - - Node.prototype._drawSquare = function (ctx) { - this._drawShape(ctx, 'square'); - }; - - Node.prototype._drawStar = function (ctx) { - this._drawShape(ctx, 'star'); - }; - - 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; - } - }; - - Node.prototype._drawShape = function (ctx, shape) { - this._resizeShape(ctx); - - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var radiusMultiplier = 2; + // internal storage for locale config files + locales = {}, - // 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; - } + // extra moment internal properties (plugins register props here) + momentProperties = [], - 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); + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), - 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); + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, - 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(); + // 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)$/, - if (this.label) { - this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); - } - }; + // 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, - 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; + // 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}/, - // 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); - } - }; + //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 - Node.prototype._drawText = function (ctx) { - this._resizeText(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + // 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._label(ctx, this.label, this.x, this.y); - }; + isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', + 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}/] + ], - 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"; + // 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/] + ], - 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); - } + // timezone chunker "+10:00" > ["10", "00"] or "-1530" > ["-15", "30"] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, - for (var i = 0; i < lineCount; i++) { - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; - } - } - }; + // 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 + }, + 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' + }, - Node.prototype.getTextSize = function(ctx) { - if (this.label !== undefined) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, - var lines = this.label.split('\n'), - height = (Number(this.options.fontSize) + 4) * lines.length, - width = 0; + // format function strings + formatFunctions = {}, - for (var i = 0, iMax = lines.length; i < iMax; i++) { - width = Math.max(width, ctx.measureText(lines[i]).width); - } + // default relative time thresholds + relativeTimeThresholds = { + s: 45, // seconds to minute + m: 45, // minutes to hour + h: 22, // hours to day + d: 26, // days to month + M: 11 // months to year + }, - return {"width": width, "height": height}; - } - else { - return {"width": 0, "height": 0}; - } - }; + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), - /** - * 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); - } - else { - return true; - } - }; + formatTokenFunctions = { + M : function () { + return this.month() + 1; + }, + MMM : function (format) { + return this.localeData().monthsShort(this, format); + }, + MMMM : function (format) { + return this.localeData().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.localeData().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.localeData().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.localeData().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.localeData().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.localeData().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(); + } + }, - /** - * 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); - }; + deprecations = {}, - /** - * 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; - }; + 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'); + } + } - /** - * 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; - }; + 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 + }; + } + function printMsg(msg) { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn("Deprecation warning: " + msg); + } + } + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (firstTime) { + printMsg(msg); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } - /** - * 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; - }; + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + printMsg(msg); + deprecations[name] = true; + } + } + function padToken(func, count) { + return function (a) { + return leftZeroFill(func.call(this, a), count); + }; + } + function ordinalizeToken(func, period) { + return function (a) { + return this.localeData().ordinal(func.call(this, a), period); + }; + } - /** - * Basic preservation of (kinectic) energy - * - * @param massBeforeClustering - */ - 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); - }; + 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); + + + /************************************ + Constructors + ************************************/ + + function Locale() { + } + + // Moment prototype object + function Moment(config, skipOverflow) { + if (skipOverflow !== false) { + checkOverflow(config); + } + copyConfig(this, config); + this._d = new Date(+config._d); + } + + // 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; + + this._data = {}; + + this._locale = moment.localeData(); + + this._bubble(); + } + + /************************************ + 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; + } + + function copyConfig(to, from) { + var i, prop, val; + + if (typeof from._isAMomentObject !== 'undefined') { + to._isAMomentObject = from._isAMomentObject; + } + if (typeof from._i !== 'undefined') { + to._i = from._i; + } + if (typeof from._f !== 'undefined') { + to._f = from._f; + } + if (typeof from._l !== 'undefined') { + to._l = from._l; + } + if (typeof from._strict !== 'undefined') { + to._strict = from._strict; + } + if (typeof from._tzm !== 'undefined') { + to._tzm = from._tzm; + } + if (typeof from._isUTC !== 'undefined') { + to._isUTC = from._isUTC; + } + if (typeof from._offset !== 'undefined') { + to._offset = from._offset; + } + if (typeof from._pf !== 'undefined') { + to._pf = from._pf; + } + if (typeof from._locale !== 'undefined') { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i in momentProperties) { + prop = momentProperties[i]; + val = from[prop]; + if (typeof val !== 'undefined') { + to[prop] = val; + } + } + } + + return to; + } + + 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; + + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } + + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; + } + + function momentsDifference(base, other) { + var res; + other = makeAs(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } + + // TODO: remove 'name' arg after deprecation is removed + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, "moment()." + name + "(period, number) is deprecated. Please use moment()." + name + "(number, period)."); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = moment.duration(val, period); + addOrSubtractDurationFromMoment(this, dur, direction); + return this; + }; + } + + 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); + } + } + + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } + + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; + } + + // 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; + } + + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; + } + return units; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (inputObject.hasOwnProperty(prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + function makeList(field) { + var count, setter; + + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } + + moment[field] = function (format, index) { + var i, getter, + method = moment._locale[field], + results = []; + + if (typeof format === 'number') { + index = format; + format = undefined; + } + + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment._locale, m, format || ''); + }; + + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; + } + + 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; + } + + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } + + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + + 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; + + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + m._pf.overflow = overflow; + } + } + + 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 (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; + } + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } + + // pick the locale 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 + function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + 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 null; + } + + function loadLocale(name) { + var oldLocale = null; + if (!locales[name] && hasModule) { + try { + oldLocale = moment.locale(); + !(function webpackMissingModule() { var e = new Error("Cannot find module \"./locale\""); e.code = 'MODULE_NOT_FOUND'; throw e; }()); + // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales + moment.locale(oldLocale); + } catch (e) { } + } + return locales[name]; + } + + // 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(); + } + + /************************************ + Locale + ************************************/ + + + extend(Locale.prototype, { + + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, + + _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + months : function (m) { + return this._months[m.month()]; + }, + + _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, + + monthsParse : function (monthName) { + var i, mom, regex; + + if (!this._monthsParse) { + this._monthsParse = []; + } + + 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()]; + }, + + _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, + + _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, + + weekdaysParse : function (weekdayName) { + var i, mom, regex; + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } + + 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'); + }, + + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? '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 (key, mom) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom) : output; + }, + + _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); + }, + + ordinal : function (number) { + return this._ordinal.replace('%d', number); + }, + _ordinal : '%d', + + preparse : function (string) { + return string; + }, + + postformat : function (string) { + return string; + }, + + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, + + _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; + } + }); + + /************************************ + Formatting + ************************************/ + + + 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; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + 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; + }; + } + + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } + + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } - module.exports = Node; + return format; + } -/***/ }, -/* 49 */ -/***/ function(module, exports, __webpack_require__) { + /************************************ + Parsing + ************************************/ - var util = __webpack_require__(1); - var Node = __webpack_require__(48); - /** - * @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']; + // 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 config._locale._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; + } + } + + 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]); + + return parts[0] === '+' ? -minutes : minutes; + } + + // 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; + } + 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 = config._locale.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); + } + 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 = config._locale.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 = config._locale.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.network = network; + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; - // 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; + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; - this.from = null; // a node - this.to = null; // a node - this.via = null; // a temp node + // 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 { + dow = config._locale._week.dow; + doy = config._locale._week.doy; - // 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 = []; + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); - this.connected = false; + 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); - this.widthFixed = false; - this.lengthFixed = false; + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } - this.setProperties(properties); + // 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; - this.controlNodesEnabled = false; - this.controlNodes = {from:null, to:null, positions:{}}; - this.connectedNode = null; - } + if (config._d) { + return; + } - /** - * 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; - } + currentDate = currentDateArray(config); - var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', - 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } - if (properties.from !== undefined) {this.fromId = properties.from;} - if (properties.to !== undefined) {this.toId = properties.to;} + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label;} + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } - 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;} + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } - // scale the arrow - if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + // 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]; + } - if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} + // 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]; + } - 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;} + 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); + } } - } - // A node is connected when it has a from and to node. - this.connect(); + function dateFromObject(config) { + var normalizedInput; - this.widthFixed = this.widthFixed || (properties.width !== undefined); - this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + if (config._d) { + return; + } - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; - // 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; - } - }; + dateFromConfig(config); + } - /** - * Connect an edge to its nodes - */ - Edge.prototype.connect = function () { - this.disconnect(); + 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()]; + } + } - this.from = this.network.nodes[this.fromId] || null; - this.to = this.network.nodes[this.toId] || null; - this.connected = (this.from && this.to); + // date from string and format string + function makeDateFromStringAndFormat(config) { + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } - 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); - } - } - }; + config._a = []; + config._pf.empty = true; - /** - * 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; - } + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; - this.connected = false; - }; + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + 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); + } + } - /** - * 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; - }; + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } + // 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; + } - /** - * Retrieve the value of the edge. Can be undefined - * @return {Number} value - */ - Edge.prototype.getValue = function() { - return this.value; - }; + dateFromConfig(config); + checkOverflow(config); + } - /** - * 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; - } - }; + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); + } - /** - * 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"; - }; + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } - /** - * 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; + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, - var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + scoreToBeat, + i, + currentScore; - return (dist < distMax); - } - else { - return false - } - }; + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; + } - 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 - }; - } + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); - if (this.selected == true) {return colorObj.highlight;} - else if (this.hover == true) {return colorObj.hover;} - else {return colorObj.color;} - } + if (!isValid(tempConfig)) { + continue; + } + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; - /** - * 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(); + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + tempConfig._pf.score = currentScore; - // 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); - } - } - 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 (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } - /** - * 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; + extend(config, bestMoment || tempConfig); } - } - }; - Edge.prototype._getViaCoordinates = function () { - var xVia = null; - var yVia = null; - var factor = this.options.smoothCurves.roundness; - var type = this.options.smoothCurves.type; + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); - 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 (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; } - } - 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; + + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); } - } - 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; + } + + function makeDateFromInput(config) { + var input = config._i, matched; + if (input === undefined) { + config._d = new Date(); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if ((matched = aspNetJsonRegex.exec(input)) !== null) { + 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 (typeof(input) === 'object') { + dateFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + moment.createFromInputFallback(config); } - else if (this.from.x > this.to.x) { - xVia = this.from.x - factor * dx; - yVia = this.from.y + factor * dx; + } + + 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); } - } - if (type == "discrete") { - yVia = dy < factor * dx ? this.from.y : yVia; - } + return date; } - } - 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; - } + + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; } - 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; + + function parseWeekday(input, locale) { + if (typeof input === 'string') { + if (!isNaN(input)) { + input = parseInt(input, 10); + } + else { + input = locale.weekdaysParse(input); + if (typeof input !== 'number') { + return null; + } + } + } + return input; } - } - else if (type == 'horizontal') { - if (this.from.x < this.to.x) { - xVia = this.to.x - (1-factor) * dx; + + /************************************ + Relative Time + ************************************/ + + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); } - else { - xVia = this.to.x + (1-factor) * dx; + + function relativeTime(posNegDuration, withoutSuffix, locale) { + var duration = moment.duration(posNegDuration).abs(), + seconds = round(duration.as('s')), + minutes = round(duration.as('m')), + hours = round(duration.as('h')), + days = round(duration.as('d')), + months = round(duration.as('M')), + years = round(duration.as('y')), + + 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.d && ['dd', days] || + months === 1 && ['M'] || + months < relativeTimeThresholds.M && ['MM', months] || + years === 1 && ['y'] || ['yy', years]; + + args[2] = withoutSuffix; + args[3] = +posNegDuration > 0; + args[4] = locale; + return substituteTimeAgo.apply({}, args); } - 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; + + + /************************************ + Week of Year + ************************************/ + + + // 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; + + + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } + + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } + + adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; } - else { - yVia = this.to.y + (1-factor) * dy; + + //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; + + 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; + + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; } - } - 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; + + /************************************ + Top Level Functions + ************************************/ + + function makeMoment(config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || moment.localeData(config._l); + + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); } - } - 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; + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); } - 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; + + if (moment.isMoment(input)) { + return new Moment(input, true); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); } - } + + return new Moment(config); } - 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; + + moment = function (input, format, locale, strict) { + var c; + + if (typeof(locale) === "boolean") { + strict = locale; + locale = undefined; } - 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; + // 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 = locale; + c._strict = strict; + c._isUTC = false; + c._pf = defaultParsingFlags(); + + return makeMoment(c); + }; + + moment.suppressDeprecationWarnings = false; + + 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); } - } - 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; + ); + + // 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]; } - 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; + 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; } - } + moment.min = function () { + var args = [].slice.call(arguments, 0); - return {x:xVia, y:yVia}; - } + return pickBy('isBefore', args); + }; - /** - * 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; - } - 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; - } - }; + moment.max = function () { + var args = [].slice.call(arguments, 0); - /** - * 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(); - }; + return pickBy('isAfter', args); + }; - /** - * 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; + // creating with utc + moment.utc = function (input, format, locale, strict) { + var c; - ctx.fillRect(left, top, width, height); + if (typeof(locale) === "boolean") { + strict = locale; + locale = 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 = locale; + c._i = input; + c._f = format; + c._strict = strict; + c._pf = defaultParsingFlags(); - // draw text - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = "left"; - ctx.textBaseline = "top"; - ctx.fillText(text, left, top); - } - }; + return makeMoment(c).utc(); + }; + + // 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, + diffRes; + + 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]) + }; + } else if (typeof duration === 'object' && + ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(moment(duration.from), moment(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } - /** - * 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;} + ret = new Duration(duration); - ctx.lineWidth = this._getLineWidth(); + if (moment.isDuration(input) && input.hasOwnProperty('_locale')) { + ret._locale = input._locale; + } - 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]; - } + return ret; + }; - // set dash settings for chrome or firefox - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash(pattern); - ctx.lineDashOffset = 0; + // version number + moment.version = VERSION; - } else { //Firefox - ctx.mozDash = pattern; - ctx.mozDashOffset = 0; - } + // default format + moment.defaultFormat = isoFormat; - // draw the line - via = this._line(ctx); + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; - // restore the dash settings. - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash([0]); - ctx.lineDashOffset = 0; + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; - } 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 function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + moment.updateOffset = function () {}; - // 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); - } - }; + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function (threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return relativeTimeThresholds[threshold]; + } + relativeTimeThresholds[threshold] = limit; + return true; + }; - /** - * 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 - } - }; + moment.lang = deprecate( + "moment.lang is deprecated. Use moment.locale instead.", + function (key, value) { + return moment.locale(key, value); + } + ); - /** - * 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) - } - }; + // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + moment.locale = function (key, values) { + var data; + if (key) { + if (typeof(values) !== "undefined") { + data = moment.defineLocale(key, values); + } + else { + data = moment.localeData(key); + } - /** - * 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(); + if (data) { + moment.duration._locale = moment._locale = data; + } + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + return moment._locale._abbr; + }; - 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); - } + moment.defineLocale = function (name, values) { + if (values !== null) { + values.abbr = name; + if (!locales[name]) { + locales[name] = new Locale(); + } + locales[name].set(values); - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + // backwards compat for now: also set the locale + moment.locale(name); - // 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); + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + }; - // 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(); + moment.langData = deprecate( + "moment.langData is deprecated. Use moment.localeData instead.", + function (key) { + return moment.localeData(key); + } + ); - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + // returns locale data + moment.localeData = function (key) { + var locale; + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + if (!key) { + return moment._locale; + } - /** - * 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;} + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } - ctx.lineWidth = this._getLineWidth(); + return chooseLocale(key); + }; - 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); + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && obj.hasOwnProperty('_isAMomentObject')); + }; - 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; + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; - 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(); + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); } - 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; + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; - 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; - } + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } - 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(); + return m; + }; - // 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(); + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; - // 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(); + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; - // 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(); + /************************************ + Moment Prototype + ************************************/ - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + extend(moment.fn = Moment.prototype, { + clone : function () { + return moment(this); + }, - /** - * 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); - } - }; + valueOf : function () { + return +this._d + ((this._offset || 0) * 60000); + }, + + unix : function () { + return Math.floor(+this / 1000); + }, + + toString : function () { + return this.clone().locale('en').format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ"); + }, + + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, + + 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]'); + } + }, - 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; + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, - if (u > 1) { - u = 1; - } - else if (u < 0) { - u = 0; - } + isValid : function () { + return isValid(this); + }, - var x = x1 + u * px, - y = y1 + u * py, - dx = x - x3, - dy = y - y3; + isDSTShifted : function () { + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } - //# 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 false; + }, - return Math.sqrt(dx*dx + dy*dy); - } + parsingFlags : function () { + return extend({}, this._pf); + }, - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Edge.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - }; + invalidAt: function () { + return this._pf.overflow; + }, + utc : function (keepLocalTime) { + return this.zone(0, keepLocalTime); + }, - Edge.prototype.select = function() { - this.selected = true; - }; + local : function (keepLocalTime) { + if (this._isUTC) { + this.zone(0, keepLocalTime); + this._isUTC = false; - Edge.prototype.unselect = function() { - this.selected = false; - }; + if (keepLocalTime) { + this.add(this._d.getTimezoneOffset(), 'm'); + } + } + return this; + }, - 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); - } - }; + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.localeData().postformat(output); + }, - /** - * 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 : createAdder(1, 'add'), - 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; - } + subtract : createAdder(-1, 'subtract'), - this.controlNodes.from.draw(ctx); - this.controlNodes.to.draw(ctx); - } - else { - this.controlNodes = {from:null, to:null, positions:{}}; - } - }; + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; - /** - * Enable control nodes. - * @private - */ - Edge.prototype._enableControlNodes = function() { - this.controlNodesEnabled = true; - }; + units = normalizeUnits(units); - /** - * disable control nodes - * @private - */ - Edge.prototype._disableControlNodes = function() { - this.controlNodesEnabled = false; - }; + 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); + }, - /** - * 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)); + from : function (time, withoutSuffix) { + return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + }, + + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, + + 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.localeData().calendar(format, this)); + }, + + isLeapYear : function () { + return isLeapYear(this.year()); + }, + + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, + + day : function (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + }, + + month : makeAccessor('Month', true), + + 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 */ + } - 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; - } - }; + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } - /** - * 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(); - } - }; + 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; + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + }, - 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(); - } + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, - 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; + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, - 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; - } + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, - return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; - }; + 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; + } + ), - module.exports = Edge; + 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; + } + ), -/***/ }, -/* 50 */ -/***/ function(module, exports, __webpack_require__) { + // keepLocalTime = 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, keepLocalTime) { + var offset = this._offset || 0, + localAdjust; + if (input != null) { + if (typeof input === 'string') { + input = timezoneMinutesFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = this._d.getTimezoneOffset(); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.subtract(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || 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; + }, - /** - * 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; - } + zoneAbbr : function () { + return this._isUTC ? 'UTC' : ''; + }, - // 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' - } - } - } - } + zoneName : function () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + }, - this.x = 0; - this.y = 0; - this.padding = 5; + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, - if (x !== undefined && y !== undefined ) { - this.setPosition(x, y); - } - if (text !== undefined) { - this.setText(text); - } + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } - // 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); - } + return (this.zone() - input) % 60 === 0; + }, + + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, + + dayOfYear : function (input) { + var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); + }, - /** - * @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); - }; + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, - /** - * Set the text for the popup window. This can be HTML code - * @param {string} text - */ - Popup.prototype.setText = function(text) { - this.frame.innerHTML = text; - }; + weekYear : function (input) { + var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; + return input == null ? year : this.add((input - year), 'y'); + }, - /** - * Show the popup window - * @param {boolean} show Optional. Show or hide the window - */ - Popup.prototype.show = function (show) { - if (show === undefined) { - show = true; - } + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + }, - if (show) { - var height = this.frame.clientHeight; - var width = this.frame.clientWidth; - var maxHeight = this.frame.parentNode.clientHeight; - var maxWidth = this.frame.parentNode.clientWidth; + week : function (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + }, - var top = (this.y - height); - if (top + height + this.padding > maxHeight) { - top = maxHeight - height - this.padding; - } - if (top < this.padding) { - top = this.padding; - } + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + }, - var left = this.x; - if (left + width + this.padding > maxWidth) { - left = maxWidth - width - this.padding; - } - if (left < this.padding) { - left = this.padding; - } + weekday : function (input) { + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + }, - this.frame.style.left = left + "px"; - this.frame.style.top = top + "px"; - this.frame.style.visibility = "visible"; - } - else { - this.hide(); - } - }; + 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); + }, - /** - * Hide the popup window - */ - Popup.prototype.hide = function () { - this.frame.style.visibility = "hidden"; - }; + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, - module.exports = Popup; + weeksInYear : function () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, -/***/ }, -/* 51 */ -/***/ function(module, exports, __webpack_require__) { + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, - var PhysicsMixin = __webpack_require__(52); - var ClusterMixin = __webpack_require__(56); - var SectorsMixin = __webpack_require__(57); - var SelectionMixin = __webpack_require__(58); - var ManipulationMixin = __webpack_require__(59); - var NavigationMixin = __webpack_require__(60); - var HierarchicalLayoutMixin = __webpack_require__(61); + // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + locale : function (key) { + if (key === undefined) { + return this._locale._abbr; + } else { + this._locale = moment.localeData(key); + return this; + } + }, - /** - * 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]; - } - } - }; + lang : deprecate( + "moment().lang() is deprecated. Use moment().localeData() instead.", + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + this._locale = moment.localeData(key); + return this; + } + } + ), + + localeData : function () { + return this._locale; + } + }); + function rawMonthSetter(mom, value) { + var dayOfMonth; - /** - * 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; + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.localeData().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; } - } - }; + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + } - /** - * Mixin the physics system and initialize the parameters required. - * - * @private - */ - exports._loadPhysicsSystem = function () { - this._loadMixin(PhysicsMixin); - this._loadSelectedForceSolver(); - if (this.constants.configurePhysics == true) { - this._loadPhysicsConfiguration(); - } - }; + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + 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); + } + }; + } - /** - * Mixin the cluster system and initialize the parameters required. - * - * @private - */ - exports._loadClusterSystem = function () { - this.clusterSession = 0; - this.hubThreshold = 5; - this._loadMixin(ClusterMixin); - }; + 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)); + // 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; - /** - * Mixin the sector system and initialize the parameters required - * - * @private - */ - 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 }; + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; - this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields + /************************************ + Duration Prototype + ************************************/ - this._loadMixin(SectorsMixin); - }; + function daysToYears (days) { + // 400 years have 146097 days (taking into account leap year rules) + return days * 400 / 146097; + } - /** - * Mixin the selection system and initialize the parameters required - * - * @private - */ - exports._loadSelectionSystem = function () { - this.selectionObj = {nodes: {}, edges: {}}; + function yearsToDays (years) { + // years * 365 + absRound(years / 4) - + // absRound(years / 100) + absRound(years / 400); + return years * 146097 / 400; + } - this._loadMixin(SelectionMixin); - }; + 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 = 0; - /** - * 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; + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; - 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); - } + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; - 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); - } + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; - 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); - } + hours = absRound(minutes / 60); + data.hours = hours % 24; - // load the manipulation functions - this._loadMixin(ManipulationMixin); + days += absRound(hours / 24); - // 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); + // Accurately convert days to years, assume start from year 0. + years = absRound(daysToYears(days)); + days -= absRound(yearsToDays(years)); - this.manipulationDiv = undefined; - this.editModeDiv = undefined; - this.closeDiv = undefined; - // remove the mixin functions - this._clearMixin(ManipulationMixin); - } - } - }; + // 30 days to a month + // TODO (iskren): Use anchor date (like 1st Jan) to compute this. + months += absRound(days / 30); + days %= 30; + // 12 months -> 1 year + years += absRound(months / 12); + months %= 12; - /** - * Mixin the navigation (User Interface) system and initialize the parameters required - * - * @private - */ - exports._loadNavigationControls = function () { - this._loadMixin(NavigationMixin); + data.days = days; + data.months = months; + data.years = years; + }, - // the clean function removes the button divs, this is done to remove the bindings. - this._cleanNavigation(); - if (this.constants.navigation.enabled == true) { - this._loadNavigationElements(); - } - }; + abs : function () { + this._milliseconds = Math.abs(this._milliseconds); + this._days = Math.abs(this._days); + this._months = Math.abs(this._months); + this._data.milliseconds = Math.abs(this._data.milliseconds); + this._data.seconds = Math.abs(this._data.seconds); + this._data.minutes = Math.abs(this._data.minutes); + this._data.hours = Math.abs(this._data.hours); + this._data.months = Math.abs(this._data.months); + this._data.years = Math.abs(this._data.years); - /** - * Mixin the hierarchical layout system. - * - * @private - */ - exports._loadHierarchySystem = function () { - this._loadMixin(HierarchicalLayoutMixin); - }; + return this; + }, + weeks : function () { + return absRound(this.days() / 7); + }, -/***/ }, -/* 52 */ -/***/ function(module, exports, __webpack_require__) { + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, - var util = __webpack_require__(1); - var RepulsionMixin = __webpack_require__(53); - var HierarchialRepulsionMixin = __webpack_require__(54); - var BarnesHutMixin = __webpack_require__(55); + humanize : function (withSuffix) { + var output = relativeTime(this, !withSuffix, this.localeData()); - /** - * Toggling barnes Hut calculation on and off. - * - * @private - */ - exports._toggleBarnesHut = function () { - this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; - this._loadSelectedForceSolver(); - this.moving = true; - this.start(); - }; + if (withSuffix) { + output = this.localeData().pastFuture(+this, output); + } + return this.localeData().postformat(output); + }, - /** - * 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); + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); - 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._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; - this._loadMixin(BarnesHutMixin); - } - else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._clearMixin(BarnesHutMixin); - this._clearMixin(RepulsionMixin); + this._bubble(); - 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; + return this; + }, - this._loadMixin(HierarchialRepulsionMixin); - } - else { - this._clearMixin(BarnesHutMixin); - this._clearMixin(HierarchialRepulsionMixin); - this.barnesHutTree = undefined; + subtract : function (input, val) { + var dur = moment.duration(input, val); - 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._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; - this._loadMixin(RepulsionMixin); - } - }; + this._bubble(); - /** - * 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._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); - } + return this; + }, + + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, - // we now start the force calculation - this._calculateForces(); - } - }; + as : function (units) { + var days, months; + units = normalizeUnits(units); + days = this._days + this._milliseconds / 864e5; + if (units === 'month' || units === 'year') { + months = this._months + daysToYears(days) * 12; + return units === 'month' ? months : months / 12; + } else { + days += yearsToDays(this._months / 12); + switch (units) { + case 'week': return days / 7; + case 'day': return days; + case 'hour': return days * 24; + case 'minute': return days * 24 * 60; + case 'second': return days * 24 * 60 * 60; + case 'millisecond': return days * 24 * 60 * 60 * 1000; + default: throw new Error('Unknown unit ' + units); + } + } + }, - /** - * Calculate the external forces acting on the nodes - * Forces are caused by: edges, repulsing forces between nodes, gravity - * @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 + lang : moment.fn.lang, + locale : moment.fn.locale, - this._calculateGravitationalForces(); - this._calculateNodeForces(); + toIsoString : deprecate( + "toIsoString() is deprecated. Please use toISOString() instead " + + "(notice the capitals)", + function () { + return this.toISOString(); + } + ), - 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(); - } - } - } - }; + 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.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } - /** - * 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. - * - * @private - */ - exports._updateCalculationNodes = function () { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this.calculationNodes = {}; - this.calculationNodeIndices = []; + 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' : ''); + }, - 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); + localeData : function () { + return this._locale; } - } + }); + + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; } - for (var idx in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(idx)) { - this.calculationNodeIndices.push(idx); - } + for (i in unitMillisecondFactors) { + if (unitMillisecondFactors.hasOwnProperty(i)) { + makeDurationGetter(i.toLowerCase()); + } } - } - else { - this.calculationNodes = this.nodes; - this.calculationNodeIndices = this.nodeIndices; - } - }; + moment.duration.fn.asMilliseconds = function () { + return this.as('ms'); + }; + moment.duration.fn.asSeconds = function () { + return this.as('s'); + }; + moment.duration.fn.asMinutes = function () { + return this.as('m'); + }; + moment.duration.fn.asHours = function () { + return this.as('h'); + }; + moment.duration.fn.asDays = function () { + return this.as('d'); + }; + moment.duration.fn.asWeeks = function () { + return this.as('weeks'); + }; + moment.duration.fn.asMonths = function () { + return this.as('M'); + }; + moment.duration.fn.asYears = function () { + return this.as('y'); + }; - /** - * this function applies the central gravity effect to keep groups from floating off - * - * @private - */ - exports._calculateGravitationalForces = function () { - var dx, dy, distance, node, i; - var nodes = this.calculationNodes; - var gravity = this.constants.physics.centralGravity; - var gravityForce = 0; + /************************************ + Default Locale + ************************************/ - 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; + // Set default locale, other locale will inherit from English. + moment.locale('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; + } + }); + + /* EMBED_LOCALES */ + + /************************************ + Exposing Moment + ************************************/ + + 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; + } } - } - }; + // 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__(63)(module))) +/***/ }, +/* 51 */ +/***/ function(module, exports, __webpack_require__) { /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * Copyright 2012 Craig Campbell * - * @private + * 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 */ - 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; + /** + * 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' + }, - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); + /** + * 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: '\'' + }, - if (distance == 0) { - distance = 0.01; - } + /** + * 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', + '_': '-', + '+': '=', + ':': ';', + '\"': '\'', + '<': ',', + '>': '.', + '?': '/', + '|': '\\' + }, - // 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 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' + }, - fx = dx * springForce; - fy = dy * springForce; + /** + * 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, - edge.from.fx += fx; - edge.from.fy += fy; - edge.to.fx -= fx; - edge.to.fy -= fy; - } - } - } - } - }; + /** + * a list of all the callbacks setup via Mousetrap.bind() + * + * @type {Object} + */ + _callbacks = {}, + /** + * direct map of string combinations to callbacks used for trigger() + * + * @type {Object} + */ + _direct_map = {}, + /** + * keeps track of what level each sequence is at since multiple + * sequences can start out with the same sequence + * + * @type {Object} + */ + _sequence_levels = {}, + /** + * variable to store the setTimeout call + * + * @type {null|number} + */ + _reset_timer, - /** - * 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; + /** + * temporary state where we will ignore the next keyup + * + * @type {boolean|string} + */ + _ignore_next_keyup = false, - // 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; + /** + * are we currently inside of a sequence? + * type of action ("keyup" or "keydown" or "keypress") or false + * + * @type {boolean|string} + */ + _inside_sequence = false; - edgeLength = edge.physics.springLength; + /** + * 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; + } - combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; + /** + * loop through to map numbers on the numeric keypad + */ + for (i = 0; i <= 9; ++i) { + _MAP[i + 96] = i; + } - // 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); - } - } + /** + * 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); } - } + + object.attachEvent('on' + type, callback); } - }; + /** + * takes the event and returns the key character + * + * @param {Event} e + * @return {string} + */ + function _characterFromEvent(e) { - /** - * 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 - */ - exports._calculateSpringForce = function (node1, node2, edgeLength) { - var dx, dy, fx, fy, springForce, distance; + // for keypress events we should return the character as is + if (e.type == 'keypress') { + return String.fromCharCode(e.which); + } - dx = (node1.x - node2.x); - dy = (node1.y - node2.y); - distance = Math.sqrt(dx * dx + dy * dy); + // for non keypress events the special maps are needed + if (_MAP[e.which]) { + return _MAP[e.which]; + } - if (distance == 0) { - distance = 0.01; + if (_KEYCODE_MAP[e.which]) { + return _KEYCODE_MAP[e.which]; + } + + // if it is not in the special map + return String.fromCharCode(e.which).toLowerCase(); } - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + /** + * 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; - fx = dx * springForce; - fy = dy * springForce; + // if the element has the class "mousetrap" then no need to stop + if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { + return false; + } - node1.fx += fx; - node1.fy += fy; - node2.fx -= fx; - node2.fy -= fy; - }; + // stop for input, select, and textarea + return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); + } + /** + * 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(','); + } - /** - * Load the HTML for the physics config and bind it - * @private - */ - exports._loadPhysicsConfiguration = function () { - if (this.physicsConfiguration === undefined) { - this.backupConstants = {}; - util.deepExtend(this.backupConstants,this.constants); + /** + * 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 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 active_sequences = false, + key; - 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"); + for (key in _sequence_levels) { + if (do_not_reset[key]) { + active_sequences = true; + continue; + } + _sequence_levels[key] = 0; + } - 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"); + if (!active_sequences) { + _inside_sequence = false; + } + } - 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"); + /** + * 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 = []; - 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; - } + // if there are no events related to this keycode + if (!_callbacks[character]) { + return []; + } - var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); - var graph_repositionNodes = document.getElementById("graph_repositionNodes"); - var graph_generateOptions = document.getElementById("graph_generateOptions"); + // if a modifier key is coming up on its own we should allow it + if (action == 'keyup' && _isModifier(character)) { + modifiers = [character]; + } - 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"; - } + // 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; + } - switchConfigurations.apply(this); + // 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)) { - radioButton1.onchange = switchConfigurations.bind(this); - radioButton2.onchange = switchConfigurations.bind(this); - radioButton3.onchange = switchConfigurations.bind(this); - } - }; + // 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); + } - /** - * This overwrites the this.constants. - * - * @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; + matches.push(callback); + } + } + + return matches; } - }; + /** + * takes a key event and figures out what the modifiers are + * + * @param {Event} e + * @returns {Array} + */ + function _eventModifiers(e) { + var modifiers = []; - /** - * 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";} + if (e.shiftKey) { + modifiers.push('shift'); + } - this._configureSmoothCurves(false); - } + if (e.altKey) { + modifiers.push('alt'); + } - /** - * this function is used to scramble the nodes - * - */ - 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(); - } + if (e.ctrlKey) { + modifiers.push('ctrl'); + } - /** - * this is used to generate an options file from the playing with physics system. - */ - 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 += ", " - } + if (e.metaKey) { + modifiers.push('meta'); } - 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 += '};' - } + + return modifiers; } - 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 += ", " - } + + /** + * 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(); + } + + e.returnValue = false; + e.cancelBubble = true; } - options += '}}' - } - 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 += ", "; - } + + /** + * handles a character key event + * + * @param {string} character + * @param {Event} e + * @returns void + */ + function _handleCharacter(character, e) { + + // if this event should not happen stop here + if (_stop(e)) { + return; } - 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 += ", " - } + + var callbacks = _getMatches(character, _eventModifiers(e), e.type), + i, + do_not_reset = {}, + processed_sequence_callback = false; + + // loop through matching callbacks for this key event + for (i = 0; i < callbacks.length; ++i) { + + // 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; + + // keep a list of which sequences were matches for later + do_not_reset[callbacks[i].seq] = 1; + _fireCallback(callbacks[i].callback, e); + continue; + } + + // 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); + } + } + + // 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); } - options += '}' - } - else { - options += "enabled:true}"; - } - options += '};' } + /** + * handles a keydown event + * + * @param {Event} e + * @returns void + */ + function _handleKey(e) { - this.optionsDiv.innerHTML = options; - } + // 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; - /** - * this is used to switch between barnesHut, repulsion and hierarchical. - * - */ - 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"; - } - } - this._restoreNodes(); - if (radioButton == "R") { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = false; + var character = _characterFromEvent(e); + + // no character found then stop + if (!character) { + return; + } + + if (e.type == 'keyup' && _ignore_next_keyup == character) { + _ignore_next_keyup = false; + return; + } + + _handleCharacter(character, e); } - 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(); - } + + /** + * 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'; } - else { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = true; + + /** + * 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); } - 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(); - } + /** + * 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) { - /** - * this generates the ranges depending on the iniital values. - * - * @param id - * @param map - * @param constantsVariableName - */ - function showValueOfRange (id,map,constantsVariableName) { - var valueId = id + "_value"; - var rangeValue = document.getElementById(id).value; + // 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 instanceof Array) { - document.getElementById(valueId).value = map[parseInt(rangeValue)]; - this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); + if (_MAP.hasOwnProperty(key)) { + _REVERSE_MAP[_MAP[key]] = key; + } + } + } + return _REVERSE_MAP; } - else { - document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); - this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); + + /** + * 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) { + + // 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'; + } + + // modifier keys don't work as expected with keypress, + // switch to keydown + if (action == 'keypress' && modifiers.length) { + action = 'keydown'; + } + + return action; } - if (constantsVariableName == "hierarchicalLayout_direction" || - constantsVariableName == "hierarchicalLayout_levelSeparation" || - constantsVariableName == "hierarchicalLayout_nodeSpacing") { - this._setupHierarchicalLayout(); + /** + * 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) { + + // start off by adding a sequence level record for this combination + // and setting the level to 0 + _sequence_levels[combo] = 0; + + // if there is no action pick the best one for the first key + // in the sequence + if (!action) { + action = _pickBestAction(keys[0], []); + } + + /** + * 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(); + }, + + /** + * 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); + + // 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); + } } - this.moving = true; - this.start(); - } + /** + * 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, ' '); + + var sequence = combination.split(' '), + i, + key, + keys, + modifiers = []; + + // 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); + } + + // take the keys from this pattern and figure out what the actual + // pattern is all about + keys = combination === '+' ? ['+'] : combination.split('+'); + + for (i = 0; i < keys.length; ++i) { + key = keys[i]; + + // normalize key names + if (_SPECIAL_ALIASES[key]) { + key = _SPECIAL_ALIASES[key]; + } + + // 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'); + } -/***/ }, -/* 53 */ -/***/ function(module, exports, __webpack_require__) { + // if this key is a modifier then add it to the list of modifiers + if (_isModifier(key)) { + modifiers.push(key); + } + } - /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. - * - * @private - */ - exports._calculateNodeForces = function () { - var dx, dy, angle, distance, fx, fy, combinedClusterSize, - repulsingForce, node1, node2, i, j; + // depending on what the key combination is + // we will try to pick the best event for it + action = _pickBestAction(key, modifiers, action); - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; + // make sure to initialize array if this is the first time + // a callback is added for this key + if (!_callbacks[key]) { + _callbacks[key] = []; + } - // approximation constants - var a_base = -2 / 3; - var b = 4 / 3; + // remove an existing match if there is one + _getMatches(key, modifiers, action, !sequence_name, combination); - // repulsing forces between nodes - var nodeDistance = this.constants.physics.repulsion.nodeDistance; - var minimumDistance = nodeDistance; + // 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 + }); + } - // 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; + /** + * 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); + } + } - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + // start! + _addEvent(document, 'keypress', _handleKey); + _addEvent(document, 'keydown', _handleKey); + _addEvent(document, 'keyup', _handleKey); - 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)) - } + var mousetrap = { - // amplify the repulsion for clusters. - repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; - repulsingForce = repulsingForce / distance; + /** + * 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; + }, - fx = dx * repulsingForce; - fy = dy * repulsingForce; + /** + * 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; + }, - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; + /** + * 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; + }, + + /** + * 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; } - } - } - }; + }; + + module.exports = mousetrap; + /***/ }, -/* 54 */ +/* 52 */ /***/ function(module, exports, __webpack_require__) { /** - * Calculate the forces the nodes apply on eachother based on a repulsion field. - * This field is linearly approximated. + * Creation of the ClusterMixin var. * - * @private + * This contains all the functions the Network object can use to employ clustering */ - 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) { + /** + * 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); - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + // 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(); + }; - 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 function clusters until the initialMaxNodes has been reached + * + * @param {Number} maxNumberOfNodes + * @param {Boolean} reposition + */ + exports.clusterToFit = function(maxNumberOfNodes, reposition) { + var numberOfNodes = this.nodeIndices.length; - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; - } + 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 } + + numberOfNodes = this.nodeIndices.length; + level += 1; } - }; + // after the clustering we reposition the nodes to reduce the initial chaos + if (level > 0 && reposition == true) { + this.repositionNodes(); + } + this._updateCalculationNodes(); + }; /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * This function can be called to open up a specific cluster. It is only called by + * It will unpack the cluster back one level. * - * @private + * @param node | Node object: cluster to open. */ - exports._calculateHierarchicalSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; + 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; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; + // 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); - for (var i = 0; i < nodeIndices.length; i++) { - var node1 = nodes[nodeIndices[i]]; - node1.springFx = 0; - node1.springFy = 0; + // 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(); + } + }; - // 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 calls the updateClustes with default arguments + */ + exports.updateClustersDefault = function() { + if (this.constants.clustering.enabled == true) { + this.updateClusters(0,false,false); + } + }; - 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; + /** + * 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.increaseClusterLevel = function() { + this.updateClusters(-1,false,true); + }; - fx = dx * springForce; - fy = dy * springForce; + /** + * 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.decreaseClusterLevel = function() { + this.updateClusters(1,false,true); + }; - 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; - } - } - } + /** + * 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 + * + */ + 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(); + } + + // 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(); - // 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)); + // 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(); + } - node.fx += springFx; - node.fy += springFy; + // we now reduce chains. + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + this.handleChains(); + this._updateNodeIndexList(); } - // 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; + 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(); } - 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; + 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(); }; -/***/ }, -/* 55 */ -/***/ function(module, exports, __webpack_require__) { + /** + * This function handles the chains. It is called on every updateClusters(). + */ + 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) + + } + }; /** - * 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 functions starts clustering by hubs + * The minimum hub threshold is set globally * * @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._aggregateHubs = function(force) { + this._getHubSize(); + this._formClustersByHub(force,false); + }; - this._formBarnesHutTree(nodes,nodeIndices); - var barnesHutTree = this.barnesHutTree; + /** + * This function is fired by keypress. It forces hubs to form. + * + */ + exports.forceAggregateHubs = function(doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.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); - } + this._aggregateHubs(true); + + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this.updateLabels(); + + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; + } + + 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 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. + * If a cluster takes up more than a set percentage of the screen, open the cluster * - * @param parentBranch - * @param node * @private */ - 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; - } - 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; + 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); } } } } }; + /** - * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * 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 nodes - * @param nodeIndices * @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; - - // 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; } - } + 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(); } - // 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 + /** + * 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 {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; } - }; - this._splitBranch(barnesHutTree.root); + recursive = openAll ? true : recursive; - // 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); + // 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]; + + // 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); + } + } + } + } } } - - // make global - this.barnesHutTree = barnesHutTree }; - /** - * this updates the mass of a branch. this is increased by adding a node. + * ONLY CALLED FROM _expandClusterNode * - * @param parentBranch - * @param node + * 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._updateBranchMass = function(parentBranch, node) { - var totalMass = parentBranch.mass + node.options.mass; - var totalMassInv = 1/totalMass; + exports._expelChildFromParent = function(parentNode, containedNodeId, recursive, force, openAll) { + var childNode = parentNode.containedNodes[containedNodeId]; - parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; - parentBranch.centerOfMass.x *= totalMassInv; + // 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(); - parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; - parentBranch.centerOfMass.y *= totalMassInv; + // put the child node back in the global nodes object + this.nodes[containedNodeId] = childNode; - parentBranch.mass = totalMass; - var biggestSize = Math.max(Math.max(node.height,node.radius),node.width); - parentBranch.maxWidth = (parentBranch.maxWidth < biggestSize) ? biggestSize : parentBranch.maxWidth; + // release the contained edges from this childNode back into the global edges + this._releaseContainedEdges(parentNode,childNode); - }; + // reconnect rerouted edges to the childNode + this._connectEdgeBackToChild(parentNode,childNode); + // validate all edges in dynamicEdges + this._validateEdges(parentNode); - /** - * determine in which branch the node will be placed. - * - * @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); - } + // 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; - 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"); - } - } - else { // in NE or SE - if (parentBranch.children.NW.range.maxY > node.y) { // in NE - this._placeInRegion(parentBranch,node,"NE"); + // 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; + } + } } - else { // in SE - this._placeInRegion(parentBranch,node,"SE"); + // if there are no others, remove the cluster session from the list + if (othersPresent == false) { + parentNode.clusterSessions.pop(); } - } - }; + this._repositionBezierNodes(childNode); + // this._repositionBezierNodes(parentNode); - /** - * actually place the node in a region (or branch) - * - * @param parentBranch - * @param node - * @param region - * @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); - } - break; - case 4: // place in branch - this._placeInTree(parentBranch.children[region],node); - break; - } - }; + // remove the clusterSession from the child node + childNode.clusterSession = 0; + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); - /** - * 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._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; + // restart the simulation to reorganise all nodes + this.moving = true; } - parentBranch.childrenCount = 4; - parentBranch.children.data = null; - this._insertRegion(parentBranch,"NW"); - this._insertRegion(parentBranch,"NE"); - this._insertRegion(parentBranch,"SW"); - this._insertRegion(parentBranch,"SE"); - if (containedNode != null) { - this._placeInTree(parentBranch,containedNode); + // check if a further expansion step is possible if recursivity is enabled + if (recursive == true) { + this._expandClusterNode(childNode,recursive,force,openAll); } }; /** - * This function subdivides the region into four new segments. - * Specifically, this inserts a single new segment. - * It fills the children section of the parentBranch + * position the bezier nodes at the center of the edges * - * @param parentBranch - * @param region - * @param parentRange + * @param node * @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; + exports._repositionBezierNodes = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + node.dynamicEdges[i].positionBezierNode(); } - - - 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 is for debugging purposed, it draws the tree. + * 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 ctx - * @param color * @private + * @param {Boolean} force */ - exports._drawTree = function(ctx,color) { - if (this.barnesHutTree !== undefined) { - - ctx.lineWidth = 1; - - this._drawBranch(this.barnesHutTree.root,ctx,color); + exports._formClusters = function(force) { + if (force == false) { + this._formClustersByZoom(); + } + else { + this._forceClustersByZoom(); } }; /** - * This function is for debugging purposes. It draws the branches recursively. + * This function handles the clustering by zooming out, this is based on a minimum edge distance * - * @param branch - * @param ctx - * @param color * @private */ - 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(); + exports._formClustersByZoom = function() { + var dx,dy,length, + minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - ctx.beginPath(); - ctx.moveTo(branch.range.maxX,branch.range.minY); - ctx.lineTo(branch.range.maxX,branch.range.maxY); - ctx.stroke(); + // 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); - 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 (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 (branch.mass > 0) { - ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); - ctx.stroke(); - } - */ + if (childNode.dynamicEdgesLength == 1) { + this._addToCluster(parentNode,childNode,false); + } + else if (parentNode.dynamicEdgesLength == 1) { + this._addToCluster(childNode,parentNode,false); + } + } + } + } + } + } }; - -/***/ }, -/* 56 */ -/***/ function(module, exports, __webpack_require__) { - /** - * Creation of the ClusterMixin var. + * This function forces the network to cluster all nodes with only one connecting edge to their + * connected node. * - * This contains all the functions the Network object can use to employ clustering + * @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]; - /** - * 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(); + // 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]; - // 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(); + // 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); + } + } + } + } + } }; + /** - * This function clusters until the initialMaxNodes has been reached + * To keep the nodes of roughly equal size we normalize the cluster levels. + * This function clusters a node to its smallest connected neighbour. * - * @param {Number} maxNumberOfNodes - * @param {Boolean} reposition + * @param node + * @private */ - exports.clusterToFit = function(maxNumberOfNodes, reposition) { - var numberOfNodes = this.nodeIndices.length; + 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; + } - 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 + if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { + smallestNeighbour = neighbour.clusterSessions.length; + smallestNeighbourNode = neighbour; + } } - - numberOfNodes = this.nodeIndices.length; - level += 1; } - // after the clustering we reposition the nodes to reduce the initial chaos - if (level > 0 && reposition == true) { - this.repositionNodes(); + if (neighbour != null && this.nodes[neighbour.id] !== undefined) { + this._addToCluster(neighbour, node, true); } - 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. + * This function forms clusters from hubs, it loops over all nodes * - * @param node | Node object: cluster to open. + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @private */ - 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 decluster until we reach a decent number of nodes - while ((this.nodeIndices.length < this.constants.clustering.initialMaxNodes) && (level < 10)) { - this.decreaseClusterLevel(); - level += 1; + 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); } - - } - 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(); } }; - /** - * This calls the updateClustes with default arguments + * 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 */ - exports.updateClustersDefault = function() { - if (this.constants.clustering.enabled == true) { - this.updateClusters(0,false,false); + exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { + if (absorptionSizeOffset === undefined) { + absorptionSizeOffset = 0; } - }; + // 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); + } - /** - * 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.increaseClusterLevel = function() { - this.updateClusters(-1,false,true); - }; + // 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; + } + } + } + } + } + } - /** - * 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.decreaseClusterLevel = function() { - this.updateClusters(1,false,true); + // 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); + } + } + } + } + } }; + /** - * 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 + * This function adds the child node to the parent node, creating a cluster if it is not already. * + * @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.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(); - } + exports._addToCluster = function(parentNode, childNode, force) { + // join child node in the parent node + parentNode.containedNodes[childNode.id] = childNode; - // 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); + // 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 { - // if a cluster takes up a set percentage of the active window - this._openClustersBySize(); + this._connectEdgeToCluster(parentNode,childNode,edge); } } - this._updateNodeIndexList(); + // a contained node has no dynamic edges. + childNode.dynamicEdges = []; - // 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(); + // 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); } - // we now reduce chains. - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - this.handleChains(); - this._updateNodeIndexList(); + // 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 { + parentNode.formationScale = this.scale; // The latest child has been added on this scale } - this.previousScale = this.scale; + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); - // rest of the update the index list, dynamic edges and labels - this._updateDynamicEdges(); - this.updateLabels(); + // set the pop-out scale for the childnode + parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; - // 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(); - } + // nullify the movement velocity of the child, this is to avoid hectic behaviour + childNode.clearVelocity(); - 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(); - } - } + // the mass has altered, preservation of energy dictates the velocity to be updated + parentNode.updateVelocity(massBefore); - this._updateCalculationNodes(); + // restart the simulation to reorganise all nodes + this.moving = true; }; - /** - * This function handles the chains. It is called on every updateClusters(). - */ - 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) - - } - }; /** - * this functions starts clustering by hubs - * The minimum hub threshold is set globally - * + * 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._aggregateHubs = function(force) { - this._getHubSize(); - this._formClustersByHub(force,false); + 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; + } }; /** - * This function is fired by keypress. It forces hubs to form. + * 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.forceAggregateHubs = function(doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; - - this._aggregateHubs(true); - - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this.updateLabels(); - - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; + 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); - 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(); + // 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; } } }; /** - * If a cluster takes up more than a set percentage of the screen, open the cluster + * 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 {Node} parentNode | Node object + * @param {Node} childNode | Node object + * @param {Edge} edge | Edge object * @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._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 + edge.originalFromId.push(childNode.id); + edge.from = parentNode; + edge.fromId = parentNode.id; + } - /** - * 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. - * - * @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(); + this._addToReroutedEdges(parentNode,childNode,edge); } }; + /** - * 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. + * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain + * these edges inside of the cluster. * - * @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 + * @param parentNode + * @param childNode * @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]; - - // 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); - } - } - } - } + 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); } } }; + /** - * 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 adds an edge from the childNode to the rerouted edges of the parent node * - * @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 + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object * @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; - - // release the contained edges from this childNode back into the global edges - this._releaseContainedEdges(parentNode,childNode); - - // reconnect rerouted edges to the childNode - this._connectEdgeBackToChild(parentNode,childNode); - - // validate all edges in dynamicEdges - this._validateEdges(parentNode); + 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] = []; + } + parentNode.reroutedEdges[childNode.id].push(edge); - // 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; + // this edge becomes part of the dynamicEdges of the cluster node + parentNode.dynamicEdges.push(edge); + }; - // 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; + /** + * 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; + } + + // 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; } } } - // if there are no others, remove the cluster session from the list - if (othersPresent == false) { - parentNode.clusterSessions.pop(); - } - - this._repositionBezierNodes(childNode); - // this._repositionBezierNodes(parentNode); - - // remove the clusterSession from the child node - childNode.clusterSession = 0; - - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); - - // restart the simulation to reorganise all nodes - this.moving = true; - } - - // check if a further expansion step is possible if recursivity is enabled - if (recursive == true) { - this._expandClusterNode(childNode,recursive,force,openAll); + // remove the entry from the rerouted edges + delete parentNode.reroutedEdges[childNode.id]; } }; /** - * position the bezier nodes at the center of the 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 * - * @param node + * @param parentNode | Node object * @private */ - exports._repositionBezierNodes = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - node.dynamicEdges[i].positionBezierNode(); + 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); + } } }; /** - * 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 function released the contained edges back into the global domain and puts them back into the + * dynamic edges of both parent and child. * + * @param {Node} parentNode | + * @param {Node} childNode | * @private - * @param {Boolean} force */ - exports._formClusters = function(force) { - if (force == false) { - this._formClustersByZoom(); - } - else { - this._forceClustersByZoom(); + 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 function handles the clustering by zooming out, this is based on a minimum edge distance - * - * @private + * This updates the node labels for all nodes (for debugging purposes) */ - exports._formClustersByZoom = function() { - var dx,dy,length, - minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; + 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),"]"); + } + } + } - // 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); + // 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); + } + } + } + } + // /* Debug Override */ + // for (nodeId in this.nodes) { + // if (this.nodes.hasOwnProperty(nodeId)) { + // node = this.nodes[nodeId]; + // node.label = String(node.level); + // } + // } - 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); - } - } + + /** + * 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.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;} + } + } + + 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; + } } }; + + /** - * This function forces the network to cluster all nodes with only one connecting edge to their - * connected node. + * 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._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]; + 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 + ) + }; - // 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); - } - } - } + /** + * 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); } } }; /** - * To keep the nodes of roughly equal size we normalize the cluster levels. - * This function clusters a node to its smallest connected neighbour. + * 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 * @private */ - 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; - } + exports._getHubSize = function() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; + for (var i = 0; i < this.nodeIndices.length; i++) { - if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { - smallestNeighbour = neighbour.clusterSessions.length; - smallestNeighbourNode = neighbour; - } + 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; - if (neighbour != null && this.nodes[neighbour.id] !== undefined) { - this._addToCluster(neighbour, node, true); + 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; } + + // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); + // console.log("hubThreshold:",this.hubThreshold); }; /** - * This function forms clusters from hubs, it loops over all nodes + * 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 {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce * @private */ - exports._formClustersByHub = function(force, onlyEqual) { - // we loop over all nodes in the list + exports._reduceAmountOfChains = function(fraction) { + this.hubThreshold = 2; + var reduceAmount = Math.floor(this.nodeIndices.length * fraction); 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); + 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 function forms a cluster from a specific preselected hub node + * 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} 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._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { - if (absorptionSizeOffset === undefined) { - absorptionSizeOffset = 0; + 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; + } } - // 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; + return chains/total; + }; - // 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); +/***/ }, +/* 53 */ +/***/ function(module, exports, __webpack_require__) { - if (length < minLength) { - allowCluster = true; - break; - } - } - } - } - } - } + var util = __webpack_require__(1); - // 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); - } - } - } - } + /** + * 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. + * + * @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; + }; + + + /** + * /** + * 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 {String} sectorId + * @param {String} [sectorType] | "active" or "frozen" + * @private + */ + exports._switchToSector = function(sectorId, sectorType) { + if (sectorType === undefined || sectorType == "active") { + this._switchToActiveSector(sectorId); + } + else { + this._switchToFrozenSector(sectorId); } }; + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. + * + * @param sectorId + * @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"]; + }; + /** - * This function adds the child node to the parent node, creating a cluster if it is not already. + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. * - * @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; + exports._switchToSupportSector = function() { + this.nodeIndices = this.sectors["support"]["nodeIndices"]; + this.nodes = this.sectors["support"]["nodes"]; + this.edges = this.sectors["support"]["edges"]; + }; - // 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); + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied frozen sector. + * + * @param sectorId + * @private + */ + 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"]; + }; - // remove the childNode from the global nodes object - delete this.nodes[childNode.id]; + /** + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the currently active sector. + * + * @private + */ + exports._loadLatestSector = function() { + this._switchToSector(this._sector()); + }; - // 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 function returns the currently active sector Id + * + * @returns {String} + * @private + */ + exports._sector = function() { + return this.activeSector[this.activeSector.length-1]; + }; + - // 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; + /** + * 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]; } else { - parentNode.formationScale = this.scale; // The latest child has been added on this scale + throw new TypeError('there are not enough sectors in the this.activeSector array.'); } + }; - // 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(); + /** + * 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._setActiveSector = function(newId) { + this.activeSector.push(newId); + }; - // 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; + /** + * 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(); }; /** - * 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(). + * 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._updateDynamicEdges = function() { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - node.dynamicEdgesLength = node.dynamicEdges.length; + exports._createNewSector = function(newId) { + // create the new sector + this.sectors["active"][newId] = {"nodes":{}, + "edges":{}, + "nodeIndices":[], + "formationScale": this.scale, + "drawingNode": undefined}; - // 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; - } + // 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" } - } - } - node.dynamicEdgesLength -= correction; - } + },{},{},this.constants); + this.sectors["active"][newId]['drawingNode'].clusterSize = 2; }; /** - * This adds an edge from the childNode to the contained edges of the parent node + * This function removes the currently active sector. This is called when we create a new + * active sector. * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * @param {String} sectorId | Id of the active sector that will be removed * @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); + exports._deleteActiveSector = function(sectorId) { + delete this.sectors["active"][sectorId]; + }; - // 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; - } - } + /** + * 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._deleteFrozenSector = function(sectorId) { + delete this.sectors["frozen"][sectorId]; }; + /** - * 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. + * 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 {Node} parentNode | Node object - * @param {Node} childNode | Node object - * @param {Edge} edge | Edge object + * @param sectorId * @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 - - edge.originalFromId.push(childNode.id); - edge.from = parentNode; - edge.fromId = parentNode.id; - } + exports._freezeSector = function(sectorId) { + // we move the set references from the active to the frozen stack. + this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; - this._addToReroutedEdges(parentNode,childNode,edge); - } + // we have moved the sector data into the frozen set, we now remove it from the active set + this._deleteActiveSector(sectorId); }; /** - * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain - * these edges inside of the cluster. + * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" + * object to the "active" object. * - * @param parentNode - * @param childNode + * @param sectorId * @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._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); }; /** - * This adds an edge from the childNode to the rerouted edges of the parent node + * 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 parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * @param sectorId * @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._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]; + } } - parentNode.reroutedEdges[childNode.id].push(edge); - // this edge becomes part of the dynamicEdges of the cluster node - parentNode.dynamicEdges.push(edge); - }; + // 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]); + } + }; /** - * This function connects an edge that was connected to a cluster node back to the child node. + * 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. * - * @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; - } - - // 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]; - } + */ + exports._collapseThisToSingleCluster = function() { + this.clusterToFit(1,false); }; /** - * 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 + * We create a new active sector from the node that we want to open. * - * @param parentNode | Node object + * @param node * @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); - } - } + 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; }; /** - * This function released the contained edges back into the global domain and puts them back into the - * dynamic edges of both parent and child. + * 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. * - * @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._collapseSector = function() { + // the currently active sector + var sector = this._sector(); - // put the edge back in the global edges object - this.edges[edge.id] = edge; + // 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(); - // 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]; + // 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); + // we load the references from the newly active sector into the global references + this._switchToSector(previousSector); + // we forget the previously active sector because we reverted to the one before + this._forgetLastSector(); + // finally, we update the node index list. + this._updateNodeIndexList(); - // ------------------- UTILITY FUNCTIONS ---------------------------- // + // we refresh the list with calulation nodes and calculation node indices. + this._updateCalculationNodes(); + } + } + }; /** - * This updates the node labels for all nodes (for debugging purposes) + * 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.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._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](); } } } - - // 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 { + 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 { - node.label = String(node.id); + this[runFunction](argument); } } } } + // we revert the global references back to our active sector + this._loadLatestSector(); + }; - // /* Debug Override */ - // for (nodeId in this.nodes) { - // if (this.nodes.hasOwnProperty(nodeId)) { - // node = this.nodes[nodeId]; - // node.label = String(node.level); - // } - // } + /** + * 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._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); + } + } + // we revert the global references back to our active sector + this._loadLatestSector(); }; /** - * 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 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.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;} + 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](); + } } } - - 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]); + 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._updateNodeIndexList(); - this._updateDynamicEdges(); - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; - } } + this._loadLatestSector(); }; - /** - * This function determines if the cluster we want to decluster is in the active area - * this means around the zoom center + * This runs a function in all sectors. This is used in the _redraw(). * - * @param {Node} node - * @returns {boolean} + * @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._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._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); + } + } }; /** - * 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. + * 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.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); - } - } + exports._clearNodeIndexList = function() { + var sector = this._sector(); + this.sectors["active"][sector]["nodeIndices"] = []; + this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; }; /** - * 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%) + * Draw the encompassing sector node * + * @param ctx + * @param sectorType * @private */ - exports._getHubSize = function() { - var average = 0; - var averageSquared = 0; - var hubCounter = 0; - var largestHub = 0; + 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) { - for (var i = 0; i < this.nodeIndices.length; i++) { + this._switchToSector(sector,sectorType); - var node = this.nodes[this.nodeIndices[i]]; - if (node.dynamicEdgesLength > largestHub) { - largestHub = node.dynamicEdgesLength; + 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); + } } - 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); + exports._drawAllSectorNodes = function(ctx) { + this._drawSectorNodes(ctx,"frozen"); + this._drawSectorNodes(ctx,"active"); + this._loadLatestSector(); + }; - // always have at least one to cluster - if (this.hubThreshold > largestHub) { - this.hubThreshold = largestHub; - } - // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); - // console.log("hubThreshold:",this.hubThreshold); - }; +/***/ }, +/* 54 */ +/***/ function(module, exports, __webpack_require__) { + var Node = __webpack_require__(36); /** - * 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. + * This function can be called from the _doInAllSectors function * - * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce + * @param object + * @param overlappingNodes * @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._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); } } } }; /** - * 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. - * + * 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._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; - } - } - return chains/total; + exports._getAllNodesOverlappingWith = function (object) { + var overlappingNodes = []; + this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); + return overlappingNodes; }; -/***/ }, -/* 57 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - - /** - * 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. + * 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._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._pointerToPositionObject = function(pointer) { + var x = this._XconvertDOMtoCanvas(pointer.x); + var y = this._YconvertDOMtoCanvas(pointer.y); + + return { + left: x, + top: y, + right: x, + bottom: y + }; }; /** - * /** - * 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 + * Get the top node at the a specific point (like a click) * - * @param {String} sectorId - * @param {String} [sectorType] | "active" or "frozen" + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node * @private */ - exports._switchToSector = function(sectorId, sectorType) { - if (sectorType === undefined || sectorType == "active") { - this._switchToActiveSector(sectorId); + 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 { - this._switchToFrozenSector(sectorId); + return null; } }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. - * - * @param sectorId + * 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._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._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); + } + } + } }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. + * 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. * + * @param pointer + * @returns {null} * @private */ - exports._switchToSupportSector = function() { - this.nodeIndices = this.sectors["support"]["nodeIndices"]; - this.nodes = this.sectors["support"]["nodes"]; - this.edges = this.sectors["support"]["edges"]; + 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; + } }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied frozen sector. + * Add object to the selection array. * - * @param sectorId + * @param obj * @private */ - 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"]; + exports._addToSelection = function(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; + } + else { + this.selectionObj.edges[obj.id] = obj; + } }; - /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the currently active sector. + * Add object to the selection array. * + * @param obj * @private */ - exports._loadLatestSector = function() { - this._switchToSector(this._sector()); + exports._addToHover = function(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; + } + else { + this.hoverObj.edges[obj.id] = obj; + } }; /** - * This function returns the currently active sector Id + * Remove a single option from selection. * - * @returns {String} + * @param {Object} obj * @private */ - exports._sector = function() { - return this.activeSector[this.activeSector.length-1]; + exports._removeFromSelection = function(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; + } + else { + delete this.selectionObj.edges[obj.id]; + } }; - /** - * This function returns the previously active sector Id + * Unselect all. The selectionObj is useful for this. * - * @returns {String} + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._previousSector = function() { - if (this.activeSector.length > 1) { - return this.activeSector[this.activeSector.length-2]; + exports._unselectAll = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; } - else { - throw new TypeError('there are not enough sectors in the this.activeSector array.'); + 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.selectionObj = {nodes:{},edges:{}}; + + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } + }; /** - * 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. + * Unselect all clusters. The selectionObj is useful for this. * - * @param newId + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._setActiveSector = function(newId) { - this.activeSector.push(newId); + 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()); + } }; /** - * We remove the currently active sector id from the active sector stack. This happens when - * we reactivate the previously active sector + * return the number of selected nodes * + * @returns {number} * @private */ - exports._forgetLastSector = function() { - this.activeSector.pop(); + exports._getSelectedNodeCount = function() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + return count; }; - /** - * This function creates a new active sector with the supplied newId. This newId - * is the expanding node id. + * return the selected node * - * @param {String} newId | Id of the new active sector + * @returns {number} * @private */ - exports._createNewSector = function(newId) { - // create the new sector - this.sectors["active"][newId] = {"nodes":{}, - "edges":{}, - "nodeIndices":[], - "formationScale": this.scale, - "drawingNode": undefined}; - - // 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; + exports._getSelectedNode = function() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } + } + return null; }; - /** - * This function removes the currently active sector. This is called when we create a new - * active sector. + * return the selected edge * - * @param {String} sectorId | Id of the active sector that will be removed + * @returns {number} * @private */ - exports._deleteActiveSector = function(sectorId) { - delete this.sectors["active"][sectorId]; + exports._getSelectedEdge = function() { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return this.selectionObj.edges[edgeId]; + } + } + return null; }; /** - * This function removes the currently active sector. This is called when we reactivate - * the previously active sector. + * return the number of selected edges * - * @param {String} sectorId | Id of the active sector that will be removed + * @returns {number} * @private */ - exports._deleteFrozenSector = function(sectorId) { - delete this.sectors["frozen"][sectorId]; + exports._getSelectedEdgeCount = function() { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; }; /** - * Freezing an active sector means moving it from the "active" object to the "frozen" object. - * We copy the references, then delete the active entree. + * return the number of selected objects. * - * @param sectorId + * @returns {number} * @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); + 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; }; - /** - * This is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" - * object to the "active" object. + * Check if anything is selected * - * @param sectorId + * @returns {boolean} * @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._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; }; /** - * 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. + * check if one of the selected nodes is a cluster. * - * @param sectorId + * @returns {boolean} * @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]; + 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; + }; - // 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]; - } + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + exports._selectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.select(); + this._addToSelection(edge); } + }; - // merge the nodeIndices - for (var i = 0; i < this.nodeIndices.length; i++) { - this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); + /** + * select the edges connected to the node that is being selected + * + * @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); } }; /** - * 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. + * unselect the edges connected to the node that is being selected * + * @param {Node} node * @private */ - exports._collapseThisToSingleCluster = function() { - this.clusterToFit(1,false); + exports._unselectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.unselect(); + this._removeFromSelection(edge); + } }; + + /** - * We create a new active sector from the node that we want to open. + * 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 + * @param {Node || Edge} object + * @param {Boolean} append + * @param {Boolean} [doNotTrigger] | ignore trigger * @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); + exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + if (highlightEdges === undefined) { + highlightEdges = true; + } - // we add the active sector to the sectors array to be able to revert these steps later on - this._setActiveSector(unqiueIdentifier); + if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { + this._unselectAll(true); + } - // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier - this._switchToSector(this._sector()); + 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); + } - // finally we add the node we removed from our previous active sector to the new active sector - this.nodes[node.id] = node; + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } }; /** - * 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 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._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); - - // we load the references from the newly active sector into the global references - this._switchToSector(previousSector); - - // we forget the previously active sector because we reverted to the one before - this._forgetLastSector(); - - // finally, we update the node index list. - this._updateNodeIndexList(); - - // we refresh the list with calulation nodes and calculation node indices. - this._updateCalculationNodes(); - } + exports._blurObject = function(object) { + if (object.hover == true) { + object.hover = false; + this.emit("blurNode",{node:object.id}); } }; - /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * 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 {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 + * @param {Node || Edge} object * @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](); - } + exports._hoverObject = function(object) { + if (object.hover == false) { + object.hover = true; + this._addToHover(object); + if (object instanceof Node) { + this.emit("hoverNode",{node:object.id}); } } - 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); - } - } - } + if (object instanceof Node) { + this._hoverConnectedEdges(object); } - // 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(). + * 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 * - * @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 + * @param {Object} pointer * @private */ - exports._doInSupportSector = function(runFunction,argument) { - if (argument === undefined) { - this._switchToSupportSector(); - this[runFunction](); + exports._handleTouch = function(pointer) { + }; + + + /** + * 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); } else { - this._switchToSupportSector(); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,false); } else { - this[runFunction](argument); + this._unselectAll(); } } - // we revert the global references back to our active sector - this._loadLatestSector(); + this.emit("click", this.getSelection()); + this._redraw(); }; /** - * This runs a function in all frozen sectors. This is used in the _redraw(). + * handles the selection part of the double tap and opens a cluster if needed * - * @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 {Object} pointer * @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._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._loadLatestSector(); + this.emit("doubleClick", this.getSelection()); }; /** - * This runs a function in all sectors. This is used in the _redraw(). + * Handle the onHold selection part * - * @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 pointer * @private */ - exports._doInAllSectors = function(runFunction,argument) { - var args = Array.prototype.splice.call(arguments, 1); - if (argument === undefined) { - this._doInAllActiveSectors(runFunction); - this._doInAllFrozenSectors(runFunction); + exports._handleOnHold = function(pointer) { + var node = this._getNodeAt(pointer); + if (node != null) { + this._selectObject(node,true); } 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); + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,true); } } + this._redraw(); }; /** - * 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. + * handle the onRelease event. These functions are here for the navigation controls module. * - * @private + * @private */ - exports._clearNodeIndexList = function() { - var sector = this._sector(); - this.sectors["active"][sector]["nodeIndices"] = []; - this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; + exports._handleOnRelease = function(pointer) { + }; + /** - * Draw the encompassing sector node * - * @param ctx - * @param sectorType - * @private + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection */ - 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); + exports.getSelection = function() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return {nodes:nodeIds, edges:edgeIds}; + }; - 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); - } + /** + * + * 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 }; - exports._drawAllSectorNodes = function(ctx) { - this._drawSectorNodes(ctx,"frozen"); - this._drawSectorNodes(ctx,"active"); - this._loadLatestSector(); - }; - - -/***/ }, -/* 58 */ -/***/ function(module, exports, __webpack_require__) { - - var Node = __webpack_require__(48); - /** - * This function can be called from the _doInAllSectors function * - * @param object - * @param overlappingNodes - * @private + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. */ - 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.getSelectedEdges = function() { + var idArray = []; + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); } } + return idArray; }; + /** - * 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 + * select zero or more nodes + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - exports._getAllNodesOverlappingWith = function (object) { - var overlappingNodes = []; - this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); - return overlappingNodes; + 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(); }; /** - * Return a position object in canvasspace from a single point in screenspace - * - * @param pointer - * @returns {{left: number, top: number, right: number, bottom: number}} - * @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._pointerToPositionObject = function(pointer) { - var x = this._XconvertDOMtoCanvas(pointer.x); - var y = this._YconvertDOMtoCanvas(pointer.y); + exports.selectNodes = function(selection, highlightEdges) { + var i, iMax, id; - return { - left: x, - top: y, - right: x, - bottom: y - }; + 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(); }; /** - * Get the top node at the a specific point (like a click) - * - * @param {{x: Number, y: Number}} pointer - * @return {Node | null} node - * @private + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - 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.selectEdges = function(selection) { + var i, iMax, id; - // 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; + 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 edge = this.edges[id]; + if (!edge) { + throw new RangeError('Edge with id "' + id + '" not found'); + } + this._selectObject(edge,true,true,highlightEdges); } + this.redraw(); }; - /** - * 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 + * Validate the selection: remove ids of nodes which no longer exist * @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._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]; } } } }; +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + var Node = __webpack_require__(36); + var Edge = __webpack_require__(33); + /** - * 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 + * clears the toolbar div element of children + * + * @private + */ + exports._clearManipulatorBar = function() { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } + }; + + /** + * 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._getAllEdgesOverlappingWith = function (object) { - var overlappingEdges = []; - this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); - return overlappingEdges; + exports._restoreOverloadedFunctions = function() { + for (var functionName in this.cachedFunctions) { + if (this.cachedFunctions.hasOwnProperty(functionName)) { + this[functionName] = this.cachedFunctions[functionName]; + } + } }; /** - * Place holder. To implement change the _getNodeAt to a _getObjectAt. Have the _getObjectAt call - * _getNodeAt and _getEdgesAt, then priortize the selection to user preferences. + * Enable or disable edit-mode. * - * @param pointer - * @returns {null} * @private */ - 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]]; + 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 { - return null; + toolbar.style.display="none"; + closeDiv.style.display="none"; + editModeDiv.style.display="block"; + closeDiv.onclick = null; } + this._createManipulatorBar() }; - /** - * Add object to the selection array. + * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. * - * @param obj * @private */ - exports._addToSelection = function(obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; + exports._createManipulatorBar = function() { + // remove bound functions + if (this.boundFunction) { + this.off('select', this.boundFunction); + } + + var locale = this.constants.locales[this.constants.locale]; + + if (this.edgeBeingEdited !== undefined) { + this.edgeBeingEdited._disableControlNodes(); + this.edgeBeingEdited = undefined; + this.selectedControlNode = null; + this.controlNodesActive = false; + } + + // restore overloaded functions + this._restoreOverloadedFunctions(); + + // resume calculation + this.freezeSimulation = false; + + // reset global variables + this.blockConnectingEdgeSelection = false; + this.forceAppendSelection = false; + + if (this.editMode == true) { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } + + // add the icons to the manipulator div + this.manipulationDiv.innerHTML = "" + + "" + + ""+locale['add'] +"" + + "
" + + "" + + ""+locale['link'] +""; + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+locale['editNode'] +""; + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+locale['editEdge'] +""; + } + if (this._selectionIsEmpty() == false) { + this.manipulationDiv.innerHTML += "" + + "
" + + "" + + ""+locale['del'] +""; + } + + + // 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); + + this.boundFunction = this._createManipulatorBar.bind(this); + this.on('select', this.boundFunction); } else { - this.selectionObj.edges[obj.id] = obj; + this.editModeDiv.innerHTML = "" + + "" + + "" + locale['edit'] + ""; + var editModeButton = document.getElementById("network-manipulate-editModeButton"); + editModeButton.onclick = this._toggleEditMode.bind(this); } }; + + /** - * Add object to the selection array. + * Create the toolbar for adding Nodes * - * @param obj * @private */ - exports._addToHover = function(obj) { - if (obj instanceof Node) { - this.hoverObj.nodes[obj.id] = obj; - } - else { - this.hoverObj.edges[obj.id] = obj; + exports._createAddNodeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + if (this.boundFunction) { + this.off('select', this.boundFunction); } + + var locale = this.constants.locales[this.constants.locale]; + + // create the toolbar contents + this.manipulationDiv.innerHTML = "" + + "" + + "" + locale['back'] + " " + + "
" + + "" + + "" + locale['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); }; /** - * Remove a single option from selection. + * create the toolbar to connect nodes * - * @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]; + exports._createAddEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this._unselectAll(true); + this.freezeSimulation = true; + + var locale = this.constants.locales[this.constants.locale]; + + if (this.boundFunction) { + this.off('select', this.boundFunction); } + + this._unselectAll(); + this.forceAppendSelection = false; + this.blockConnectingEdgeSelection = true; + + this.manipulationDiv.innerHTML = "" + + "" + + "" + locale['back'] + " " + + "
" + + "" + + "" + locale['linkDescription'] + ""; + + // 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(); }; /** - * Unselect all. The selectionObj is useful for this. + * create the toolbar to edit edges * - * @param {Boolean} [doNotTrigger] | ignore trigger * @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(); - } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - this.selectionObj.edges[edgeId].unselect(); - } + exports._createEditEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this.controlNodesActive = true; + + if (this.boundFunction) { + this.off('select', this.boundFunction); } - this.selectionObj = {nodes:{},edges:{}}; + this.edgeBeingEdited = this._getSelectedEdge(); + this.edgeBeingEdited._enableControlNodes(); + + var locale = this.constants.locales[this.constants.locale]; + + this.manipulationDiv.innerHTML = "" + + "" + + "" + locale['back'] + " " + + "
" + + "" + + "" + locale['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; - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); - } + // redraw to show the unselect + this._redraw(); }; - /** - * Unselect all clusters. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger - * @private - */ - 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()); - } - }; /** - * return the number of selected 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. * - * @returns {number} * @private */ - exports._getSelectedNodeCount = function() { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; - } + 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; } - return count; + this._redraw(); }; /** - * return the selected node + * 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. * - * @returns {number} * @private */ - exports._getSelectedNode = function() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; - } + 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); } - return null; + this._redraw(); }; - /** - * return the selected edge - * - * @returns {number} - * @private - */ - exports._getSelectedEdge = function() { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return this.selectionObj.edges[edgeId]; + 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(); } } - return null; + else { + this.edgeBeingEdited._restoreControlNodes(); + } + this.freezeSimulation = false; + this._redraw(); }; - /** - * return the number of selected edges + * 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. * - * @returns {number} * @private */ - exports._getSelectedEdgeCount = function() { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; + exports._handleConnect = function(pointer) { + if (this._getSelectedNodeCount() == 0) { + var node = this._getNodeAt(pointer); + + if (node != null) { + if (node.clusterSize > 1) { + alert(this.constants.locales[this.constants.locale]['createEdgeError']) + } + 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(); + } } } - return count; }; + exports._finishConnect = function(pointer) { + if (this._getSelectedNodeCount() == 1) { - /** - * return the number of selected objects. - * - * @returns {number} - * @private - */ - 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; + // 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(this.constants.locales[this.constants.locale]["createEdgeError"]) + } + else { + this._createEdge(connectFromId,node.id); + this._createManipulatorBar(); + } } + this._unselectAll(); } - return count; }; + /** - * Check if anything is selected - * - * @returns {boolean} - * @private + * Adds a node on the specified location */ - exports._selectionIsEmpty = function() { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return false; + 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 { + throw new Error('The function for add does not support two arguments (data,callback)'); + this._createManipulatorBar(); + this.moving = true; + this.start(); + } } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - return false; + else { + this.nodesData.add(defaultData); + this._createManipulatorBar(); + this.moving = true; + this.start(); } } - return true; }; /** - * check if one of the selected nodes is a cluster. + * connect two nodes with a new edge. * - * @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; + 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 { + throw new Error('The function for connect does not support two arguments (data,callback)'); + this.moving = true; + this.start(); } } + else { + this.edgesData.add(defaultData); + this.moving = true; + this.start(); + } } - return false; }; /** - * select the edges connected to the node that is being selected + * connect two nodes with a new edge. * - * @param {Node} node * @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._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 { + throw new Error('The function for edit does not support two arguments (data, callback)'); + this.moving = true; + this.start(); + } + } + else { + this.edgesData.update(defaultData); + this.moving = true; + this.start(); + } } }; /** - * select the edges connected to the node that is being selected + * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. * - * @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._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 { + throw new Error('The function for edit does not support two arguments (data, callback)'); + } + } + else { + throw new Error('No edit function has been bound to this button'); } }; + + /** - * unselect the edges connected to the node that is being selected + * delete everything in the selection * - * @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._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 { + throw new Error('The function for delete does not support two arguments (data, callback)') + } + } + else { + this.edgesData.remove(selectedEdges); + this.nodesData.remove(selectedNodes); + this._unselectAll(); + this.moving = true; + this.start(); + } + } + else { + alert(this.constants.locales[this.constants.locale]["deleteClusterError"]); + } } }; +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + + 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); + } + document.onmouseup = null; + }; /** - * 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 + * 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. * - * @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; - } + exports._loadNavigationElements = function() { + this._cleanNavigation(); - if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { - this._unselectAll(true); - } + this.navigationDivs = {}; + var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; + var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; - 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); - } + 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); - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + 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 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 + * this stops all movement induced by the navigation buttons * - * @param {Node || Edge} object * @private */ - exports._blurObject = function(object) { - if (object.hover == true) { - object.hover = false; - this.emit("blurNode",{node:object.id}); - } + exports._stopMovement = function() { + this._xStopMoving(); + this._yStopMoving(); + this._stopZoom(); }; + /** - * 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 + * 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. * - * @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}); - } - } - if (object instanceof Node) { - this._hoverConnectedEdges(object); - } + exports._moveUp = function(event) { + this.yIncrement = this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done }; /** - * 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 - * - * @param {Object} pointer + * move the screen down * @private */ - exports._handleTouch = function(pointer) { + exports._moveDown = function(event) { + this.yIncrement = -this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done }; /** - * handles the selection part of the tap; - * - * @param {Object} pointer + * move the screen left * @private */ - exports._handleTap = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node,false); - } - else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge,false); - } - else { - this._unselectAll(); - } - } - this.emit("click", this.getSelection()); - this._redraw(); + exports._moveLeft = function(event) { + this.xIncrement = this.constants.keyboard.speed.x; + this.start(); // if there is no node movement, the calculation wont be done + }; + + + /** + * 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 }; /** - * handles the selection part of the double tap and opens a cluster if needed - * - * @param {Object} pointer + * Zoom in, using the same method as the movement. * @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._zoomIn = function(event) { + this.zoomIncrement = this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done }; /** - * Handle the onHold selection part - * - * @param pointer + * Zoom out * @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._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); }; /** - * handle the onRelease event. These functions are here for the navigation controls module. - * - * @private + * Stop zooming and unhighlight the zoom controls + * @private */ - exports._handleOnRelease = function(pointer) { - + exports._stopZoom = function() { + this.zoomIncrement = 0; }; - /** - * - * retrieve the currently selected objects - * @return {{nodes: Array., edges: Array.}} selection + * Stop moving in the Y direction and unHighlight the up and down + * @private */ - exports.getSelection = function() { - var nodeIds = this.getSelectedNodes(); - var edgeIds = this.getSelectedEdges(); - return {nodes:nodeIds, edges:edgeIds}; + exports._yStopMoving = function() { + this.yIncrement = 0; }; + /** - * - * retrieve the currently selected nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. + * Stop moving in the X direction and unHighlight left and right. + * @private */ - exports.getSelectedNodes = function() { - var idArray = []; - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); + exports._xStopMoving = function() { + this.xIncrement = 0; + }; + + +/***/ }, +/* 57 */ +/***/ 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; + } } } - return idArray }; /** + * This is the main function to layout the nodes in a hierarchical way. + * It checks if the node details are supplied correctly * - * retrieve the currently selected edges - * @return {Array} selection An array with the ids of the - * selected nodes. + * @private */ - exports.getSelectedEdges = function() { - var idArray = []; - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - idArray.push(edgeId); + 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; + + 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 the user defined some levels but not all, alert and run without hierarchical layout + if (undefinedLevel == true && definedLevel == true) { + throw new Error("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(); } } - return idArray; }; /** - * select zero or more nodes - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. + * This function places the nodes on the canvas based on the hierarchial distribution. + * + * @param {Object} distribution | obtained by the function this._getDistribution() + * @private */ - exports.setSelection = function(selection) { - var i, iMax, id; + exports._placeNodesByHierarchy = function(distribution) { + var nodeId, node; - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; + // start placing all the level 0 nodes first. Then recursively position their branches. + for (var level in distribution) { + if (distribution.hasOwnProperty(level)) { - // first unselect any selected node - this._unselectAll(true); + 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; - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + else { + if (node.yFixed) { + node.y = distribution[level].minPos; + node.yFixed = false; - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + this._placeBranchNodes(node.edges,node.id,distribution,node.level); + } + } } - this._selectObject(node,true,true); } - console.log("setSelection is deprecated. Please use selectNodes instead.") - - this.redraw(); + // stabilize the system after positioning. This function calls zoomExtent. + this._stabilize(); }; /** - * 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] + * This function get the distribution of levels based on hubsize + * + * @returns {Object} + * @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]; + exports._getDistribution = function() { + var distribution = {}; + var nodeId, node, level; - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); + // 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; } - this._selectObject(node,true,true,highlightEdges); } - this.redraw(); - }; - - - /** - * 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; - - 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]; + // 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; + } + } + } - var edge = this.edges[id]; - if (!edge) { - throw new RangeError('Edge with id "' + id + '" not found'); + // 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); } - this._selectObject(edge,true,true,highlightEdges); } - this.redraw(); + + return distribution; }; + /** - * Validate the selection: remove ids of nodes which no longer exist + * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * + * @param hubsize * @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]; + 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; } } } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; + + // 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); } } } }; -/***/ }, -/* 59 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var Node = __webpack_require__(48); - var Edge = __webpack_require__(49); - /** - * clears the toolbar div element of children + * 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. * * @private */ - exports._clearManipulatorBar = function() { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + 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(); }; + /** - * 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 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._restoreOverloadedFunctions = function() { - for (var functionName in this.cachedFunctions) { - if (this.cachedFunctions.hasOwnProperty(functionName)) { - this[functionName] = this.cachedFunctions[functionName]; + 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; + } + } + + 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); + } } } }; + /** - * Enable or disable edit-mode. + * 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 */ - 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; + 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); + } + } } - this._createManipulatorBar() }; + /** - * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * Unfix nodes * * @private */ - exports._createManipulatorBar = function() { - // remove bound functions - if (this.boundFunction) { - this.off('select', this.boundFunction); + exports._restoreNodes = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.nodes[nodeId].xFixed = false; + this.nodes[nodeId].yFixed = false; + } } + }; - var locale = this.constants.locales[this.constants.locale]; - - if (this.edgeBeingEdited !== undefined) { - this.edgeBeingEdited._disableControlNodes(); - this.edgeBeingEdited = undefined; - this.selectedControlNode = null; - this.controlNodesActive = false; - } - // restore overloaded functions - this._restoreOverloadedFunctions(); +/***/ }, +/* 58 */ +/***/ function(module, exports, __webpack_require__) { - // resume calculation - this.freezeSimulation = false; + var util = __webpack_require__(1); + var RepulsionMixin = __webpack_require__(60); + var HierarchialRepulsionMixin = __webpack_require__(61); + var BarnesHutMixin = __webpack_require__(62); - // reset global variables - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; + /** + * Toggling barnes Hut calculation on and off. + * + * @private + */ + exports._toggleBarnesHut = function () { + this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; + this._loadSelectedForceSolver(); + this.moving = true; + this.start(); + }; - if (this.editMode == true) { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } - // add the icons to the manipulator div - this.manipulationDiv.innerHTML = "" + - "" + - ""+locale['add'] +"" + - "
" + - "" + - ""+locale['link'] +""; - if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+locale['editNode'] +""; - } - else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+locale['editEdge'] +""; - } - if (this._selectionIsEmpty() == false) { - this.manipulationDiv.innerHTML += "" + - "
" + - "" + - ""+locale['del'] +""; - } + /** + * 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; - // 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); + this._loadMixin(BarnesHutMixin); + } + else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._clearMixin(BarnesHutMixin); + this._clearMixin(RepulsionMixin); - this.boundFunction = this._createManipulatorBar.bind(this); - this.on('select', this.boundFunction); + 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.editModeDiv.innerHTML = "" + - "" + - "" + locale['edit'] + ""; - var editModeButton = document.getElementById("network-manipulate-editModeButton"); - editModeButton.onclick = this._toggleEditMode.bind(this); - } - }; + this._clearMixin(BarnesHutMixin); + this._clearMixin(HierarchialRepulsionMixin); + this.barnesHutTree = undefined; + 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); + } + }; /** - * Create the toolbar for adding Nodes + * 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._createAddNodeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - if (this.boundFunction) { - this.off('select', this.boundFunction); + 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); + } - var locale = this.constants.locales[this.constants.locale]; + // we now start the force calculation + this._calculateForces(); + } + }; - // create the toolbar contents - this.manipulationDiv.innerHTML = "" + - "" + - "" + locale['back'] + " " + - "
" + - "" + - "" + locale['addDescription'] + ""; - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + /** + * Calculate the external forces acting on the nodes + * Forces are caused by: edges, repulsing forces between nodes, gravity + * @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 - // 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._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(); + } + } + } }; /** - * create the toolbar to connect nodes + * 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. * * @private */ - exports._createAddEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this._unselectAll(true); - this.freezeSimulation = true; + exports._updateCalculationNodes = function () { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this.calculationNodes = {}; + this.calculationNodeIndices = []; - var locale = this.constants.locales[this.constants.locale]; + 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); + } + } + } - if (this.boundFunction) { - this.off('select', this.boundFunction); + for (var idx in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(idx)) { + this.calculationNodeIndices.push(idx); + } + } } + else { + this.calculationNodes = this.nodes; + this.calculationNodeIndices = this.nodeIndices; + } + }; - this._unselectAll(); - this.forceAppendSelection = false; - this.blockConnectingEdgeSelection = true; - this.manipulationDiv.innerHTML = "" + - "" + - "" + locale['back'] + " " + - "
" + - "" + - "" + locale['linkDescription'] + ""; + /** + * this function applies the central gravity effect to keep groups from floating off + * + * @private + */ + exports._calculateGravitationalForces = function () { + var dx, dy, distance, node, i; + var nodes = this.calculationNodes; + var gravity = this.constants.physics.centralGravity; + var gravityForce = 0; - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + 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; + } + } + }; - // 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(); - }; /** - * create the toolbar to edit edges + * this function calculates the effects of the springs in the case of unsmooth curves. * * @private */ - exports._createEditEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this.controlNodesActive = true; - - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + exports._calculateSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; - this.edgeBeingEdited = this._getSelectedEdge(); - this.edgeBeingEdited._enableControlNodes(); + // 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; - var locale = this.constants.locales[this.constants.locale]; + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); - this.manipulationDiv.innerHTML = "" + - "" + - "" + locale['back'] + " " + - "
" + - "" + - "" + locale['editEdgeDescription'] + ""; + if (distance == 0) { + distance = 0.01; + } - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - // 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; + fx = dx * springForce; + fy = dy * springForce; - // redraw to show the unselect - this._redraw(); + edge.from.fx += fx; + edge.from.fy += fy; + edge.to.fx -= fx; + edge.to.fy -= fy; + } + } + } + } }; - /** - * 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 function calculates the springforces on the nodes, accounting for the support nodes. * * @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._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._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 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 */ - 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._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; } - this._redraw(); + + // 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; }; - 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(); + + /** + * Load the HTML for the physics config and bind it + * @private + */ + exports._loadPhysicsConfiguration = function () { + if (this.physicsConfiguration === undefined) { + this.backupConstants = {}; + util.deepExtend(this.backupConstants,this.constants); + + 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"; } - if (this.edgeBeingEdited.controlNodes.to.selected == true) { - this._editEdge(this.edgeBeingEdited.from.id, newNode.id); - this.edgeBeingEdited.controlNodes.to.unselect(); + else { + graph_toggleSmooth.style.background = "#FF8532"; } + + + switchConfigurations.apply(this); + + radioButton1.onchange = switchConfigurations.bind(this); + radioButton2.onchange = switchConfigurations.bind(this); + radioButton3.onchange = switchConfigurations.bind(this); } - 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 overwrites the this.constants. * + * @param constantsVariableName + * @param value * @private */ - exports._handleConnect = function(pointer) { - if (this._getSelectedNodeCount() == 0) { - var node = this._getNodeAt(pointer); - - if (node != null) { - if (node.clusterSize > 1) { - alert(this.constants.locales[this.constants.locale]['createEdgeError']) - } - 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(); - } - } + 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._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; + /** + * 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";} - // remove the temporary nodes and edge - delete this.edges['connectionEdge']; - delete this.sectors['support']['nodes']['targetNode']; - delete this.sectors['support']['nodes']['targetViaNode']; + this._configureSmoothCurves(false); + } - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert(this.constants.locales[this.constants.locale]["createEdgeError"]) - } - else { - this._createEdge(connectFromId,node.id); - this._createManipulatorBar(); - } + /** + * this function is used to scramble the nodes + * + */ + 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; } - this._unselectAll(); } - }; - + 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(); + } /** - * Adds a node on the specified location + * this is used to generate an options file from the playing with physics system. */ - 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(); - }); + 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 += ", " + } } - else { - throw new Error('The function for add does not support two arguments (data,callback)'); - this._createManipulatorBar(); - 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 += ", " + } } + options += '}}' } - else { - this.nodesData.add(defaultData); - this._createManipulatorBar(); - this.moving = true; - this.start(); + if (optionsSpecific.length == 0) {options += "}"} + if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { + options += ", smoothCurves: " + this.constants.smoothCurves; } + options += '};' } - }; - - - /** - * connect two nodes with a new edge. - * - * @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 { + 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 += ", "; + } } - else { - throw new Error('The function for connect does not support two arguments (data,callback)'); - this.moving = true; - this.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 += ", " + } } + options += '}' } else { - this.edgesData.add(defaultData); - this.moving = true; - this.start(); + options += "enabled:true}"; } + options += '};' } - }; + + + this.optionsDiv.innerHTML = options; + } /** - * connect two nodes with a new edge. + * this is used to switch between barnesHut, repulsion and hierarchical. * - * @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 { - throw new Error('The function for edit does not support two arguments (data, callback)'); - this.moving = true; - this.start(); - } + 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"; } - else { - this.edgesData.update(defaultData); - 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.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(); + } + /** - * Create the toolbar to edit the selected node. The label and the color can be changed. Other colors are derived from the chosen color. + * this generates the ranges depending on the iniital values. * - * @private + * @param id + * @param map + * @param constantsVariableName */ - 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 { - throw new Error('The function for edit does not support two arguments (data, callback)'); - } + function showValueOfRange (id,map,constantsVariableName) { + var valueId = id + "_value"; + var rangeValue = document.getElementById(id).value; + + if (map instanceof Array) { + document.getElementById(valueId).value = map[parseInt(rangeValue)]; + this._overWriteGraphConstants(constantsVariableName,map[parseInt(rangeValue)]); } else { - throw new Error('No edit function has been bound to this button'); + 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(); + } + this.moving = true; + this.start(); + } +/***/ }, +/* 59 */ +/***/ function(module, exports, __webpack_require__) { - /** - * delete everything in the selection - * - * @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 { - throw new Error('The function for delete does not support two arguments (data, callback)') - } - } - else { - this.edgesData.remove(selectedEdges); - this.nodesData.remove(selectedNodes); - this._unselectAll(); - this.moving = true; - this.start(); - } - } - else { - alert(this.constants.locales[this.constants.locale]["deleteClusterError"]); - } - } - }; + function webpackContext(req) { + throw new Error("Cannot find module '" + req + "'."); + } + webpackContext.resolve = webpackContext; + webpackContext.keys = function() { return []; }; + module.exports = webpackContext; /***/ }, /* 60 */ /***/ 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; - }; - /** - * 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. + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. * * @private */ - exports._loadNavigationElements = function() { - this._cleanNavigation(); + exports._calculateNodeForces = function () { + var dx, dy, angle, distance, fx, fy, combinedClusterSize, + repulsingForce, node1, node2, i, j; - this.navigationDivs = {}; - var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; - var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; - 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); + // approximation constants + var a_base = -2 / 3; + var b = 4 / 3; - 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)); + // 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; + } + } } - var hammer = Hammer(document, {prevent_default: false}); - hammer.on("release", me._stopMovement.bind(me)); }; - /** - * this stops all movement induced by the navigation buttons - * - * @private - */ - exports._stopMovement = function() { - this._xStopMoving(); - this._yStopMoving(); - this._stopZoom(); - }; +/***/ }, +/* 61 */ +/***/ function(module, exports, __webpack_require__) { /** - * 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. + * Calculate the forces the nodes apply on eachother based on a repulsion field. + * This field is linearly approximated. * * @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._calculateNodeForces = function () { + var dx, dy, distance, fx, fy, + repulsingForce, node1, node2, i, j; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; - /** - * 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 - }; + // 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]]; - /** - * 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 - }; + // 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); - /** - * 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 - }; + 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; - /** - * 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 + node1.fx -= fx; + node1.fy -= fy; + node2.fx += fx; + node2.fy += fy; + } + } + } }; /** - * Zoom out + * this function calculates the effects of the springs in the case of unsmooth curves. + * * @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._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; - /** - * Stop zooming and unhighlight the zoom controls - * @private - */ - exports._stopZoom = function() { - this.zoomIncrement = 0; - }; + for (var i = 0; i < nodeIndices.length; i++) { + var node1 = nodes[nodeIndices[i]]; + node1.springFx = 0; + node1.springFy = 0; + } - /** - * Stop moving in the Y direction and unHighlight the up and down - * @private - */ - exports._yStopMoving = function() { - this.yIncrement = 0; - }; + // 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; - /** - * Stop moving in the X direction and unHighlight left and right. - * @private - */ - exports._xStopMoving = function() { - this.xIncrement = 0; - }; + 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; + } -/***/ }, -/* 61 */ -/***/ function(module, exports, __webpack_require__) { + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; - 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; - } - } - } - }; + fx = dx * springForce; + fy = dy * springForce; - /** - * This is the main function to layout the nodes in a hierarchical way. - * It checks if the node details are supplied correctly - * - * @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; - 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 (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; + } } } } + } - // if the user defined some levels but not all, alert and run without hierarchical layout - if (undefinedLevel == true && definedLevel == true) { - throw new Error("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(); + // 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)); - // place the nodes on the canvas. This also stablilizes the system. - this._placeNodesByHierarchy(distribution); + node.fx += springFx; + node.fy += springFy; + } - // start the simulation. - this.start(); - } + // 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; } + }; +/***/ }, +/* 62 */ +/***/ function(module, exports, __webpack_require__) { /** - * This function places the nodes on the canvas based on the hierarchial distribution. + * 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 {Object} distribution | obtained by the function this._getDistribution() * @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)) { + exports._calculateNodeForces = function() { + if (this.constants.physics.barnesHut.gravitationalConstant != 0) { + var node; + var nodes = this.calculationNodes; + var nodeIndices = this.calculationNodeIndices; + var nodeCount = nodeIndices.length; - 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; + this._formBarnesHutTree(nodes,nodeIndices); - distribution[level].minPos += distribution[level].nodeSpacing; - } - } - else { - if (node.yFixed) { - node.y = distribution[level].minPos; - node.yFixed = false; + var barnesHutTree = this.barnesHutTree; - distribution[level].minPos += distribution[level].nodeSpacing; - } - } - this._placeBranchNodes(node.edges,node.id,distribution,node.level); - } + // 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); } } } - - // stabilize the system after positioning. This function calls zoomExtent. - this._stabilize(); }; /** - * This function get the distribution of levels based on hubsize + * 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. * - * @returns {Object} + * @param parentBranch + * @param node * @private */ - exports._getDistribution = function() { - var distribution = {}; - var nodeId, node, level; + exports._getForceContribution = function(parentBranch,node) { + // we get no force contribution from an empty region + if (parentBranch.childrenCount > 0) { + var dx,dy,distance; - // 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; - } - } + // 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); - // 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; + // 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; } - } - - // 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 { + // 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; + } + } } } - - return distribution; }; - /** - * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. * - * @param hubsize + * @param nodes + * @param nodeIndices * @private */ - exports._determineLevels = function(hubsize) { - var nodeId, node; + exports._formBarnesHutTree = function(nodes,nodeIndices) { + var node; + var nodeCount = nodeIndices.length; - // determine hubs - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (node.edges.length == hubsize) { - node.level = 0; - } - } - } + var minX = Number.MAX_VALUE, + minY = Number.MAX_VALUE, + maxX =-Number.MAX_VALUE, + maxY =-Number.MAX_VALUE; - // 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); - } + // 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 - /** - * 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. - * - * @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; + 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._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); + } } - this._configureSmoothCurves(); + + // make global + this.barnesHutTree = barnesHutTree }; /** - * 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. + * this updates the mass of a branch. this is increased by adding a node. * - * @param edges - * @param parentId - * @param distribution - * @param parentLevel + * @param parentBranch + * @param node * @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 { - childNode = edges[i].to; - } + exports._updateBranchMass = function(parentBranch, node) { + var totalMass = parentBranch.mass + node.options.mass; + var totalMassInv = 1/totalMass; - // 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; - } - } + 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; - 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); - } - } - } }; /** - * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. + * determine in which branch the node will be placed. * - * @param level - * @param edges - * @param parentId + * @param parentBranch + * @param node + * @param skipMassUpdate * @private */ - 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; + exports._placeInTree = function(parentBranch,node,skipMassUpdate) { + if (skipMassUpdate != true || skipMassUpdate === undefined) { + // update the mass of the branch. + this._updateBranchMass(parentBranch,node); + } + + 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 { - childNode = edges[i].to; + else { // in SW + this._placeInRegion(parentBranch,node,"SW"); } - if (childNode.level == -1 || childNode.level > level) { - childNode.level = level; - if (edges.length > 1) { - this._setLevel(level+1, childNode.edges, childNode.id); - } + } + 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"); } } }; /** - * Unfix nodes + * actually place the node in a region (or branch) * + * @param parentBranch + * @param node + * @param region * @private */ - 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._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; } }; -/***/ }, -/* 62 */ -/***/ function(module, exports, __webpack_require__) { - - // English - exports['en'] = { - 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.', - createEdgeError: 'Cannot link edges to a cluster.', - deleteClusterError: 'Clusters cannot be deleted.' - }; - exports['en_EN'] = exports['en']; - exports['en_US'] = exports['en']; - - // Dutch - exports['nl'] = { - add: 'Node', - edit: 'Wijzigen', - link: 'Link toevoegen', - del: 'Selectie verwijderen', - editNode: 'Node wijzigen', - editEdge: 'Link wijzigen', - back: 'Terug', - addDescription: 'Klik op een leeg gebied om een nieuwe node te maken.', - linkDescription: 'Klik op een node en sleep de link naar een andere node om ze te verbinden.', - editEdgeDescription: 'Klik op de verbindingspunten en sleep ze naar een node om daarmee te verbinden.', - createEdgeError: 'Kan geen link maken naar een cluster.', - deleteClusterError: 'Clusters kunnen niet worden verwijderd.' - }; - exports['nl_NL'] = exports['nl']; - exports['nl_BE'] = exports['nl']; - - -/***/ }, -/* 63 */ -/***/ function(module, exports, __webpack_require__) { - /** - * Canvas shapes used by Network + * 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 */ - 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(); - }; - - /** - * 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(); + 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; + } + parentBranch.childrenCount = 4; + parentBranch.children.data = null; + this._insertRegion(parentBranch,"NW"); + this._insertRegion(parentBranch,"NE"); + this._insertRegion(parentBranch,"SW"); + this._insertRegion(parentBranch,"SE"); - 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) - ); - } + if (containedNode != null) { + this._placeInTree(parentBranch,containedNode); + } + }; - 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); - }; + /** + * 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; + } - /** - * 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 - 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); + 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 is for debugging purposed, it draws the tree. + * + * @param ctx + * @param color + * @private + */ + exports._drawTree = function(ctx,color) { + if (this.barnesHutTree !== undefined) { - /** - * 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 + ctx.lineWidth = 1; - this.beginPath(); - this.moveTo(xe, ym); + this._drawBranch(this.barnesHutTree.root,ctx,color); + } + }; - 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 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.lineTo(xe, ymb); + 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(xe, ymb + oy, xm + ox, yeb, xm, yeb); - this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); + ctx.beginPath(); + ctx.moveTo(branch.range.maxX,branch.range.minY); + ctx.lineTo(branch.range.maxX,branch.range.maxY); + ctx.stroke(); - this.lineTo(x, ym); - }; + 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(); - /** - * Draw an arrow point (no line) + /* + if (branch.mass > 0) { + ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); + ctx.stroke(); + } */ - 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); - - // 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); - - // 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; - } - }; +/***/ }, +/* 63 */ +/***/ function(module, exports, __webpack_require__) { - // TODO: add diamond shape + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; } diff --git a/dist/vis.map b/dist/vis.map index 4d10412a..3ef11135 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","__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 +{"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","customRange","current","autoScale","stepIndex","marginStart","marginEnd","deadSpace","majorSteps","minorSteps","setMinimumStep","setFirst","safeSize","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","stepSize","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","first","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","locales","locale","parent","backgroundVertical","title","time","currentTimeTimer","showCustomTime","eventParams","Hammer","drag","prevent_default","setCustomTime","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","convertValue","invertedValue","convertedValue","characterHeight","largestWidth","majorCharWidth","minorCharWidth","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","lang","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","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","custom","link","editNode","back","addDescription","linkDescription","editEdgeDescription","createEdgeError","deleteClusterError","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__","setup","READY","Event","determineEventTypes","Utils","each","gestures","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","VERSION","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","global","dfl","defaultParsingFlags","empty","unusedTokens","unusedInput","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","printMsg","msg","suppressDeprecationWarnings","warn","deprecate","firstTime","deprecateSimple","deprecations","padToken","func","leftZeroFill","ordinalizeToken","period","localeData","ordinal","Locale","Moment","config","skipOverflow","checkOverflow","copyConfig","_d","Duration","duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","month","weeks","week","days","day","hour","minute","second","millisecond","_milliseconds","_days","_months","_locale","_bubble","val","_isAMomentObject","_i","_f","_l","_strict","_tzm","_isUTC","_offset","_pf","momentProperties","absRound","number","targetLength","forceSign","output","positiveMomentsDifference","base","res","isAfter","momentsDifference","makeAs","isBefore","createAdder","dur","tmp","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","method","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","DATE","_overflowDayOfYear","isValid","_isValid","getTime","normalizeLocale","chooseLocale","names","loadLocale","oldLocale","hasModule","code","model","zone","local","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_isPm","isPM","_useUTC","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","getUTCFullYear","makeDateFromStringAndFormat","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","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","posNegDuration","relativeTimeThresholds","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","daysToDayOfWeek","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","dayOfMonth","unit","makeAccessor","keepTime","daysToYears","yearsToDays","makeDurationGetter","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","dd","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","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","_invalidDate","ret","parseIso","diffRes","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","defineLocale","_abbr","abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","keepLocalTime","getTimezoneOffset","inputString","asFloat","that","zoneDiff","startOf","humanize","fromNow","sod","isDST","getDay","endOf","isSame","localAdjust","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","withSuffix","toIsoString","asSeconds","asMilliseconds","asMinutes","asHours","asDays","asWeeks","asMonths","asYears","require","noGlobal","_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","k","_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","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 diff --git a/dist/vis.min.js b/dist/vis.min.js index 555696f2..cd4dbaf7 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(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}})}])}); +!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(48),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(48),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(48),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.deadSpace=0,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=void 0===o.min?t:o.min,this._end=void 0===o.max?e:o.max,t==e&&(this._start=t-.75,this._end=e+1),this.autoScale&&this.setMinimumStep(i,s),this.setFirst(o)},e.prototype.setMinimumStep=function(t,e){var i=this._end-this._start,s=1.2*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.setFirst=function(t){void 0===t&&(t={});var e=void 0===t.min?this._start-2*this.scale*this.minorSteps[this.stepIndex]:t.min,i=void 0===t.max?this._end+this.scale*this.minorSteps[this.stepIndex]:t.max;this.marginEnd=void 0===t.max?this.roundToMinor(i):t.max,this.marginStart=void 0===t.min?this.roundToMinor(e):t.min,this.deadSpace=this.roundToMinor(i)-i+this.roundToMinor(e)-e,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,locales:a,locale:"en"},this.options=o.extend({},this.defaultOptions),this._create(),this.setOptions(e)}var o=i(1),n=i(18),r=i(40),a=i(44);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","locale","locales"],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),s=this.options.locales[this.options.locale],o=s.current+" "+s.time+": "+r(e).format("dddd, MMMM Do YYYY, H:mm:ss");o=o.charAt(0).toUpperCase()+o.substring(1),this.bar.style.left=i+"px",this.bar.title=o}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,locales:h,locale:"en"},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),a=i(40),h=i(44);s.prototype=new r,s.prototype.setOptions=function(t){t&&n.selectiveExtend(["showCustomTime","locale","locales"],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),i=this.options.locales[this.options.locale],s=i.time+": "+a(this.customTime).format("dddd, MMMM Do YYYY, H:mm:ss");s=s.charAt(0).toUpperCase()+s.substring(1),this.bar.style.left=e+"px",this.bar.title=s}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,customRange:{left:{min:void 0,max:void 0},right:{min:void 0,max:void 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","customRange"];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.options.customRange[this.options.orientation]);this.step=i;var s=(this.dom.frame.offsetHeight-i.deadSpace*(this.dom.frame.offsetHeight/i.marginRange))/((i.marginRange-i.deadSpace)/i.step);this.stepPixels=s;var o=this.height/s,r=0;if(0==this.master){s=this.stepPixelsForced,r=Math.round(this.dom.frame.offsetHeight/s-o);for(var h=0;.5*r>h;h++)i.previous();o=this.height/s}else o+=.25;this.valueAtZero=i.marginEnd;var d=0,l=1;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),l++}this.conversionFactor=0==this.master?c/(this.valueAtZero-i.current):this.dom.frame.offsetHeight/i.marginRange;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.convertValue=function(t){var e=this.valueAtZero-t,i=e*this.conversionFactor;return i},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,customRange:{left:{min:void 0,max:void 0},right:{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(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,locale:"en",locales:b,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(48),n=i(41),r=i(51),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(47),b=i(45);i(46),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))}if(t.labels)throw new Error('Option "labels" is deprecated. Use options "locale" and "locales" instead.')}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(58),o=i(52),n=i(53),r=i(54),a=i(55),h=i(56),d=i(57);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(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){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){we.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}function d(t,e){var i=!0;return g(function(){return i&&(h(t),i=!1),e.apply(this,arguments)},e)}function l(t,e){yi[t]||(h(e),yi[t]=!0)}function c(t,e){return function(i){return b(t.call(this,i),e)}}function p(t,e){return function(i){return this.localeData().ordinal(t.call(this,i),e)}}function u(){}function f(t,e){e!==!1&&z(t),v(this,t),this._d=new Date(+t._d)}function m(t){var e=T(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._locale=we.localeData(),this._bubble()}function g(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 v(t,e){var i,s,o;if("undefined"!=typeof e._isAMomentObject&&(t._isAMomentObject=e._isAMomentObject),"undefined"!=typeof e._i&&(t._i=e._i),"undefined"!=typeof e._f&&(t._f=e._f),"undefined"!=typeof e._l&&(t._l=e._l),"undefined"!=typeof e._strict&&(t._strict=e._strict),"undefined"!=typeof e._tzm&&(t._tzm=e._tzm),"undefined"!=typeof e._isUTC&&(t._isUTC=e._isUTC),"undefined"!=typeof e._offset&&(t._offset=e._offset),"undefined"!=typeof e._pf&&(t._pf=e._pf),"undefined"!=typeof e._locale&&(t._locale=e._locale),Pe.length>0)for(i in Pe)s=Pe[i],o=e[s],"undefined"!=typeof o&&(t[s]=o);return t}function y(t){return 0>t?Math.ceil(t):Math.floor(t)}function b(t,e,i){for(var s=""+Math.abs(t),o=t>=0;s.lengths;s++)(i&&t[s]!==e[s]||!i&&L(t[s])!==L(e[s]))&&r++;return r+n}function D(t){if(t){var e=t.toLowerCase().replace(/(.)s$/,"$1");t=ci[t]||pi[e]||e}return t}function T(t){var e,i,s={};for(i in t)t.hasOwnProperty(i)&&(e=D(i),e&&(s[e]=t[i]));return s}function O(t){var e,i;if(0===t.indexOf("week"))e=7,i="day";else{if(0!==t.indexOf("month"))return;e=12,i="month"}we[t]=function(s,o){var r,a,h=we._locale[t],d=[];if("number"==typeof s&&(o=s,s=n),a=function(t){var e=we().utc().set(i,t);return h.call(we._locale,e,s||"")},null!=o)return a(o);for(r=0;e>r;r++)d.push(a(r));return d}}function L(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=e>=0?Math.floor(e):Math.ceil(e)),i}function k(t,e){return new Date(Date.UTC(t,e+1,0)).getUTCDate()}function N(t,e,i){return le(we([t,11,31+e-i]),e,i).week}function I(t){return A(t)?366:365}function A(t){return t%4===0&&t%100!==0||t%400===0}function z(t){var e;t._a&&-2===t._pf.overflow&&(e=t._a[Oe]<0||t._a[Oe]>11?Oe:t._a[Le]<1||t._a[Le]>k(t._a[Te],t._a[Oe])?Le:t._a[ke]<0||t._a[ke]>23?ke:t._a[Ne]<0||t._a[Ne]>59?Ne:t._a[Ie]<0||t._a[Ie]>59?Ie:t._a[Ae]<0||t._a[Ae]>999?Ae:-1,t._pf._overflowDayOfYear&&(Te>e||e>Le)&&(e=Le),t._pf.overflow=e)}function P(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 R(t){return t?t.toLowerCase().replace("_","-"):t}function F(t){for(var e,i,s,o,n=0;n0;){if(s=H(o.slice(0,e).join("-")))return s;if(i&&i.length>=e&&E(o,i,!0)>=e-1)break;e--}n++}return null}function H(t){var e=null;if(!ze[t]&&Re)try{e=we.locale(),!function(){var t=new Error('Cannot find module "./locale"');throw t.code="MODULE_NOT_FOUND",t}(),we.locale(e)}catch(i){}return ze[t]}function Y(t,e){return e._isUTC?we(t).zone(e._offset||0):we(t).local()}function B(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function W(t){var e,i,s=t.match(Be);for(e=0,i=s.length;i>e;e++)s[e]=vi[s[e]]?vi[s[e]]:B(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 G(t,e){return t.isValid()?(e=j(e,t.localeData()),ui[e]||(ui[e]=W(e)),ui[e](t)):t.localeData().invalidDate()}function j(t,e){function i(t){return e.longDateFormat(t)||t}var s=5;for(We.lastIndex=0;s>=0&&We.test(t);)t=t.replace(We,i),We.lastIndex=0,s-=1;return t}function U(t,e){var i,s=e._strict;switch(t){case"Q":return Qe;case"DDDD":return ei;case"YYYY":case"GGGG":case"gggg":return s?ii:Ue;case"Y":case"G":case"g":return oi;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return s?si:Ve;case"S":if(s)return Qe;case"SS":if(s)return ti;case"SSS":if(s)return ei;case"DDD":return je;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Ze;case"a":case"A":return e._locale._meridiemParse;case"X":return $e;case"Z":case"ZZ":return qe;case"T":return Ke;case"SSSS":return Xe;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return s?ti:Ge;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Ge;case"Do":return Je;default:return i=new RegExp(te(Q(t.replace("\\","")),"i"))}}function V(t){t=t||"";var e=t.match(qe)||[],i=e[e.length-1]||[],s=(i+"").match(di)||["-",0,0],o=+(60*s[1])+L(s[2]);return"+"===s[0]?-o:o}function X(t,e,i){var s,o=i._a;switch(t){case"Q":null!=e&&(o[Oe]=3*(L(e)-1));break;case"M":case"MM":null!=e&&(o[Oe]=L(e)-1);break;case"MMM":case"MMMM":s=i._locale.monthsParse(e),null!=s?o[Oe]=s:i._pf.invalidMonth=e;break;case"D":case"DD":null!=e&&(o[Le]=L(e));break;case"Do":null!=e&&(o[Le]=L(parseInt(e,10)));break;case"DDD":case"DDDD":null!=e&&(i._dayOfYear=L(e));break;case"YY":o[Te]=we.parseTwoDigitYear(e);break;case"YYYY":case"YYYYY":case"YYYYYY":o[Te]=L(e);break;case"a":case"A":i._isPm=i._locale.isPM(e);break;case"H":case"HH":case"h":case"hh":o[ke]=L(e);break;case"m":case"mm":o[Ne]=L(e);break;case"s":case"ss":o[Ie]=L(e);break;case"S":case"SS":case"SSS":case"SSSS":o[Ae]=L(1e3*("0."+e));break;case"X":i._d=new Date(1e3*parseFloat(e));break;case"Z":case"ZZ":i._useUTC=!0,i._tzm=V(e);break;case"dd":case"ddd":case"dddd":s=i._locale.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]=L(e));break;case"gg":case"GG":i._w=i._w||{},i._w[t]=we.parseTwoDigitYear(e)}}function Z(t){var e,i,s,o,n,a,h;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(n=1,a=4,i=r(e.GG,t._a[Te],le(we(),1,4).year),s=r(e.W,1),o=r(e.E,1)):(n=t._locale._week.dow,a=t._locale._week.doy,i=r(e.gg,t._a[Te],le(we(),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=ce(i,s,o,a,n),t._a[Te]=h.year,t._dayOfYear=h.dayOfYear}function q(t){var e,i,s,o,n=[];if(!t._d){for(s=$(t),t._w&&null==t._a[Le]&&null==t._a[Oe]&&Z(t),t._dayOfYear&&(o=r(t._a[Te],s[Te]),t._dayOfYear>I(o)&&(t._pf._overflowDayOfYear=!0),i=re(o,0,t._dayOfYear),t._a[Oe]=i.getUTCMonth(),t._a[Le]=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?re:ne).apply(null,n),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()+t._tzm)}}function K(t){var e;t._d||(e=T(t._i),t._a=[e.year,e.month,e.day,e.hour,e.minute,e.second,e.millisecond],q(t))}function $(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function J(t){if(t._f===we.ISO_8601)return void ie(t);t._a=[],t._pf.empty=!0;var e,i,s,o,n,r=""+t._i,a=r.length,h=0;for(s=j(t._f,t._locale).match(Be)||[],e=0;e0&&t._pf.unusedInput.push(n),r=r.slice(r.indexOf(i)+i.length),h+=i.length),vi[o]?(i?t._pf.empty=!1:t._pf.unusedTokens.push(o),X(o,i,t)):t._strict&&!i&&t._pf.unusedTokens.push(o);t._pf.charsLeftOver=a-h,r.length>0&&t._pf.unusedInput.push(r),t._isPm&&t._a[ke]<12&&(t._a[ke]+=12),t._isPm===!1&&12===t._a[ke]&&(t._a[ke]=0),q(t),z(t)}function Q(t){return t.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,s,o){return e||i||s||o})}function te(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function ee(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));g(t,i||e)}function ie(t){var e,i,s=t._i,o=ni.exec(s);if(o){for(t._pf.iso=!0,e=0,i=ai.length;i>e;e++)if(ai[e][1].exec(s)){t._f=ai[e][0]+(o[6]||" ");break}for(e=0,i=hi.length;i>e;e++)if(hi[e][1].exec(s)){t._f+=hi[e][0];break}s.match(qe)&&(t._f+="Z"),J(t)}else t._isValid=!1}function se(t){ie(t),t._isValid===!1&&(delete t._isValid,we.createFromInputFallback(t))}function oe(t){var e,i=t._i;i===n?t._d=new Date:C(i)?t._d=new Date(+i):null!==(e=Fe.exec(i))?t._d=new Date(+e[1]):"string"==typeof i?se(t):M(i)?(t._a=i.slice(0),q(t)):"object"==typeof i?K(t):"number"==typeof i?t._d=new Date(i):we.createFromInputFallback(t)}function ne(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 re(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function ae(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 he(t,e,i,s,o){return o.relativeTime(e||1,!!i,t,s)}function de(t,e,i){var s=we.duration(t).abs(),o=De(s.as("s")),n=De(s.as("m")),r=De(s.as("h")),a=De(s.as("d")),h=De(s.as("M")),d=De(s.as("y")),l=o0,l[4]=i,he.apply({},l)}function le(t,e,i){var s,o=i-e,n=i-t.day();return n>o&&(n-=7),o-7>n&&(n+=7),s=we(t).add(n,"d"),{week:Math.ceil(s.dayOfYear()/7),year:s.year()}}function ce(t,e,i,s,o){var n,r,a=re(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:I(t-1)+r}}function pe(t){var e=t._i,i=t._f;return t._locale=t._locale||we.localeData(t._l),null===e||i===n&&""===e?we.invalid({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),we.isMoment(e)?new f(e,!0):(i?M(i)?ee(t):J(t):oe(t),new f(t)))}function ue(t,e){var i,s;if(1===e.length&&M(e[0])&&(e=e[0]),!e.length)return we();for(i=e[0],s=1;s=0?"+":"-";return e+b(Math.abs(t),6)},gg:function(){return b(this.weekYear()%100,2)},gggg:function(){return b(this.weekYear(),4)},ggggg:function(){return b(this.weekYear(),5)},GG:function(){return b(this.isoWeekYear()%100,2)},GGGG:function(){return b(this.isoWeekYear(),4)},GGGGG:function(){return b(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().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 L(this.milliseconds()/100)},SS:function(){return b(L(this.milliseconds()/10),2)},SSS:function(){return b(this.milliseconds(),3)},SSSS:function(){return b(this.milliseconds(),3)},Z:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+b(L(t/60),2)+":"+b(L(t)%60,2)},ZZ:function(){var t=-this.zone(),e="+";return 0>t&&(t=-t,e="-"),e+b(L(t/60),2)+b(L(t)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},yi={},bi=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];mi.length;)Me=mi.pop(),vi[Me+"o"]=p(vi[Me],Me);for(;gi.length;)Me=gi.pop(),vi[Me+Me]=c(vi[Me],2);vi.DDDD=c(vi.DDD,3),g(u.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=we.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=we([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 le(t,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),we=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(),pe(o)},we.suppressDeprecationWarnings=!1,we.createFromInputFallback=d("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)}),we.min=function(){var t=[].slice.call(arguments,0);return ue("isBefore",t)},we.max=function(){var t=[].slice.call(arguments,0);return ue("isAfter",t)},we.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(),pe(o).utc()},we.unix=function(t){return we(1e3*t)},we.duration=function(t,e){var i,s,o,n,r=t,a=null;return we.isDuration(t)?r={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(r={},e?r[e]=t:r.milliseconds=t):(a=He.exec(t))?(i="-"===a[1]?-1:1,r={y:0,d:L(a[Le])*i,h:L(a[ke])*i,m:L(a[Ne])*i,s:L(a[Ie])*i,ms:L(a[Ae])*i}):(a=Ye.exec(t))?(i="-"===a[1]?-1:1,o=function(t){var e=t&&parseFloat(t.replace(",","."));return(isNaN(e)?0:e)*i},r={y:o(a[2]),M:o(a[3]),d:o(a[4]),h:o(a[5]),m:o(a[6]),s:o(a[7]),w:o(a[8])}):"object"==typeof r&&("from"in r||"to"in r)&&(n=x(we(r.from),we(r.to)),r={},r.ms=n.milliseconds,r.M=n.months),s=new m(r),we.isDuration(t)&&t.hasOwnProperty("_locale")&&(s._locale=t._locale),s},we.version=Ce,we.defaultFormat=ri,we.ISO_8601=function(){},we.momentProperties=Pe,we.updateOffset=function(){},we.relativeTimeThreshold=function(t,e){return fi[t]===n?!1:e===n?fi[t]:(fi[t]=e,!0)},we.lang=d("moment.lang is deprecated. Use moment.locale instead.",function(t,e){return we.locale(t,e)}),we.locale=function(t,e){var i;return t&&(i="undefined"!=typeof e?we.defineLocale(t,e):we.localeData(t),i&&(we.duration._locale=we._locale=i)),we._locale._abbr},we.defineLocale=function(t,e){return null!==e?(e.abbr=t,ze[t]||(ze[t]=new u),ze[t].set(e),we.locale(t),ze[t]):(delete ze[t],null)},we.langData=d("moment.langData is deprecated. Use moment.localeData instead.",function(t){return we.localeData(t) +}),we.localeData=function(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return we._locale;if(!M(t)){if(e=H(t))return e;t=[t]}return F(t)},we.isMoment=function(t){return t instanceof f||null!=t&&t.hasOwnProperty("_isAMomentObject")},we.isDuration=function(t){return t instanceof m};for(Me=bi.length-1;Me>=0;--Me)O(bi[Me]);we.normalizeUnits=function(t){return D(t)},we.invalid=function(t){var e=we.utc(0/0);return null!=t?g(e._pf,t):e._pf.userInvalidated=!0,e},we.parseZone=function(){return we.apply(null,arguments).parseZone()},we.parseTwoDigitYear=function(t){return L(t)+(L(t)>68?1900:2e3)},g(we.fn=f.prototype,{clone:function(){return we(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("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=we(this).utc();return 00:!1},parsingFlags:function(){return g({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(t){return this.zone(0,t)},local:function(t){return this._isUTC&&(this.zone(0,t),this._isUTC=!1,t&&this.add(this._d.getTimezoneOffset(),"m")),this},format:function(t){var e=G(this,t||we.defaultFormat);return this.localeData().postformat(e)},add:w(1,"add"),subtract:w(-1,"subtract"),diff:function(t,e,i){var s,o,n=Y(t,this),r=6e4*(this.zone()-n.zone());return e=D(e),"year"===e||"month"===e?(s=432e5*(this.daysInMonth()+n.daysInMonth()),o=12*(this.year()-n.year())+(this.month()-n.month()),o+=(this-we(this).startOf("month")-(n-we(n).startOf("month")))/s,o-=6e4*(this.zone()-we(this).startOf("month").zone()-(n.zone()-we(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:y(o)},from:function(t,e){return we.duration({to:this,from:t}).locale(this.locale()).humanize(!e)},fromNow:function(t){return this.from(we(),t)},calendar:function(t){var e=t||we(),i=Y(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.localeData().calendar(o,this))},isLeapYear:function(){return A(this.year())},isDST:function(){return this.zone()+we(t).startOf(e)},isBefore:function(t,e){return e="undefined"!=typeof e?e:"millisecond",+this.clone().startOf(e)<+we(t).startOf(e)},isSame:function(t,e){return e=e||"ms",+this.clone().startOf(e)===+Y(t,this).startOf(e)},min:d("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(t){return t=we.apply(null,arguments),this>t?this:t}),max:d("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(t){return t=we.apply(null,arguments),t>this?this:t}),zone:function(t,e){var i,s=this._offset||0;return null==t?this._isUTC?s:this._d.getTimezoneOffset():("string"==typeof t&&(t=V(t)),Math.abs(t)<16&&(t=60*t),!this._isUTC&&e&&(i=this._d.getTimezoneOffset()),this._offset=t,this._isUTC=!0,null!=i&&this.subtract(i,"m"),s!==t&&(!e||this._changeInProgress?S(this,we.duration(s-t,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,we.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?we(t).zone():0,(this.zone()-t)%60===0},daysInMonth:function(){return k(this.year(),this.month())},dayOfYear:function(t){var e=De((we(this).startOf("day")-we(this).startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},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=le(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==t?e:this.add(t-e,"y")},isoWeekYear:function(t){var e=le(this,1,4).year;return null==t?e:this.add(t-e,"y")},week:function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},isoWeek:function(t){var e=le(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},weekday:function(t){var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},isoWeekday:function(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)},isoWeeksInYear:function(){return N(this.year(),1,4)},weeksInYear:function(){var t=this.localeData()._week;return N(this.year(),t.dow,t.doy)},get:function(t){return t=D(t),this[t]()},set:function(t,e){return t=D(t),"function"==typeof this[t]&&this[t](e),this},locale:function(t){return t===n?this._locale._abbr:(this._locale=we.localeData(t),this)},lang:d("moment().lang() is deprecated. Use moment().localeData() instead.",function(t){return t===n?this.localeData():(this._locale=we.localeData(t),this)}),localeData:function(){return this._locale}}),we.fn.millisecond=we.fn.milliseconds=ve("Milliseconds",!1),we.fn.second=we.fn.seconds=ve("Seconds",!1),we.fn.minute=we.fn.minutes=ve("Minutes",!1),we.fn.hour=we.fn.hours=ve("Hours",!0),we.fn.date=ve("Date",!0),we.fn.dates=d("dates accessor is deprecated. Use date instead.",ve("Date",!0)),we.fn.year=ve("FullYear",!0),we.fn.years=d("years accessor is deprecated. Use year instead.",ve("FullYear",!0)),we.fn.days=we.fn.day,we.fn.months=we.fn.month,we.fn.weeks=we.fn.week,we.fn.isoWeeks=we.fn.isoWeek,we.fn.quarters=we.fn.quarter,we.fn.toJSON=we.fn.toISOString,g(we.duration.fn=m.prototype,{_bubble:function(){var t,e,i,s=this._milliseconds,o=this._days,n=this._months,r=this._data,a=0;r.milliseconds=s%1e3,t=y(s/1e3),r.seconds=t%60,e=y(t/60),r.minutes=e%60,i=y(e/60),r.hours=i%24,o+=y(i/24),a=y(ye(o)),o-=y(be(a)),n+=y(o/30),o%=30,a+=y(n/12),n%=12,r.days=o,r.months=n,r.years=a},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return y(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*L(this._months/12)},humanize:function(t){var e=de(this,!t,this.localeData());return t&&(e=this.localeData().pastFuture(+this,e)),this.localeData().postformat(e)},add:function(t,e){var i=we.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=we.duration(t,e);return this._milliseconds-=i._milliseconds,this._days-=i._days,this._months-=i._months,this._bubble(),this},get:function(t){return t=D(t),this[t.toLowerCase()+"s"]()},as:function(t){var e,i;if(t=D(t),e=this._days+this._milliseconds/864e5,"month"===t||"year"===t)return i=this._months+12*ye(e),"month"===t?i:i/12;switch(e+=be(this._months/12),t){case"week":return e/7;case"day":return e;case"hour":return 24*e;case"minute":return 24*e*60;case"second":return 24*e*60*60;case"millisecond":return 24*e*60*60*1e3;default:throw new Error("Unknown unit "+t)}},lang:we.fn.lang,locale:we.fn.locale,toIsoString:d("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),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"},localeData:function(){return this._locale}});for(Me in li)li.hasOwnProperty(Me)&&_e(Me.toLowerCase());we.duration.fn.asMilliseconds=function(){return this.as("ms")},we.duration.fn.asSeconds=function(){return this.as("s")},we.duration.fn.asMinutes=function(){return this.as("m")},we.duration.fn.asHours=function(){return this.as("h")},we.duration.fn.asDays=function(){return this.as("d")},we.duration.fn.asWeeks=function(){return this.as("weeks")},we.duration.fn.asMonths=function(){return this.as("M")},we.duration.fn.asYears=function(){return this.as("y")},we.locale("en",{ordinal:function(t){var e=t%10,i=1===L(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),Re?o.exports=we:(s=function(t,e,i){return i.config&&i.config()&&i.config().noGlobal===!0&&(Ee.moment=Se),we}.call(e,i,e,o),!(s!==n&&(o.exports=s)),xe(!0))}).call(this)}).call(e,function(){return this}(),i(63)(t))},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(){this.boundFunction&&this.off("select",this.boundFunction);var t=this.constants.locales[this.constants.locale];if(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=""+t.add+"
"+t.link+"",1==this._getSelectedNodeCount()&&this.triggerFunctions.edit?this.manipulationDiv.innerHTML+="
"+t.editNode+"":1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()&&(this.manipulationDiv.innerHTML+="
"+t.editEdge+""),0==this._selectionIsEmpty()&&(this.manipulationDiv.innerHTML+="
"+t.del+"");var e=document.getElementById("network-manipulate-addNode");e.onclick=this._createAddNodeToolbar.bind(this);var i=document.getElementById("network-manipulate-connectNode");if(i.onclick=this._createAddEdgeToolbar.bind(this),1==this._getSelectedNodeCount()&&this.triggerFunctions.edit){var s=document.getElementById("network-manipulate-editNode");s.onclick=this._editNode.bind(this)}else if(1==this._getSelectedEdgeCount()&&0==this._getSelectedNodeCount()){var s=document.getElementById("network-manipulate-editEdge");s.onclick=this._createEditEdgeToolbar.bind(this)}if(0==this._selectionIsEmpty()){var o=document.getElementById("network-manipulate-delete");o.onclick=this._deleteSelected.bind(this)}var n=document.getElementById("network-manipulation-closeDiv");n.onclick=this._toggleEditMode.bind(this),this.boundFunction=this._createManipulatorBar.bind(this),this.on("select",this.boundFunction)}else{this.editModeDiv.innerHTML=""+t.edit+"";var r=document.getElementById("network-manipulate-editModeButton");r.onclick=this._toggleEditMode.bind(this)}},e._createAddNodeToolbar=function(){this._clearManipulatorBar(),this.boundFunction&&this.off("select",this.boundFunction);var t=this.constants.locales[this.constants.locale];this.manipulationDiv.innerHTML=""+t.back+"
"+t.addDescription+"";var e=document.getElementById("network-manipulate-back");e.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;var t=this.constants.locales[this.constants.locale];this.boundFunction&&this.off("select",this.boundFunction),this._unselectAll(),this.forceAppendSelection=!1,this.blockConnectingEdgeSelection=!0,this.manipulationDiv.innerHTML=""+t.back+"
"+t.linkDescription+"";var e=document.getElementById("network-manipulate-back");e.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();var t=this.constants.locales[this.constants.locale];this.manipulationDiv.innerHTML=""+t.back+"
"+t.editEdgeDescription+"";var e=document.getElementById("network-manipulate-back");e.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(this.constants.locales[this.constants.locale].createEdgeError):(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(this.constants.locales[this.constants.locale].createEdgeError):(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)throw new Error("The function for add does not support two arguments (data,callback)");var i=this;this.triggerFunctions.add(e,function(t){i.nodesData.add(t),i._createManipulatorBar(),i.moving=!0,i.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)throw new Error("The function for connect does not support two arguments (data,callback)");var s=this;this.triggerFunctions.connect(i,function(t){s.edgesData.add(t),s.moving=!0,s.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)throw new Error("The function for edit does not support two arguments (data, callback)");var s=this;this.triggerFunctions.editEdge(i,function(t){s.edgesData.update(t),s.moving=!0,s.start()})}else this.edgesData.update(i),this.moving=!0,this.start()}},e._editNode=function(){if(!this.triggerFunctions.edit||1!=this.editMode)throw new Error("No edit function has been bound to this button");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)throw new Error("The function for edit does not support two arguments (data, callback)");var i=this;this.triggerFunctions.edit(e,function(t){i.nodesData.update(t),i._createManipulatorBar(),i.moving=!0,i.start()})},e._deleteSelected=function(){if(!this._selectionIsEmpty()&&1==this.editMode)if(this._clusterInSelection())alert(this.constants.locales[this.constants.locale].deleteClusterError);else{var t=this.getSelectedNodes(),e=this.getSelectedEdges();if(this.triggerFunctions.del){var i=this,s={nodes:t,edges:e};if(!(this.triggerFunctions.del.length=2))throw new Error("The function for delete does not support two arguments (data, callback)");this.triggerFunctions.del(s,function(t){i.edgesData.remove(t.edges),i.nodesData.remove(t.nodes),i._unselectAll(),i.moving=!0,i.start()})}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){function e(t){throw new Error("Cannot find module '"+t+"'.")}e.resolve=e,e.keys=function(){return[]},t.exports=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){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}}])}); //# sourceMappingURL=vis.map \ No newline at end of file