diff --git a/HISTORY.md b/HISTORY.md index d2e02332..40214d13 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -11,6 +11,10 @@ http://visjs.org back to the original group. - Added localization support. - Implemented option `clickToUse`. +- Implemented function `focus(id)` to center a specific item (or multiple items) + on screen. +- Implemented an option `focus` for `setSelection(ids, options)`, to immediately + focus selected nodes. ### Network diff --git a/dist/vis.js b/dist/vis.js index 3393738a..c40a743d 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__(38); + exports.Timeline = __webpack_require__(12); + exports.Graph2d = __webpack_require__(13); exports.timeline = { - DataStep: __webpack_require__(41), - 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__(40), - GraphGroup: __webpack_require__(42), - Group: __webpack_require__(30), - ItemSet: __webpack_require__(29), - Legend: __webpack_require__(43), - LineGraph: __webpack_require__(39), - 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__(44); + exports.Network = __webpack_require__(32); exports.network = { - Edge: __webpack_require__(45), - Groups: __webpack_require__(47), - Images: __webpack_require__(48), - Node: __webpack_require__(46), - Popup: __webpack_require__(49), - dotparser: __webpack_require__(50), - gephiParser: __webpack_require__(51) + 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,30030 +1405,30092 @@ 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__(49); + 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__(49); + 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 + * @extends Core */ - 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) { + if (!(this instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - // TODO: get the actual rendered style of the containerElement - //ctx.font = this.containerElement.style.font; - ctx.font = 24 / this.camera.getArmLength() + 'px arial'; + var me = this; + this.defaultOptions = { + start: null, + end: null, - // 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; + autoResize: true, - // 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(); + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); - 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(); + // Create the DOM, props, and emitter + this._create(container); - 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(); - } + // all components listed here will be repainted automatically + this.components = []; - 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'; + 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); - // draw z-grid lines and axis - ctx.lineWidth = 1; - prettyStep = (this.defaultZStep === undefined); - step = new StepNumber(this.zMin, this.zMax, this.zStep, prettyStep); - step.start(); - if (step.getCurrent() < this.zMin) { - step.next(); - } - xText = (Math.cos(armAngle ) > 0) ? this.xMin : this.xMax; - yText = (Math.sin(armAngle ) < 0) ? this.yMin : this.yMax; - while (!step.end()) { - // TODO: make z-grid lines really 3d? - from = this._convert3Dto2D(new Point3d(xText, yText, step.getCurrent())); - ctx.strokeStyle = this.colorAxis; - ctx.beginPath(); - ctx.moveTo(from.x, from.y); - ctx.lineTo(from.x - textMargin, from.y); - ctx.stroke(); + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - ctx.textAlign = 'right'; - ctx.textBaseline = 'middle'; - ctx.fillStyle = this.colorAxis; - ctx.fillText(step.getCurrent() + ' ', from.x - 5, from.y); + // apply options + if (options) { + this.setOptions(options); + } - step.next(); + // create itemset + if (items) { + this.setItems(items); } - 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(); + else { + this.redraw(); + } + } - // 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(); + // Extend the functionality from Core + Timeline.prototype = new Core(); - // 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(); + /** + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + */ + Timeline.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - // 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); + // 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 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 + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); - // 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); + 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. + * @param {Object} [options] Available options: + * `focus: boolean` If true, focus will be set + * to the selected item(s) */ - 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, options) { + this.itemSet && this.itemSet.setSelection(ids); + if (ids && options) { + if (options.focus) { + this.focus(ids); + } + } + }; - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + /** + * 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() || []; + }; - // 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); + /** + * Adjust the visible window such that the selected item (or multiple items) + * are centered on screen. + * @param {String | String[]} id An item id or array with item ids + */ + Timeline.prototype.focus = function(id) { + if (!this.itemsData) return; - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + // get the specified item(s) + var itemsData = this.itemsData.getDataSet().get(id, { + type: { + start: 'Date', + end: 'Date' + } + }); - // 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; + // turn into an array in case of a single item + if (!Array.isArray(itemsData)) { + itemsData = [itemsData]; } - // sort the points on depth of their (x,y) position (not on z) - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + // calculate minimum start and maximum end of specified items + var start = null; + var end = null; + itemsData.forEach(function (itemData) { + var s = itemData.start.valueOf(); + var e = 'end' in itemData ? itemData.end.valueOf() :itemData.start.valueOf(); - 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 (start === null || s < start) { + start = s; + } - if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { + if (end === null || e > end) { + end = e; + } + }); - 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) + // calculate the new middle and interval for the window + var middle = (start + end) / 2; + var interval = Math.max((this.range.end - this.range.start), (end - start) * 1.1); - topSideVisible = (crossproduct.z > 0); - } - else { - topSideVisible = true; - } + this.range.setRange(middle - interval / 2, middle + interval / 2); + }; - 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 + /** + * 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; - 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; + 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 - 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(); - } + // calculate maximum value of fields 'start' and 'end' + var maxStartItem = dataset.max('start'); + if (maxStartItem) { + max = util.convert(maxStartItem.start, 'Date').valueOf(); } - } - 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()); - } - } - - 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(); + var maxEndItem = dataset.max('end'); + if (maxEndItem) { + if (max == null) { + max = util.convert(maxEndItem.end, 'Date').valueOf(); } - - 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; - - 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(); + else { + max = Math.max(max, util.convert(maxEndItem.end, 'Date').valueOf()); } } } + + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; }; - /** - * 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; + module.exports = Timeline; - 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; +/***/ }, +/* 13 */ +/***/ function(module, exports, __webpack_require__) { - // 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; - } + var Emitter = __webpack_require__(49); + 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); - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; + /** + * 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 + * @extends Core + */ + function Graph2d (container, items, options, groups) { + var me = this; + this.defaultOptions = { + start: null, + end: null, + + autoResize: true, + + orientation: 'bottom', + width: null, + height: null, + maxHeight: null, + minHeight: null }; - this.dataPoints.sort(sortDepth); + this.options = util.deepExtend({}, this.defaultOptions); - // 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]; + // Create the DOM, props, and emitter + this._create(container); - 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(); - } + // all components listed here will be repainted automatically + this.components = []; - // 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; + 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) } + }; - var radius; - if (this.showPerspective) { - radius = size / -point.trans.z; - } - else { - radius = size * -(this.eye.z / this.camera.getArmLength()); - } - if (radius < 0) { - radius = 0; - } + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; - 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); - } + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); - // 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(); - } - }; + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); - /** - * Draw all datapoints as bars. - * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' - */ - Graph3d.prototype._redrawDataBar = function() { - var canvas = this.frame.canvas; - var ctx = canvas.getContext('2d'); - var i, j, surface, corners; + // 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); - if (this.dataPoints === undefined || this.dataPoints.length <= 0) - return; // TODO: throw exception? + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); - // calculate the translations of all points - for (i = 0; i < this.dataPoints.length; i++) { - var trans = this._convertPointToTranslation(this.dataPoints[i].point); - var screen = this._convertTranslationToScreen(trans); - this.dataPoints[i].trans = trans; - this.dataPoints[i].screen = screen; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - // 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; + // apply options + if (options) { + this.setOptions(options); } - // order the translated points by depth - var sortDepth = function (a, b) { - return b.dist - a.dist; - }; - this.dataPoints.sort(sortDepth); + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); + } - // 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]; + // create itemset + if (items) { + this.setItems(items); + } + else { + this.redraw(); + } + } - // 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); - } + // Extend the functionality from Core + Graph2d.prototype = new Core(); - // 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); - } + /** + * Set items + * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + */ + Graph2d.prototype.setItems = function(items) { + var initialLoad = (this.itemsData == null); - // 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)} - ]; + // 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' + } + }); + } - // calculate screen location of the points - top.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); - bottom.forEach(function (obj) { - obj.screen = me._convert3Dto2D(obj.point); - }); - - // create five sides, calculate both corner points and center points - var surfaces = [ - {corners: top, center: Point3d.avg(bottom[0].point, bottom[2].point)}, - {corners: [top[0], top[1], bottom[1], bottom[0]], center: Point3d.avg(bottom[1].point, bottom[0].point)}, - {corners: [top[1], top[2], bottom[2], bottom[1]], center: Point3d.avg(bottom[2].point, bottom[1].point)}, - {corners: [top[2], top[3], bottom[3], bottom[2]], center: Point3d.avg(bottom[3].point, bottom[2].point)}, - {corners: [top[3], top[0], bottom[0], bottom[3]], center: Point3d.avg(bottom[0].point, bottom[3].point)} - ]; - point.surfaces = surfaces; - - // calculate the distance of each of the surface centers to the camera - for (j = 0; j < surfaces.length; j++) { - surface = surfaces[j]; - var transCenter = this._convertPointToTranslation(surface.center); - surface.dist = this.showPerspective ? transCenter.length() : -transCenter.z; - // TODO: this dept calculation doesn't work 100% of the cases due to perspective, - // but the current solution is fast/simple and works in 99.9% of all cases - // the issue is visible in example 14, with graph.setCameraPosition({horizontal: 2.97, vertical: 0.5, distance: 0.9}) - } - - // order the surfaces by their (translated) depth - surfaces.sort(function (a, b) { - var diff = b.dist - a.dist; - if (diff) return diff; + // 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; + } + else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; + } + else { + // turn an array into a dataset + newDataSet = new DataSet(groups); } - // start the line - if (this.dataPoints.length > 0) { - point = this.dataPoints[0]; + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); + }; - ctx.lineWidth = 1; // TODO: make customizable - ctx.strokeStyle = 'blue'; // TODO: make customizable - ctx.beginPath(); - ctx.moveTo(point.screen.x, point.screen.y); + /** + * 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); } - - // 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 { + return "cannot find group:" + groupId; } + } - // finish the line - if (this.dataPoints.length > 0) { - ctx.stroke(); + /** + * 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; + } + } + /** - * Start a moving operation inside the provided parent element - * @param {Event} event The event that occurred (required for - * retrieving the mouse position) + * 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 */ - Graph3d.prototype._onMouseDown = function(event) { - event = event || window.event; + Graph2d.prototype.getItemRange = function() { + var min = null; + var max = null; - // check if mouse is still down (may be up when focus is lost for example - // in an iframe) - if (this.leftButtonDown) { - this._onMouseUp(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; + } + } + } } - // only react on left mouse button down - this.leftButtonDown = event.which ? (event.which === 1) : (event.button === 1); - if (!this.leftButtonDown && !this.touchDown) return; + return { + min: (min != null) ? new Date(min) : null, + max: (max != null) ? new Date(max) : null + }; + }; - // 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'; + module.exports = Graph2d; - // 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); - }; +/***/ }, +/* 14 */ +/***/ function(module, exports, __webpack_require__) { /** - * Perform moving operating. - * This function activated from within the funcion Graph.mouseDown(). - * @param {Event} event Well, eehh, the event + * @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 */ - Graph3d.prototype._onMouseMove = function (event) { - event = event || window.event; + function DataStep(start, end, minimumStep, containerHeight, customRange) { + // variables + this.current = 0; - // calculate change in mouse position - var diffX = parseFloat(getMouseX(event)) - this.startMouseX; - var diffY = parseFloat(getMouseY(event)) - this.startMouseY; + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 1; - var horizontalNew = this.startArmRotation.horizontal + diffX / 200; - var verticalNew = this.startArmRotation.vertical + diffY / 200; + this.marginStart; + this.marginEnd; + this.deadSpace = 0; - var snapAngle = 4; // degrees - var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; - // 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; - } + this.setRange(start, end, minimumStep, containerHeight, customRange); + } - // 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.camera.setArmRotation(horizontalNew, verticalNew); - this.redraw(); - - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); - - 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); + // safety mechanism: if current time is still unchanged, move to the end + if (this.current == prev) { + this.current = this._end; + } + }; - this._onMouseUp(event); + /** + * Do the next step + */ + DataStep.prototype.previous = function() { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; }; + /** - * Event handler for mouse wheel event, used to zoom the graph - * Code from http://adomas.org/javascript-mouse-wheel/ - * @param {event} event The event + * Get the current datetime + * @return {String} current The current date */ - 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.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; + } } - // 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); + return toPrecision; + }; - this.camera.setArmLength(newLength); - this.redraw(); - this._hideTooltip(); - } - // fire a cameraPositionChange event - var parameters = this.getCameraPosition(); - this.emit('cameraPositionChange', parameters); + /** + * 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) { - // Prevent default actions caused by mouse wheel. - // That might be ugly, but we handle scrolls somehow - // anyway, so don't bother here.. - util.preventDefault(event); }; /** - * Test whether 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 + * 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._insideTriangle = function (point, triangle) { - var a = triangle[0], - b = triangle[1], - c = triangle[2]; + DataStep.prototype.isMajor = function() { + return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); + }; - function sign (x) { - return x > 0 ? 1 : x < 0 ? -1 : 0; - } + module.exports = DataStep; - 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); - }; - - /** - * 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 - */ - 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); - - 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; - - 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)'; + 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 - line = document.createElement('div'); - line.style.position = 'absolute'; - line.style.height = '40px'; - line.style.width = '0'; - line.style.borderLeft = '1px solid #4d4d4d'; + this.body = body; - 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'; + // default options + this.defaultOptions = { + start: null, + end: null, + direction: 'horizontal', // 'horizontal' or 'vertical' + moveable: true, + zoomable: true, + min: null, + max: null, + zoomMin: 10, // milliseconds + zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000 // milliseconds + }; + this.options = util.extend({}, this.defaultOptions); - this.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.props = { + touch: {} + }; - this._hideTooltip(); + // 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.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 + '
'; - } + // ignore dragging when holding + this.body.emitter.on('hold', this._onHold.bind(this)); - content.style.left = '0'; - content.style.top = '0'; - this.frame.appendChild(content); - this.frame.appendChild(line); - this.frame.appendChild(dot); + // mouse wheel for zooming + this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); + this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF - // calculate sizes - var contentWidth = content.offsetWidth; - var contentHeight = content.offsetHeight; - var lineHeight = line.offsetHeight; - var dotWidth = dot.offsetWidth; - var dotHeight = dot.offsetHeight; + // pinch to zoom + this.body.emitter.on('touch', this._onTouch.bind(this)); + this.body.emitter.on('pinch', this._onPinch.bind(this)); - 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; - }; - - module.exports = Graph3d; - - -/***/ }, -/* 10 */ -/***/ function(module, exports, __webpack_require__) { - - - /** - * Expose `Emitter`. - */ - - module.exports = Emitter; - - /** - * Initialize a new `Emitter`. - * - * @api public - */ - - function Emitter(obj) { - if (obj) return mixin(obj); + 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); + } }; /** - * Mixin the emitter properties. - * - * @param {Object} obj - * @return {Object} - * @api private + * 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; - function mixin(obj) { - for (var key in Emitter.prototype) { - obj[key] = Emitter.prototype[key]; + // check for valid number + if (isNaN(newStart) || newStart === null) { + throw new Error('Invalid start "' + start + '"'); } - return obj; - } - - /** - * Listen on the given `event` with `fn`. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ - - Emitter.prototype.on = - Emitter.prototype.addEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; - (this._callbacks[event] = this._callbacks[event] || []) - .push(fn); - return this; - }; - - /** - * Adds an `event` listener that will be invoked a single - * time then automatically removed. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ - - Emitter.prototype.once = function(event, fn){ - var self = this; - this._callbacks = this._callbacks || {}; - - function on() { - self.off(event, on); - fn.apply(this, arguments); + if (isNaN(newEnd) || newEnd === null) { + throw new Error('Invalid end "' + end + '"'); } - on.fn = fn; - this.on(event, on); - return this; - }; - - /** - * Remove the given callback for `event` or all - * registered callbacks. - * - * @param {String} event - * @param {Function} fn - * @return {Emitter} - * @api public - */ + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; + } - Emitter.prototype.off = - Emitter.prototype.removeListener = - Emitter.prototype.removeAllListeners = - Emitter.prototype.removeEventListener = function(event, fn){ - this._callbacks = this._callbacks || {}; + // prevent start < min + if (min !== null) { + if (newStart < min) { + diff = (min - newStart); + newStart += diff; + newEnd += diff; - // all - if (0 == arguments.length) { - this._callbacks = {}; - return this; + // prevent end > max + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } } - // specific event - var callbacks = this._callbacks[event]; - if (!callbacks) return this; + // prevent end > max + if (max !== null) { + if (newEnd > max) { + diff = (newEnd - max); + newStart -= diff; + newEnd -= diff; - // remove all handlers - if (1 == arguments.length) { - delete this._callbacks[event]; - return this; + // prevent start < min + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } } - // 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; + // 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; + } } } - return this; - }; - - /** - * Emit `event` with the given args. - * - * @param {String} event - * @param {Mixed} ... - * @return {Emitter} - */ - - 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); + // 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 this; + var changed = (this.start != newStart || this.end != newEnd); + + this.start = newStart; + this.end = newEnd; + + return changed; }; /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public + * Retrieve the current range. + * @return {Object} An object with start and end properties */ - - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks[event] || []; + Range.prototype.getRange = function() { + return { + start: this.start, + end: this.end + }; }; /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @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 */ - - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; + Range.prototype.conversion = function (width) { + return Range.conversion(this.start, this.end, width); }; - -/***/ }, -/* 11 */ -/***/ function(module, exports, __webpack_require__) { - /** - * @prototype Point3d - * @param {Number} [x] - * @param {Number} [y] - * @param {Number} [z] - */ - function Point3d(x, y, z) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - this.z = z !== undefined ? z : 0; - }; - - /** - * Subtract the two provided points, returns a-b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a-b + * 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 */ - 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.conversion = function (start, end, width) { + if (width != 0 && (end - start != 0)) { + return { + offset: start, + scale: width / (end - start) + } + } + else { + return { + offset: 0, + scale: 1 + }; + } }; /** - * Add the two provided points, returns a+b - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} a+b + * Start dragging horizontally or vertically + * @param {Event} event + * @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._onDragStart = function(event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - /** - * Calculate the average of two 3d points - * @param {Point3d} a - * @param {Point3d} b - * @return {Point3d} The average, (a+b)/2 - */ - Point3d.avg = function(a, b) { - return new Point3d( - (a.x + b.x) / 2, - (a.y + b.y) / 2, - (a.z + b.z) / 2 - ); + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + this.props.touch.start = this.start; + this.props.touch.end = this.end; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; + } }; /** - * 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 + * Perform dragging operation + * @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._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) + }); }; - /** - * Rtrieve the length of the vector (or the distance from this point to the origin - * @return {Number} length + * Stop dragging operation + * @param {event} event + * @private */ - Point3d.prototype.length = function() { - return Math.sqrt( - this.x * this.x + - this.y * this.y + - this.z * this.z - ); - }; + Range.prototype._onDragEnd = function (event) { + // only allow dragging when configured as movable + if (!this.options.moveable) return; - module.exports = Point3d; + // 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 (this.body.dom.root) { + this.body.dom.root.style.cursor = 'auto'; + } -/***/ }, -/* 12 */ -/***/ function(module, exports, __webpack_require__) { + // fire a rangechanged event + this.body.emitter.emit('rangechanged', { + start: new Date(this.start), + end: new Date(this.end) + }); + }; /** - * @prototype Point2d - * @param {Number} [x] - * @param {Number} [y] + * Event handler for mouse wheel event, used to zoom + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {Event} event + * @private */ - Point2d = function (x, y) { - this.x = x !== undefined ? x : 0; - this.y = y !== undefined ? y : 0; - }; - - module.exports = Point2d; + 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; + } -/***/ }, -/* 13 */ -/***/ function(module, exports, __webpack_require__) { + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + // perform the zoom action. Delta is normally 1 or -1 - var Point3d = __webpack_require__(11); + // 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)) ; + } - /** - * @class Camera - * The camera is mounted on a (virtual) camera arm. The camera arm can rotate - * The camera is always looking in the direction of the origin of the arm. - * This way, the camera always rotates around one fixed point, the location - * of the camera arm. - * - * Documentation: - * http://en.wikipedia.org/wiki/3D_projection - */ - Camera = function () { - this.armLocation = new Point3d(); - this.armRotation = {}; - this.armRotation.horizontal = 0; - this.armRotation.vertical = 0; - this.armLength = 1.7; + // 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.cameraLocation = new Point3d(); - this.cameraRotation = new Point3d(0.5*Math.PI, 0, 0); + this.zoom(scale, pointerDate); + } - this.calculateCameraOrientation(); + // Prevent default actions caused by mouse wheel + // (else the page and timeline both zoom and scroll) + event.preventDefault(); }; /** - * 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 + * Start of a touch gesture + * @private */ - Camera.prototype.setArmLocation = function(x, y, z) { - this.armLocation.x = x; - this.armLocation.y = y; - this.armLocation.z = z; - - this.calculateCameraOrientation(); + 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; }; /** - * 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. + * On start of a hold gesture + * @private */ - Camera.prototype.setArmRotation = function(horizontal, vertical) { - if (horizontal !== undefined) { - this.armRotation.horizontal = horizontal; - } - - if (vertical !== undefined) { - this.armRotation.vertical = vertical; - if (this.armRotation.vertical < 0) this.armRotation.vertical = 0; - if (this.armRotation.vertical > 0.5*Math.PI) this.armRotation.vertical = 0.5*Math.PI; - } - - if (horizontal !== undefined || vertical !== undefined) { - this.calculateCameraOrientation(); - } + Range.prototype._onHold = function () { + this.props.touch.allowDragging = false; }; /** - * Retrieve the current arm rotation - * @return {object} An object with parameters horizontal and vertical + * Handle pinch event + * @param {Event} event + * @private */ - Camera.prototype.getArmRotation = function() { - var rot = {}; - rot.horizontal = this.armRotation.horizontal; - rot.vertical = this.armRotation.vertical; + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; - return rot; - }; + this.props.touch.allowDragging = false; - /** - * Set the (normalized) length of the camera arm. - * @param {Number} length A length between 0.71 and 5.0 - */ - Camera.prototype.setArmLength = function(length) { - if (length === undefined) - return; + if (event.gesture.touches.length > 1) { + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); + } - this.armLength = length; + var scale = 1 / event.gesture.scale, + initDate = this._pointerToDate(this.props.touch.center); - // 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 = parseInt(initDate + (this.props.touch.start - initDate) * scale); + var newEnd = parseInt(initDate + (this.props.touch.end - initDate) * scale); - this.calculateCameraOrientation(); + // apply new range + this.setRange(newStart, newEnd); + } }; /** - * Retrieve the arm length - * @return {Number} length + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date + * @private */ - Camera.prototype.getArmLength = function() { - return this.armLength; - }; + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; - /** - * Retrieve the camera location - * @return {Point3d} cameraLocation - */ - Camera.prototype.getCameraLocation = function() { - return this.cameraLocation; + validateDirection(direction); + + 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; + } }; /** - * Retrieve the camera rotation - * @return {Point3d} cameraRotation + * 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.getCameraRotation = function() { - return this.cameraRotation; - }; + function getPointer (touch, element) { + return { + x: touch.pageX - util.getAbsoluteLeft(element), + y: touch.pageY - util.getAbsoluteTop(element) + }; + } /** - * Calculate the location and rotation of the camera based on the - * position and orientation of the camera arm + * 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.calculateCameraOrientation = function() { - // calculate location of the camera - this.cameraLocation.x = this.armLocation.x - this.armLength * Math.sin(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); - this.cameraLocation.y = this.armLocation.y - this.armLength * Math.cos(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); - this.cameraLocation.z = this.armLocation.z + this.armLength * Math.sin(this.armRotation.vertical); - - // calculate rotation of the camera - this.cameraRotation.x = Math.PI/2 - this.armRotation.vertical; - this.cameraRotation.y = 0; - this.cameraRotation.z = -this.armRotation.horizontal; - }; - - module.exports = Camera; + 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; + } -/***/ }, -/* 14 */ -/***/ function(module, exports, __webpack_require__) { + // calculate new start and end + var newStart = center + (this.start - center) * scale; + var newEnd = center + (this.end - center) * scale; - var DataView = __webpack_require__(8); + this.setRange(newStart, newEnd); + }; /** - * @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 + * 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 */ - 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); - } + Range.prototype.move = function(delta) { + // zoom start Date and end Date relative to the centerDate + var diff = (this.end - this.start); - // create an array with the filtered datapoints. this will be loaded afterwards - this.dataPoints = []; + // apply new values + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; - this.loaded = false; - this.onLoadCallback = undefined; + // TODO: reckon with min and max range - if (graph.animationPreload) { - this.loaded = false; - this.loadInBackground(); - } - else { - this.loaded = true; - } + this.start = newStart; + this.end = newEnd; }; - /** - * Return the label - * @return {string} label + * Move the range to a new center point + * @param {Number} moveTo New center point of the range */ - Filter.prototype.isLoaded = function() { - return this.loaded; - }; - + Range.prototype.moveTo = function(moveTo) { + var center = (this.start + this.end) / 2; - /** - * Return the loaded progress - * @return {Number} percentage between 0 and 100 - */ - Filter.prototype.getLoadedProgress = function() { - var len = this.values.length; + var diff = center - moveTo; - var i = 0; - while (this.dataPoints[i]) { - i++; - } + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; - return Math.round(i / len * 100); + this.setRange(newStart, newEnd); }; + module.exports = Range; - /** - * Return the label - * @return {string} label - */ - Filter.prototype.getLabel = function() { - return this.graph.filterLabel; - }; +/***/ }, +/* 16 */ +/***/ function(module, exports, __webpack_require__) { - /** - * Return the columnIndex of the filter - * @return {Number} columnIndex - */ - Filter.prototype.getColumn = function() { - return this.column; - }; + // Utility functions for ordering and stacking of items + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors /** - * Return the currently selected value. Returns undefined if there is no selection - * @return {*} value + * Order items by their start data + * @param {Item[]} items */ - Filter.prototype.getSelectedValue = function() { - if (this.index === undefined) - return undefined; - - return this.values[this.index]; + exports.orderByStart = function(items) { + items.sort(function (a, b) { + return a.data.start - b.data.start; + }); }; /** - * Retrieve all values of the filter - * @return {Array} values + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items */ - Filter.prototype.getValues = function() { - return this.values; + 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; + }); }; /** - * Retrieve one value of the filter - * @param {Number} index - * @return {*} value + * 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 */ - Filter.prototype.getValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; - - return this.values[index]; - }; + 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; + } + } - /** - * Retrieve the (filtered) dataPoints for the currently selected filter index - * @param {Number} [index] (optional) - * @return {Array} dataPoints - */ - Filter.prototype._getDataPoints = function(index) { - if (index === undefined) - index = this.index; + // 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; - if (index === undefined) - return []; + 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 dataPoints; - if (this.dataPoints[index]) { - dataPoints = this.dataPoints[index]; + 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); + } } - 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); + /** + * Adjust vertical positions of the items without stacking them + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + */ + exports.nostack = function(items, margin) { + var i, iMax; - this.dataPoints[index] = dataPoints; + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = margin.axis; } - - return dataPoints; }; - - /** - * Set a callback function when the filter is fully loaded. + * 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.setOnLoadCallback = function(callback) { - this.onLoadCallback = callback; + 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); + /** - * Add a value to the list with available values for this filter - * No double entries will be created. - * @param {Number} index + * @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.selectValue = function(index) { - if (index >= this.values.length) - throw 'Error: index out of range'; + function TimeStep(start, end, minimumStep) { + // variables + this.current = new Date(); + this._start = new Date(); + this._end = new Date(); - this.index = index; - this.value = this.values[index]; + this.autoScale = true; + this.scale = TimeStep.SCALE.DAY; + this.step = 1; + + // initialize the range + this.setRange(start, end, minimumStep); + } + + /// enum scale + TimeStep.SCALE = { + MILLISECOND: 1, + SECOND: 2, + MINUTE: 3, + HOUR: 4, + DAY: 5, + WEEKDAY: 6, + MONTH: 7, + YEAR: 8 }; + /** - * Load all filtered rows in the background one by one - * Start this method without providing an index! + * 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.loadInBackground = function(index) { - if (index === undefined) - index = 0; + TimeStep.prototype.setRange = function(start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } - var frame = this.graph.frame; + this._start = (start != undefined) ? new Date(start.valueOf()) : new Date(); + this._end = (end != undefined) ? new Date(end.valueOf()) : new Date(); - if (index < this.values.length) { - var dataPointsTemp = this._getDataPoints(index); - //this.graph.redrawInfo(); // TODO: not neat + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } + }; - // 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'; + /** + * Set the range iterator to the start date. + */ + TimeStep.prototype.first = function() { + this.current = new Date(this._start.valueOf()); + this.roundToMinor(); + }; - var me = this; - setTimeout(function() {me.loadInBackground(index+1);}, 10); - this.loaded = 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 + */ + 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 } - else { - this.loaded = true; - // remove the progress box - if (frame.progress !== undefined) { - frame.removeChild(frame.progress); - frame.progress = undefined; + 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; } - - if (this.onLoadCallback) - this.onLoadCallback(); } }; - module.exports = Filter; + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + TimeStep.prototype.hasNext = function () { + return (this.current.valueOf() <= this._end.valueOf()); + }; + /** + * Do the next step + */ + TimeStep.prototype.next = function() { + var prev = this.current.valueOf(); -/***/ }, -/* 15 */ -/***/ function(module, exports, __webpack_require__) { + // 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: - 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. - */ - function Slider(container, options) { - if (container === undefined) { - throw 'Error: No container element defined'; + 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; + } } - 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); - - this.frame.prev = document.createElement('INPUT'); - this.frame.prev.type = 'BUTTON'; - this.frame.prev.value = 'Prev'; - this.frame.appendChild(this.frame.prev); - - this.frame.play = document.createElement('INPUT'); - this.frame.play.type = 'BUTTON'; - this.frame.play.value = 'Play'; - this.frame.appendChild(this.frame.play); - - this.frame.next = document.createElement('INPUT'); - this.frame.next.type = 'BUTTON'; - this.frame.next.value = 'Next'; - this.frame.appendChild(this.frame.next); - - 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);}; + 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; + } } - this.onChangeCallback = undefined; - - this.values = []; - this.index = undefined; - - this.playTimeout = undefined; - this.playInterval = 1000; // milliseconds - this.playLoop = true; - } + 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; + } + } - /** - * Select the previous index - */ - Slider.prototype.prev = function() { - var index = this.getIndex(); - if (index > 0) { - index--; - this.setIndex(index); + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = new Date(this._end.valueOf()); } }; + /** - * Select the next index + * Get the current datetime + * @return {Date} current The current date */ - Slider.prototype.next = function() { - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } + TimeStep.prototype.getCurrent = function() { + return this.current; }; /** - * Select the next 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. */ - Slider.prototype.playNext = function() { - var start = new Date(); + TimeStep.prototype.setScale = function(newScale, newStep) { + this.scale = newScale; - var index = this.getIndex(); - if (index < this.values.length - 1) { - index++; - this.setIndex(index); - } - else if (this.playLoop) { - // jump to the start - index = 0; - this.setIndex(index); + if (newStep > 0) { + this.step = newStep; } - var end = new Date(); - var diff = (end - start); - - // calculate how much time it to to set the index and to execute the callback - // function. - var interval = Math.max(this.playInterval - diff, 0); - // document.title = diff // TODO: cleanup - - var me = this; - this.playTimeout = setTimeout(function() {me.playNext();}, interval); + this.autoScale = false; }; /** - * Toggle start or stop playing + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true */ - Slider.prototype.togglePlay = function() { - if (this.playTimeout === undefined) { - this.play(); - } else { - this.stop(); - } + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; }; + /** - * Start playing + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds */ - Slider.prototype.play = function() { - // Test whether already playing - if (this.playTimeout) return; - - this.playNext(); - - if (this.frame) { - this.frame.play.value = 'Stop'; + TimeStep.prototype.setMinimumStep = function(minimumStep) { + if (minimumStep == undefined) { + return; } - }; - /** - * Stop playing - */ - Slider.prototype.stop = function() { - clearInterval(this.playTimeout); - this.playTimeout = undefined; + var stepYear = (1000 * 60 * 60 * 24 * 30 * 12); + var stepMonth = (1000 * 60 * 60 * 24 * 30); + var stepDay = (1000 * 60 * 60 * 24); + var stepHour = (1000 * 60 * 60); + var stepMinute = (1000 * 60); + var stepSecond = (1000); + var stepMillisecond= (1); - if (this.frame) { - this.frame.play.value = 'Play'; - } + // 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;} }; /** - * Set a callback function which will be triggered when the value of the - * slider bar has changed. + * 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 */ - Slider.prototype.setOnChangeCallback = function(callback) { - this.onChangeCallback = callback; - }; + TimeStep.prototype.snap = function(date) { + var clone = new Date(date.valueOf()); - /** - * Set the interval for playing the list - * @param {Number} interval The interval in milliseconds - */ - Slider.prototype.setPlayInterval = function(interval) { - this.playInterval = interval; - }; + 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); + } - /** - * Retrieve the current play interval - * @return {Number} interval The interval in milliseconds - */ - Slider.prototype.getPlayInterval = function(interval) { - return this.playInterval; + clone.setHours(0); + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.DAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 24) * 24); break; + default: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.WEEKDAY) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 5: + case 2: + clone.setHours(Math.round(clone.getHours() / 12) * 12); break; + default: + clone.setHours(Math.round(clone.getHours() / 6) * 6); break; + } + clone.setMinutes(0); + clone.setSeconds(0); + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.HOUR) { + switch (this.step) { + case 4: + clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; + default: + clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; + } + clone.setSeconds(0); + clone.setMilliseconds(0); + } else if (this.scale == TimeStep.SCALE.MINUTE) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); + clone.setSeconds(0); + break; + case 5: + clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; + default: + clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; + } + clone.setMilliseconds(0); + } + else if (this.scale == TimeStep.SCALE.SECOND) { + //noinspection FallthroughInSwitchStatementJS + switch (this.step) { + case 15: + case 10: + clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); + clone.setMilliseconds(0); + break; + case 5: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; + default: + clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; + } + } + else if (this.scale == TimeStep.SCALE.MILLISECOND) { + var step = this.step > 5 ? this.step / 2 : 1; + clone.setMilliseconds(Math.round(clone.getMilliseconds() / step) * step); + } + + return clone; }; /** - * 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. + * 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.setPlayLoop = function(doLoop) { - this.playLoop = doLoop; + 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; + } }; /** - * Execute the onchange callback function + * 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.onChange = function() { - if (this.onChangeCallback !== undefined) { - this.onChangeCallback(); + 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 ''; } }; + /** - * redraw the slider on the correct place + * 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.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'; + TimeStep.prototype.getLabelMajor = function(date) { + if (date == undefined) { + date = this.current; + } - // position the slider button - var left = this.indexToLeft(this.index); - this.frame.slide.style.left = (left) + 'px'; + //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 ''; } }; + module.exports = TimeStep; - /** - * Set the list with values for the slider - * @param {Array} values A javascript array with values (any type) - */ - Slider.prototype.setValues = function(values) { - this.values = values; - if (this.values.length > 0) - this.setIndex(0); - else - this.index = undefined; - }; +/***/ }, +/* 18 */ +/***/ function(module, exports, __webpack_require__) { /** - * Select a value by its index - * @param {Number} index + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] */ - Slider.prototype.setIndex = function(index) { - if (index < this.values.length) { - this.index = index; + function Component (body, options) { + this.options = null; + this.props = null; + } - this.redraw(); - this.onChange(); - } - else { - throw 'Error: index out of range'; + /** + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options + */ + Component.prototype.setOptions = function(options) { + if (options) { + util.extend(this.options, options); } }; /** - * retrieve the index of the currently selected vaue - * @return {Number} index + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Slider.prototype.getIndex = function() { - return this.index; + Component.prototype.redraw = function() { + // should be implemented by the component + return false; }; - /** - * retrieve the currently selected value - * @return {*} value + * Destroy the component. Cleanup DOM and event listeners */ - Slider.prototype.get = function() { - return this.values[this.index]; + Component.prototype.destroy = function() { + // should be implemented by the component }; + /** + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected + */ + Component.prototype._isResized = function() { + var resized = (this.props._previousWidth !== this.props.width || + this.props._previousHeight !== this.props.height); - 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); - - 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', this.onmousemove); - util.addEventListener(document, 'mouseup', this.onmouseup); - util.preventDefault(event); - }; - - - Slider.prototype.leftToIndex = function (left) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; - var x = left - 3; - - 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.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; - return index; + return resized; }; - Slider.prototype.indexToLeft = function (index) { - var width = parseFloat(this.frame.bar.style.width) - - this.frame.slide.clientWidth - 10; - - var x = index / (this.values.length-1) * width; - var left = x + 3; + module.exports = Component; - return left; - }; +/***/ }, +/* 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); - Slider.prototype._onMouseMove = function (event) { - var diff = event.clientX - this.startClientX; - var x = this.startSlideX + diff; + /** + * A current time bar + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * @constructor CurrentTime + * @extends Component + */ + function CurrentTime (body, options) { + this.body = body; - var index = this.leftToIndex(x); + // default options + this.defaultOptions = { + showCurrentTime: true, - this.setIndex(index); + locales: locales, + locale: 'en' + }; + this.options = util.extend({}, this.defaultOptions); - util.preventDefault(); - }; + this._create(); + this.setOptions(options); + } - Slider.prototype._onMouseUp = function (event) { - this.frame.style.cursor = 'auto'; + CurrentTime.prototype = new Component(); - // remove event listeners - util.removeEventListener(document, 'mousemove', this.onmousemove); - util.removeEventListener(document, 'mouseup', this.onmouseup); + /** + * 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%'; - util.preventDefault(); + this.bar = bar; }; - module.exports = Slider; - - -/***/ }, -/* 16 */ -/***/ function(module, exports, __webpack_require__) { - /** - * @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, ...) + * Destroy the CurrentTime bar */ - function StepNumber(start, end, step, prettyStep) { - // set default values - this._start = 0; - this._end = 0; - this._step = 1; - this.prettyStep = true; - this.precision = 5; + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing - this._current = 0; - this.setRange(start, end, step, prettyStep); + this.body = null; }; /** - * 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, ...) + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] */ - StepNumber.prototype.setRange = function(start, end, step, prettyStep) { - this._start = start ? start : 0; - this._end = end ? end : 0; - - this.setStep(step, prettyStep); + CurrentTime.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCurrentTime', 'locale', 'locales'], this.options, options); + } }; /** - * 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, ...) + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - StepNumber.prototype.setStep = function(step, prettyStep) { - if (step === undefined || step <= 0) - return; + 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); - if (prettyStep !== undefined) - this.prettyStep = prettyStep; + this.start(); + } - if (this.prettyStep === true) - this._step = StepNumber.calculatePrettyStep(step); - else - this._step = step; + 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 { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + this.stop(); + } + + return false; }; /** - * 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 + * Start auto refreshing the current time bar */ - StepNumber.calculatePrettyStep = function (step) { - var log10 = function (x) {return Math.log(x) / Math.LN10;}; + CurrentTime.prototype.start = function() { + var me = this; - // try three steps (multiple of 1, 2, or 5 - var step1 = Math.pow(10, Math.round(log10(step))), - step2 = 2 * Math.pow(10, Math.round(log10(step / 2))), - step5 = 5 * Math.pow(10, Math.round(log10(step / 5))); + function update () { + me.stop(); - // 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; + // determine interval to refresh + var scale = me.body.range.conversion(me.body.domProps.center.width).scale; + var interval = 1 / scale / 10; + if (interval < 30) interval = 30; + if (interval > 1000) interval = 1000; - // for safety - if (prettyStep <= 0) { - prettyStep = 1; + me.redraw(); + + // start a timer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); } - return prettyStep; + update(); }; /** - * returns the current value of the step - * @return {Number} current value + * Stop auto refreshing the current time bar */ - StepNumber.prototype.getCurrent = function () { - return parseFloat(this._current.toPrecision(this.precision)); + CurrentTime.prototype.stop = function() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } }; - /** - * returns the current step size - * @return {Number} current step size - */ - StepNumber.prototype.getStep = function () { - return this._step; - }; - - /** - * Set the current value to the largest value smaller than start, which - * is a multiple of the step size - */ - StepNumber.prototype.start = function() { - this._current = this._start - this._start % this._step; - }; - - /** - * Do a step, add the step size to the current value - */ - StepNumber.prototype.next = function () { - this._current += this._step; - }; - - /** - * Returns true whether the end is reached - * @return {boolean} True if the current value has passed the end value. - */ - StepNumber.prototype.end = function () { - return (this._current > this._end); - }; - - module.exports = StepNumber; + module.exports = CurrentTime; /***/ }, -/* 17 */ +/* 20 */ /***/ function(module, exports, __webpack_require__) { - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); + var Hammer = __webpack_require__(41); 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 Component = __webpack_require__(18); + var moment = __webpack_require__(40); + var locales = __webpack_require__(44); /** - * 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 - * @extends Core + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCustomTime] + * @constructor CustomTime + * @extends Component */ - function Timeline (container, items, options) { - if (!(this instanceof Timeline)) { - throw new SyntaxError('Constructor must be called with the new operator'); - } - - var me = this; - this.defaultOptions = { - start: null, - end: null, - - autoResize: true, - - orientation: 'bottom', - width: null, - height: null, - maxHeight: null, - minHeight: null - }; - this.options = util.deepExtend({}, this.defaultOptions); - - // Create the DOM, props, and emitter - this._create(container); - // all components listed here will be repainted automatically - this.components = []; + function CustomTime (body, options) { + this.body = body; - 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) - } + // default options + this.defaultOptions = { + showCustomTime: false, + locales: locales, + locale: 'en' }; + this.options = util.extend({}, this.defaultOptions); - // 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); + this.customTime = new Date(); + this.eventParams = {}; // stores state parameters while dragging the bar - // 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); + // create the DOM + this._create(); - // item set - this.itemSet = new ItemSet(this.body); - this.components.push(this.itemSet); + this.setOptions(options); + } - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + CustomTime.prototype = new Component(); - // apply options + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCustomTime] + */ + CustomTime.prototype.setOptions = function(options) { if (options) { - this.setOptions(options); - } - - // create itemset - if (items) { - this.setItems(items); - } - else { - this.redraw(); + // copy all options that we know + util.selectiveExtend(['showCustomTime', 'locale', 'locales'], this.options, options); } - } - - // Extend the functionality from Core - Timeline.prototype = new Core(); + }; /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items + * Create the DOM for the custom time + * @private */ - Timeline.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); + 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; - // 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' - } - }); - } + 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); - // set items - this.itemsData = newDataSet; - this.itemSet && this.itemSet.setItems(newDataSet); + // 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)); + }; - if (initialLoad && ('start' in this.options || 'end' in this.options)) { - this.fit(); + /** + * Destroy the CustomTime bar + */ + CustomTime.prototype.destroy = function () { + this.options.showCustomTime = false; + this.redraw(); // will remove the bar from the DOM - 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.hammer.enable(false); + this.hammer = null; - this.setWindow(start, end); - } + this.body = null; }; /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - 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; + CustomTime.prototype.redraw = function () { + if (this.options.showCustomTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + parent.appendChild(this.bar); + } + + var x = this.body.util.toScreen(this.customTime); + + 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); + + this.bar.style.left = x + 'px'; + this.bar.title = title; } else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } } - this.groupsData = newDataSet; - this.itemSet.setGroups(newDataSet); + return false; }; /** - * 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. + * Set custom time. + * @param {Date} time */ - Timeline.prototype.setSelection = function(ids) { - this.itemSet && this.itemSet.setSelection(ids); + CustomTime.prototype.setCustomTime = function(time) { + this.customTime = new Date(time.valueOf()); + this.redraw(); }; /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items + * Retrieve the current custom time. + * @return {Date} customTime */ - Timeline.prototype.getSelection = function() { - return this.itemSet && this.itemSet.getSelection() || []; + CustomTime.prototype.getCustomTime = function() { + return new Date(this.customTime.valueOf()); }; + /** + * Start moving horizontally + * @param {Event} event + * @private + */ + CustomTime.prototype._onDragStart = function(event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; + + event.stopPropagation(); + event.preventDefault(); + }; /** - * 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 + * Perform moving operating. + * @param {Event} event + * @private */ - Timeline.prototype.getItemRange = function() { - // calculate min from start filed - var dataset = this.itemsData.getDataSet(), - min = null, - max = null; + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; - if (dataset) { - // calculate the minimum value of the field 'start' - var minItem = dataset.min('start'); - min = minItem ? util.convert(minItem.start, 'Date').valueOf() : null; - // Note: we convert first to Date and then to number because else - // a conversion from ISODate to Number will fail + var deltaX = event.gesture.deltaX, + x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, + time = this.body.util.toTime(x); - // 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()); - } - } - } + this.setCustomTime(time); - return { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; - }; + // fire a timechange event + this.body.emitter.emit('timechange', { + time: new Date(this.customTime.valueOf()) + }); + event.stopPropagation(); + event.preventDefault(); + }; - module.exports = Timeline; + /** + * Stop moving operating. + * @param {event} event + * @private + */ + 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()) + }); -/***/ }, -/* 18 */ -/***/ function(module, exports, __webpack_require__) { + event.stopPropagation(); + event.preventDefault(); + }; - // 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.'); - } - } + module.exports = CustomTime; /***/ }, -/* 19 */ +/* 21 */ /***/ 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'; + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(18); + var DataStep = __webpack_require__(14); /** - * @main - * @module hammer - * - * @class Hammer - * @static + * A horizontal time axis + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @constructor DataAxis + * @extends Component + * @param body */ + function DataAxis (body, options, svg) { + this.id = util.randomUUID(); + this.body = body; - /** - * 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 || {}); - }; + 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} + } + }; - /** - * version, as defined in package.json - * the value will be set at each build - * @property VERSION - * @final - * @type {String} - */ - Hammer.VERSION = '1.1.3'; + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {} + }; - /** - * 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', + this.dom = {}; - /** - * 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.range = {start:0, end: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', + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; - /** - * Specifies whether zooming is enabled. Used by IE10> - * @property defaults.behavior.contentZooming - * @type {String} - * @default 'none' - */ - contentZooming: 'none', + this.setOptions(options); + this.width = Number(('' + this.options.width).replace("px","")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; - /** - * 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', + this.stepPixels = 25; + this.stepPixelsForced = 25; + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; - /** - * 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)' + + this.groups = {}; + this.amountOfGroups = 0; + + // create the HTML DOM + this._create(); + } + + DataAxis.prototype = new Component(); + + + + 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; + }; + + DataAxis.prototype.removeGroup = function(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; + + + 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(); } + } }; - /** - * hammer document where the base events are added at - * @property DOCUMENT - * @type {HTMLElement} - * @default window.document - */ - Hammer.DOCUMENT = document; /** - * detect support for pointer events - * @property HAS_POINTEREVENTS - * @type {Boolean} + * Create the HTML DOM for the DataAxis */ - Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; + 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; - /** - * detect support for touch events - * @property HAS_TOUCHEVENTS - * @type {Boolean} - */ - Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; - /** - * detect mobile browsers - * @property IS_MOBILE - * @type {Boolean} - */ - Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); + // 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); + }; - /** - * 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; + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); - /** - * interval in which Hammer recalculates current velocity/direction/angle in ms - * @property CALCULATE_INTERVAL - * @type {Number} - * @default 25 - */ - Hammer.CALCULATE_INTERVAL = 25; + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; - /** - * 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 (this.options.orientation == 'left') { + x = iconOffset; + } + else { + x = this.width - iconWidth - iconOffset; + } - /** - * 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'; + 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; + } + } + } - /** - * 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'; + DOMutil.cleanupElements(this.svgElements); + }; /** - * eventtypes - * @property EVENT_START|MOVE|END|RELEASE|TOUCH - * @final - * @type {String} - * @default 'start' 'change' 'move' 'end' 'release' 'touch' + * Create the HTML DOM for the DataAxis */ - 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'; + DataAxis.prototype.show = function() { + if (!this.dom.frame.parentNode) { + if (this.options.orientation == 'left') { + this.body.dom.left.appendChild(this.dom.frame); + } + else { + this.body.dom.right.appendChild(this.dom.frame); + } + } - /** - * if the window events are set... - * @property READY - * @writeOnce - * @type {Boolean} - * @default false - */ - Hammer.READY = false; + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } + }; /** - * plugins namespace - * @property plugins - * @type {Object} + * Create the HTML DOM for the DataAxis */ - Hammer.plugins = Hammer.plugins || {}; + DataAxis.prototype.hide = function() { + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + + if (this.dom.lineContainer.parentNode) { + this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); + } + }; /** - * gestures namespace - * see `/gestures` for the definitions - * @property gestures - * @type {Object} + * Set a range (start and end) + * @param end + * @param start + * @param end */ - Hammer.gestures = Hammer.gestures || {}; + DataAxis.prototype.setRange = function (start, end) { + this.range.start = start; + this.range.end = end; + }; /** - * setup events to detect gestures on the document - * this function is called when creating an new instance - * @private + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - function setup() { - if(Hammer.READY) { - return; + 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... - // find what eventtypes we add listeners to - Event.determineEventTypes(); + this.dom.lineContainer.style.height = this.height + 'px'; + this.width = this.options.visible == true ? Number(('' + this.options.width).replace("px","")) : 0; - // Register all gestures inside Hammer.gestures - Utils.each(Hammer.gestures, function(gesture) { - Detection.register(gesture); - }); + var props = this.props; + var frame = this.dom.frame; - // Add touch events on the document - Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); - Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); + // update classname + frame.className = 'dataaxis'; - // Hammer is ready...! - Hammer.READY = true; - } + // calculate character width and height + this._calculateCharSize(); - /** - * @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; - }, + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; - /** - * 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); - }, + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; - /** - * 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); - }, + 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; - /** - * 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; + // 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; + }; - // 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; - } - } - } - }, + /** + * 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); - /** - * 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; - }, + var orientation = this.options['orientation']; - /** - * 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; - } - }, + // 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; - /** - * 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); - }, + var amountOfSteps = this.height / stepPixels; + var stepDifference = 0; - /** - * 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; - }, + 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; + } - /** - * 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 - }; - } + this.valueAtZero = step.marginEnd; + var marginStartPos = 0; - Utils.each(touches, function(touch) { - pageX.push(touch.pageX); - pageY.push(touch.pageY); - clientX.push(touch.clientX); - clientY.push(touch.clientY); - }); + // do not draw the first label + var max = 1; - 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 - }; - }, + 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(); - /** - * 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 - }; - }, - - /** - * 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; + 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); + } - return Math.atan2(y, x) * 180 / Math.PI; - }, + 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); + } - /** - * 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); + max++; + } - if(x >= y) { - return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; - } - return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; - }, + if (this.master == false) { + this.conversionFactor = y / (this.valueAtZero - step.current); + } + else { + this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; + } - /** - * 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; + var offset = this.options.icons == true ? this.options.iconWidth + this.options.labelOffsetX + 15 : this.options.labelOffsetX + 15; + // this will resize the yAxis to accomodate the labels. + if (this.maxLabelSize > (this.width - offset) && this.options.visible == true) { + this.width = this.maxLabelSize + offset; + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + return true; + } + // this will resize the yAxis if it is too big for the labels. + else if (this.maxLabelSize < (this.width - offset) && this.options.visible == true && this.width > this.minWidth) { + this.width = Math.max(this.minWidth,this.maxLabelSize + offset); + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + return true; + } + else { + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + return false; + } + }; - return Math.sqrt((x * x) + (y * y)); - }, + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtZero - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; + }; - /** - * 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; - }, + /** + * 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"; + } - /** - * 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; - }, + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; - /** - * 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; - }, + text += ''; - /** - * set css properties with their prefixes - * @param {HTMLElement} element - * @param {String} prop - * @param {String} value - * @param {Boolean} [toggle=true] - * @return {Boolean} - */ - setPrefixedCss: function setPrefixedCss(element, prop, value, toggle) { - var prefixes = ['', 'Webkit', 'Moz', 'O', 'ms']; - prop = Utils.toCamelCase(prop); + var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; + } + }; - 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); - } + /** + * 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 = ''; - // test the style - if(p in element.style) { - element.style[p] = (toggle == null || toggle) && value || ''; - break; - } - } - }, + if (orientation == 'left') { + line.style.left = (this.width - offset) + 'px'; + } + else { + line.style.right = (this.width - offset) + 'px'; + } - /** - * 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; - } + line.style.width = width + 'px'; + line.style.top = y + 'px'; + } + }; - // set the css properties - Utils.each(props, function(value, prop) { - Utils.setPrefixedCss(element, prop, value, toggle); - }); - 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(); - }); - } - }; - - /** - * @module hammer - */ /** - * @class Event - * @static + * 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 */ - 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, + 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); - /** - * if EVENT_START has been fired - * @property started - * @private - * @type {Boolean} - */ - started: false, + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; - /** - * when the mouse is hold down, this is true - * @property should_detect - * @private - * @type {Boolean} - */ - shouldDetect: false, + this.dom.frame.removeChild(measureCharMinor); + } - /** - * 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); - }); - }, + 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); - /** - * 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.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; - /** - * 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.dom.frame.removeChild(measureCharMajor); + } + }; - var onTouchHandler = function onTouchHandler(ev) { - var srcType = ev.type.toLowerCase(), - isPointer = Hammer.HAS_POINTEREVENTS, - isMouse = Utils.inStr(srcType, 'mouse'), - triggerType; + /** + * 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); + }; - // 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; + module.exports = DataAxis; - // 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; - } - // update the pointer event before entering the detection - if(isPointer && eventType != EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } +/***/ }, +/* 22 */ +/***/ function(module, exports, __webpack_require__) { - // we are in a touch/down state, so allowed detection of gestures - if(self.shouldDetect) { - triggerType = self.doDetect.call(self, ev, eventType, element, handler); - } + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); - // ...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 - } + /** + * @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'] + 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; + } - if(isPointer && eventType == EVENT_END) { - PointerEvent.updatePointer(eventType, ev); - } - }; + 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 = []; + } + }; - this.on(element, EVENT_TYPES[eventType], onTouchHandler); - return onTouchHandler; - }, + GraphGroup.prototype.setZeroPosition = function(pos) { + this.zeroPosition = pos; + }; - /** - * 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; + GraphGroup.prototype.setOptions = function(options) { + if (options !== undefined) { + var fields = ['sampling','style','sort','yAxisOrientation','barChart']; + util.selectiveDeepExtend(fields, this.options, options); - // 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; + util.mergeOptions(this.options, options,'catmullRom'); + util.mergeOptions(this.options, options,'drawPoints'); + util.mergeOptions(this.options, options,'shaded'); - // keep track of how many touches have been removed - changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + 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; + } } + } + } + } + }; - // 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; - } + 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); + }; - // detection has been started, we keep track of this, see above - this.started = true; + GraphGroup.prototype.drawIcon = function(x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; - // generate some event data, some basic information - var evData = this.collectEventData(element, triggerType, touchList, ev); + 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"); - // trigger the triggerType event before the change (TOUCH, RELEASE) events - // but the END event should be at last - if(eventType != EVENT_END) { - handler.call(Detection, evData); - } + if (this.options.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"); + } - // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed - if(triggerChange) { - evData.changedLength = changedLength; - evData.eventType = triggerChange; + if (this.options.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); - handler.call(Detection, evData); + var offset = Math.round((iconWidth - (2 * barWidth))/3); - evData.eventType = triggerType; - delete evData.changedLength; - } + 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); + } + }; - // trigger the END event - if(triggerType == EVENT_END) { - handler.call(Detection, evData); + /** + * + * @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}; + } - // ...and we are done with the detection - // so reset everything to start each detection totally fresh - this.started = false; - } + module.exports = GraphGroup; - return triggerType; - }, - /** - * we have different events for each device/browser - * determine what we need and set them in the EVENT_TYPES constant - * the `onTouch` method is bind to these properties. - * @method determineEventTypes - * @return {Object} events - */ - determineEventTypes: function determineEventTypes() { - var types; - if(Hammer.HAS_POINTEREVENTS) { - if(window.PointerEvent) { - types = [ - 'pointerdown', - 'pointermove', - 'pointerup pointercancel lostpointercapture' - ]; - } else { - types = [ - 'MSPointerDown', - 'MSPointerMove', - 'MSPointerUp MSPointerCancel MSLostPointerCapture' - ]; - } - } else if(Hammer.NO_MOUSEEVENTS) { - types = [ - 'touchstart', - 'touchmove', - 'touchend touchcancel' - ]; - } else { - types = [ - 'touchstart mousedown', - 'touchmove mousemove', - 'touchend touchcancel mouseup' - ]; - } +/***/ }, +/* 23 */ +/***/ function(module, exports, __webpack_require__) { - EVENT_TYPES[EVENT_START] = types[0]; - EVENT_TYPES[EVENT_MOVE] = types[1]; - EVENT_TYPES[EVENT_END] = types[2]; - return EVENT_TYPES; - }, + var util = __webpack_require__(1); + var stack = __webpack_require__(16); + var ItemRange = __webpack_require__(31); - /** - * 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(); - } + /** + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function Group (groupId, data, itemSet) { + this.groupId = groupId; - // get the touchlist - if(ev.touches) { - if(eventType == EVENT_MOVE) { - return ev.touches; - } + this.itemSet = itemSet; - var identifiers = []; - var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); - var touchList = []; + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; - Utils.each(concat, function(touch) { - if(Utils.inArray(identifiers, touch.identifier) === false) { - touchList.push(touch); - } - identifiers.push(touch.identifier); - }); + 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: [] + }; - return touchList; - } + this._create(); - // make fake touchList from mouse position - ev.identifier = 1; - return [ev]; - }, + this.setData(data); + } - /** - * 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; - } + /** + * Create DOM elements for the group + * @private + */ + Group.prototype._create = function() { + var label = document.createElement('div'); + label.className = 'vlabel'; + this.dom.label = label; - return { - center: Utils.getCenter(touches), - timeStamp: Date.now(), - target: ev.target, - touches: touches, - eventType: eventType, - pointerType: pointerType, - srcEvent: ev, + var inner = document.createElement('div'); + inner.className = 'inner'; + label.appendChild(inner); + this.dom.inner = inner; - /** - * 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 = document.createElement('div'); + foreground.className = 'group'; + foreground['timeline-group'] = this; + this.dom.foreground = foreground; - /** - * stop bubbling the event up to its parents - */ - stopPropagation: function() { - this.srcEvent.stopPropagation(); - }, + this.dom.background = document.createElement('div'); + this.dom.background.className = 'group'; - /** - * immediately stop gesture detection - * might be useful after a swipe was detected - * @return {*} - */ - stopDetect: function() { - return Detection.stopDetect(); - } - }; - } - }; + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'group'; + // 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); + }; /** - * @module hammer - * - * @class PointerEvent - * @static + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className */ - var PointerEvent = Hammer.PointerEvent = { - /** - * holds all pointers, by `identifier` - * @property pointers - * @type {Object} - */ - pointers: {}, - - /** - * get the pointers as an array - * @method getTouchList - * @return {Array} touchlist - */ - getTouchList: function getTouchList() { - var touchlist = []; - // we can use forEach since pointerEvents only is in IE10 - Utils.each(this.pointers, function(pointer) { - touchlist.push(pointer); - }); - return touchlist; - }, - - /** - * update 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; - } + 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 + } - var pt = ev.pointerType, - types = {}; + // update title + this.dom.label.title = data && data.title || ''; - 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]; - }, + if (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, 'hidden'); + } + else { + util.removeClassName(this.dom.inner, 'hidden'); + } - /** - * reset the stored pointers - * @method reset - */ - reset: function resetList() { - this.pointers = {}; + // 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); + } }; - /** - * @module hammer - * - * @class Detection - * @static + * Get the width of the group label + * @return {number} width */ - var Detection = Hammer.detection = { - // contains all registred Hammer.gestures in the correct order - gestures: [], + Group.prototype.getLabelWidth = function() { + return this.props.label.width; + }; - // 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, + /** + * 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; - // when this becomes true, no gestures are fired - stopped: false, + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); - /** - * 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; - } + // force recalculation of the height of the items when the marker height changed + // (due to the Timeline being attached to the DOM or changed from display:none to visible) + var markerHeight = this.dom.marker.clientHeight; + if (markerHeight != this.lastMarkerHeight) { + this.lastMarkerHeight = markerHeight; - this.stopped = false; + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); - // 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 - }; + restack = true; + } - this.detect(eventData); - }, + // 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); + } - /** - * Hammer.gesture detection - * @method detect - * @param {Object} eventData - * @return {any} - */ - detect: function detect(eventData) { - if(!this.current || this.stopped) { - return; - } + // 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); - // extend event data with calculations about scale, distance etc - eventData = this.extendEventData(eventData); + // 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; - // hammer instance and instance options - var inst = this.current.inst, - instOptions = inst.options; + // 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; - // 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); + // apply new height + this.dom.background.style.height = height + 'px'; + this.dom.foreground.style.height = height + 'px'; + this.dom.label.style.height = height + 'px'; - // store as previous event event - if(this.current) { - this.current.lastEvent = eventData; - } + // 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(); + } - if(eventData.eventType == EVENT_END) { - this.stopDetect(); - } + return resized; + }; - return eventData; - }, + /** + * Show this group: attach to the DOM + */ + Group.prototype.show = function() { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } - /** - * 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); + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } - // reset the current - this.current = null; - this.stopped = true; - }, + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } - /** - * 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 (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); + } + }; - 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; - } + /** + * Hide this group: remove from the DOM + */ + Group.prototype.hide = function() { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); + } - if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { - cur.futureCalcEvent = ev; - } + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } - 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); + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); + } - cur.lastCalcEvent = cur.futureCalcEvent || ev; - cur.futureCalcEvent = ev; - } + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + }; - ev.velocityX = calcData.velocity.x; - ev.velocityY = calcData.velocity.y; - ev.interimAngle = calcData.angle; - ev.interimDirection = calcData.direction; - }, + /** + * Add an item to the group + * @param {Item} item + */ + Group.prototype.add = function(item) { + this.items[item.id] = item; + item.setParent(this); - /** - * 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; + 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); + } + }; - // 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 - }); - }); - } + /** + * Remove an item from the group + * @param {Item} item + */ + Group.prototype.remove = function(item) { + delete this.items[item.id]; + item.setParent(this.itemSet); - var deltaTime = ev.timeStamp - startEv.timeStamp, - deltaX = ev.center.clientX - startEv.center.clientX, - deltaY = ev.center.clientY - startEv.center.clientY; + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); - this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + // TODO: also remove from ordered items? + }; - Utils.extend(ev, { - startEvent: startEv, + /** + * Remove an item from the corresponding DataSet + * @param {Item} item + */ + Group.prototype.removeFromDataSet = function(item) { + this.itemSet.removeItem(item.id); + }; - deltaTime: deltaTime, - deltaX: deltaX, - deltaY: deltaY, + /** + * Reorder the items + */ + Group.prototype.order = function() { + var array = util.toArray(this.items); + this.orderedItems.byStart = array; + this.orderedItems.byEnd = this._constructByEndArray(array); - 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) - }); + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); + }; - return ev; - }, + /** + * 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 = []; - /** - * 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; - } + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); + } + } + return endArray; + }; - // extend Hammer default options with the Hammer.gesture options - Utils.extend(Hammer.defaults, options, true); + /** + * 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; - // set its index - gesture.index = gesture.index || 1000; + // 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); + } + } - // add Hammer.gesture to the list - this.gestures.push(gesture); + // 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]); + } - // 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; - }); + // use visible search to find a visible ItemRange (only based on endTime) + var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); - return this.gestures; + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByStart != -1) { + for (i = initialPosByStart; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + for (i = initialPosByStart + 1; i < orderedItems.byStart.length; i++) { + if (this._checkIfInvisible(orderedItems.byStart[i], newVisibleItems, range)) {break;} + } + } + + // if we found a initial ID to use, trace it up and down until we meet an invisible item. + if (initialPosByEnd != -1) { + for (i = initialPosByEnd; i >= 0; i--) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} } + for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { + if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + } + } + + return newVisibleItems; }; - /** - * @module hammer - */ /** - * create new hammer instance - * all methods should return the instance itself, so it is chainable. + * 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. * - * @class Instance - * @constructor - * @param {HTMLElement} element - * @param {Object} [options={}] options are merged with `Hammer.defaults` - * @return {Hammer.Instance} + * @param {Item} item + * @param {Item[]} visibleItems + * @param {{start:number, end:number}} range + * @returns {boolean} + * @private */ - Hammer.Instance = function(element, options) { - var self = this; - - // setup HammerJS window events and register all gestures - // this also sets up the default options - setup(); + 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; + } + }; - /** - * @property element - * @type {HTMLElement} - */ - this.element = element; + /** + * 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(); + } + }; - /** - * @property enabled - * @type {Boolean} - * @protected - */ - this.enabled = true; + module.exports = 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; - }); - this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { - // 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); - } + 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); - /** - * 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 = []; - }; + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items - 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; - }, + /** + * 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; - /** - * unbind events to the instance - * @method off - * @chainable - * @param {String} gestures - * @param {Function} handler - */ - off: function offEvent(gestures, handler) { - var self = this; + this.defaultOptions = { + type: null, // 'box', 'point', 'range' + orientation: 'bottom', // 'top' or 'bottom' + align: 'center', // alignment of box items + stack: true, + groupOrder: null, - 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; + selectable: true, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false }, - /** - * trigger gesture event - * @method trigger - * @chainable - * @param {String} gesture - * @param {Object} [eventData] - */ - trigger: function triggerEvent(gesture, eventData) { - // optional - if(!eventData) { - eventData = {}; - } - - // create DOM event - var event = Hammer.DOCUMENT.createEvent('Event'); - event.initEvent(gesture, true, true); - event.gesture = eventData; - - // 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; - } - - element.dispatchEvent(event); - return this; + onAdd: function (item, callback) { + callback(item); }, - - /** - * enable of disable hammer.js detection - * @method enable - * @chainable - * @param {Boolean} state - */ - enable: function enable(state) { - this.enabled = state; - return this; + onUpdate: function (item, callback) { + callback(item); + }, + onMove: function (item, callback) { + callback(item); + }, + onRemove: function (item, callback) { + callback(item); }, - /** - * dispose this hammer instance - * @method dispose - * @return {Null} - */ - dispose: function dispose() { - var i, eh; + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + }, + padding: 5 + }; - // undo all changes made by stop_browser_behavior - Utils.toggleBehavior(this.element, this.options.behavior, false); + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); - // unbind all custom event handlers - for(i = -1; (eh = this.eventHandlers[++i]);) { - Utils.off(this.element, eh.gesture, eh.handler); - } + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: {start: 'Date', end: 'Date'} + }; - this.eventHandlers = []; + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; - // unbind the start event listener - Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet - return null; + // 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); + } + }; - /** - * @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 - */ - /** - * @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 - */ - - /** - * @param {String} name - */ - (function(name) { - var triggered = false; - - function dragGesture(ev, inst) { - var cur = Detection.current; - - // max touches - if(inst.options.dragMaxTouches > 0 && - ev.touches.length > inst.options.dragMaxTouches) { - return; - } + this.items = {}; // object with an Item for every data item + this.groups = {}; // Group object for every group + this.groupIds = []; - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + this.selection = []; // list with the ids of all selected nodes + this.stackDirty = true; // if true, all items will be restacked on next redraw - 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; - } + this.touchParams = {}; // stores properties while dragging + // create the HTML DOM - var startCenter = cur.startEvent.center; + this._create(); - // 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; + this.setOptions(options); + } - // recalculate event data using new start point - ev = Detection.extendEventData(ev); - } - } + ItemSet.prototype = new Component(); - // lock drag to axis? - if(cur.lastEvent.dragLockToAxis || - ( inst.options.dragLockToAxis && - inst.options.dragLockMinDistance <= ev.distance - )) { - ev.dragLockToAxis = true; - } + // available item types will be registered here + ItemSet.types = { + box: ItemBox, + range: ItemRange, + point: ItemPoint + }; - // 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; - } - } + /** + * 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; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + // create background panel + var background = document.createElement('div'); + background.className = 'background'; + frame.appendChild(background); + this.dom.background = background; - // trigger events - inst.trigger(name, ev); - inst.trigger(name + ev.direction, ev); + // create foreground panel + var foreground = document.createElement('div'); + foreground.className = 'foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; - var isVertical = Utils.isVertical(ev.direction); + // create axis panel + var axis = document.createElement('div'); + axis.className = 'axis'; + this.dom.axis = axis; - // block the browser events - if((inst.options.dragBlockVertical && isVertical) || - (inst.options.dragBlockHorizontal && !isVertical)) { - ev.preventDefault(); - } - break; + // create labelset + var labelSet = document.createElement('div'); + labelSet.className = 'labelset'; + this.dom.labelSet = labelSet; - case EVENT_RELEASE: - if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; + // create ungrouped Group + this._updateUngrouped(); - case EVENT_END: - triggered = false; - break; - } - } + // 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 + }); - 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, + // 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)); - /** - * 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, + // single select (or unselect) when tapping an item + this.hammer.on('tap', this._onSelectItem.bind(this)); - /** - * set 0 for unlimited, but this can conflict with transform - * @property dragMaxTouches - * @type {Number} - * @default 1 - */ - dragMaxTouches: 1, + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on('hold', this._onMultiSelectItem.bind(this)); - /** - * 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, + // add item on doubletap + this.hammer.on('doubletap', this._onAddItem.bind(this)); - /** - * same as `dragBlockHorizontal`, but for vertical movement - * @property dragBlockVertical - * @type {Boolean} - * @default false - */ - dragBlockVertical: false, + // attach to the DOM + this.show(); + }; - /** - * 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, + /** + * 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); - /** - * 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 + 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); + } } - }; - })('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); + 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(); + } }; /** - * @module gestures + * Mark the ItemSet dirty so it will refresh everything with next redraw */ + ItemSet.prototype.markDirty = function() { + this.groupIds = []; + this.stackDirty = true; + }; + /** - * Touch stays at the same place for x time - * - * @class Hold - * @static + * 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 hold - * @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); + } + }; /** - * @param {String} name + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - (function(name) { - var timer; - - function holdGesture(ev, inst) { - var options = inst.options, - current = Detection.current; + ItemSet.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } - switch(ev.eventType) { - case EVENT_START: - clearTimeout(timer); + // show axis with dots + if (!this.dom.axis.parentNode) { + this.body.dom.top.appendChild(this.dom.axis); + } - // set the gesture so we can check in the timeout if it still is - current.name = name; + // show labelset containing labels + if (!this.dom.labelSet.parentNode) { + this.body.dom.left.appendChild(this.dom.labelSet); + } + }; - // 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; + /** + * 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; - case EVENT_MOVE: - if(ev.distance > options.holdThreshold) { - clearTimeout(timer); - } - break; + if (ids) { + if (!Array.isArray(ids)) { + throw new TypeError('Array expected'); + } - case EVENT_RELEASE: - clearTimeout(timer); - break; - } + // 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(); } - 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'); + // 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(); + } + } + } + }; /** - * @module gestures - */ - /** - * when a touch is being released from the page - * - * @class Release - * @static + * Get the selected items by their id + * @return {Array} ids The ids of the selected items */ + ItemSet.prototype.getSelection = function() { + return this.selection.concat([]); + }; + /** - * @event release - * @param {Object} ev + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items */ - Hammer.gestures.Release = { - name: 'release', - index: Infinity, - handler: function releaseGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - inst.trigger(this.name, ev); + ItemSet.prototype.getVisibleItems = function() { + var range = this.body.range.getRange(); + var left = this.body.util.toScreen(range.start); + var right = this.body.util.toScreen(range.end); + + var ids = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.visibleItems; + + // filter the "raw" set with visibleItems into a set which is really + // visible by pixels + for (var i = 0; i < rawVisibleItems.length; i++) { + var item = rawVisibleItems[i]; + // TODO: also check whether visible vertically + if ((item.left < right) && (item.left + item.width > left)) { + ids.push(item.id); } + } } + } + + return ids; }; /** - * @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 + * 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; + } + } + }; + /** - * @event swipedown - * @param {Object} ev + * Repaint the component + * @return {boolean} Returns true if the component is resized */ - Hammer.gestures.Swipe = { - name: 'swipe', - index: 40, - defaults: { - /** - * @property swipeMinTouches - * @type {Number} - * @default 1 - */ - swipeMinTouches: 1, + 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; - /** - * @property swipeMaxTouches - * @type {Number} - * @default 1 - */ - swipeMaxTouches: 1, + // update class name + frame.className = 'itemset' + (editable ? ' editable' : ''); - /** - * horizontal swipe velocity - * @property swipeVelocityX - * @type {Number} - * @default 0.6 - */ - swipeVelocityX: 0.6, + // reorder the groups (if needed) + resized = this._orderGroups() || resized; - /** - * vertical swipe velocity - * @property swipeVelocityY - * @type {Number} - * @default 0.6 - */ - swipeVelocityY: 0.6 - }, + // 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; - handler: function swipeGesture(ev, inst) { - if(ev.eventType == EVENT_RELEASE) { - var touches = ev.touches.length, - options = inst.options; + // 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; - // max touches - if(touches < options.swipeMinTouches || - touches > options.swipeMaxTouches) { - return; - } + // update frame height + frame.style.height = asSize(height); - // 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); - } - } - } + // 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 = '0'; + + // check if this component is resized + resized = this._isResized() || resized; + + return resized; }; /** - * @module gestures - */ - /** - * Single tap and a double tap on a place - * - * @class Tap - * @static - */ - /** - * @event tap - * @param {Object} ev - */ - /** - * @event doubletap - * @param {Object} ev + * 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; + }; /** - * @param {String} name - */ - (function(name) { - var hasMoved = 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]; - function tapGesture(ev, inst) { - var options = inst.options, - current = Detection.current, - prev = Detection.previous, - sincePrev, - didDoubleTap; + 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; - switch(ev.eventType) { - case EVENT_START: - hasMoved = false; - break; + for (var itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + ungrouped.add(this.items[itemId]); + } + } - case EVENT_MOVE: - hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); - break; + ungrouped.show(); + } + } + }; - 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; + /** + * Get the element for the labelset + * @return {HTMLElement} labelSet + */ + ItemSet.prototype.getLabelSet = function() { + return this.dom.labelSet; + }; - // check if double tap - if(prev && prev.name == name && - (sincePrev && sincePrev < options.doubleTapInterval) && - ev.distance < options.doubleTapDistance) { - inst.trigger('doubletap', ev); - didDoubleTap = true; - } + /** + * Set items + * @param {vis.DataSet | null} items + */ + ItemSet.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; - // do a single tap - if(!didDoubleTap || options.tapAlways) { - current.name = name; - inst.trigger(current.name, ev); - } - } - break; - } - } + // 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'); + } - 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 (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); - /** - * max distance of movement of a tap, this is for the slow tappers - * @property tapMaxDistance - * @type {Number} - * @default 10 - */ - tapMaxDistance: 10, + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - /** - * always trigger the `tap` event, even while double-tapping - * @property tapAlways - * @type {Boolean} - * @default true - */ - tapAlways: true, + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - /** - * max distance between two taps - * @property doubleTapDistance - * @type {Number} - * @default 20 - */ - doubleTapDistance: 20, + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); - /** - * max time between two taps - * @property doubleTapInterval - * @type {Number} - * @default 300 - */ - doubleTapInterval: 300 - } - }; - })('tap'); + // update the group holding all ungrouped items + this._updateUngrouped(); + } + }; /** - * @module gestures - */ - /** - * when a touch is being touched at the page - * - * @class Touch - * @static + * Get the current items + * @returns {vis.DataSet | null} */ + ItemSet.prototype.getItems = function() { + return this.itemsData; + }; + /** - * @event touch - * @param {Object} ev + * Set groups + * @param {vis.DataSet} groups */ - 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.setGroups = function(groups) { + var me = this, + ids; - /** - * 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; - } + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - if(inst.options.preventDefault) { - ev.preventDefault(); - } + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } - if(ev.eventType == EVENT_TOUCH) { - inst.trigger('touch', ev); - } - } + // replace the dataset + if (!groups) { + this.groupsData = null; + } + else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } + else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); + + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + + // update the group holding all ungrouped items + this._updateUngrouped(); + + // update the order of all items in each group + this._order(); + + this.body.emitter.emit('change'); }; /** - * @module gestures + * Get the current groups + * @returns {vis.DataSet | null} groups */ + ItemSet.prototype.getGroups = function() { + return this.groupsData; + }; + /** - * 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 + * 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); + } + }); + } + }; + /** - * @event transformstart - * @param {Object} ev + * Handle updated items + * @param {Number[]} ids + * @protected */ + ItemSet.prototype._onUpdate = function(ids) { + var me = this; + + ids.forEach(function (id) { + var itemData = me.itemsData.get(id, me.itemOptions), + item = me.items[id], + type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); + + var constructor = ItemSet.types[type]; + + if (item) { + // update item + if (!constructor || !(item instanceof constructor)) { + // item type has changed, delete the item and recreate it + me._removeItem(item); + item = null; + } + else { + me._updateItem(item, itemData); + } + } + + 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 + '"'); + } + } + }); + + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + }; + /** - * @event transformend - * @param {Object} ev + * Handle added items + * @param {Number[]} ids + * @protected */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + /** - * @event pinchin - * @param {Object} ev + * 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); + } + }); + + if (count) { + // update order + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + } + }; + /** - * @event pinchout - * @param {Object} ev + * 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(); + }); + }; + /** - * @event rotate - * @param {Object} ev + * Handle updated groups + * @param {Number[]} ids + * @private */ + ItemSet.prototype._onUpdateGroups = function(ids) { + this._onAddGroups(ids); + }; /** - * @param {String} name + * Handle changed groups + * @param {Number[]} ids + * @private */ - (function(name) { - var triggered = false; - - function transformGesture(ev, inst) { - switch(ev.eventType) { - case EVENT_START: - triggered = false; - break; + ItemSet.prototype._onAddGroups = function(ids) { + var me = this; - case EVENT_MOVE: - // at least multitouch - if(ev.touches.length < 2) { - return; - } + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; - var scaleThreshold = Math.abs(1 - ev.scale); - var rotationThreshold = Math.abs(ev.rotation); + if (!group) { + // check for reserved ids + if (id == UNGROUPED) { + throw new Error('Illegal group id. ' + id + ' is a reserved id.'); + } - // 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 groupOptions = Object.create(me.options); + util.extend(groupOptions, { + height: null + }); - // we are transforming! - Detection.current.name = name; + group = new Group(id, groupData, me); + me.groups[id] = group; - // first time, trigger dragstart event - if(!triggered) { - inst.trigger(name + 'start', ev); - triggered = true; - } + // 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); + } + } + } - inst.trigger(name, ev); // basic transform event + group.order(); + group.show(); + } + else { + // update group + group.setData(groupData); + } + }); - // trigger rotate event - if(rotationThreshold > inst.options.transformMinRotation) { - inst.trigger('rotate', ev); - } + this.body.emitter.emit('change'); + }; - // trigger pinch event - if(scaleThreshold > inst.options.transformMinScale) { - inst.trigger('pinch', ev); - inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); - } - break; + /** + * Handle removed groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onRemoveGroups = function(ids) { + var groups = this.groups; + ids.forEach(function (id) { + var group = groups[id]; - case EVENT_RELEASE: - if(triggered && ev.changedLength < 2) { - inst.trigger(name + 'end', ev); - triggered = false; - } - break; - } + if (group) { + group.hide(); + delete groups[id]; } + }); - Hammer.gestures.Transform = { - name: name, - index: 45, - defaults: { - /** - * minimal scale factor, no scale is 1, zoomin is to 0 and zoomout until higher then 1 - * @property transformMinScale - * @type {Number} - * @default 0.01 - */ - transformMinScale: 0.01, - - /** - * rotation in degrees - * @property transformMinRotation - * @type {Number} - * @default 1 - */ - transformMinRotation: 1 - }, + this.markDirty(); - handler: transformGesture - }; - })('transform'); + this.body.emitter.emit('change'); + }; /** - * @module hammer + * 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 + }); - // AMD export - if(true) { - !(__WEBPACK_AMD_DEFINE_RESULT__ = (function() { - return Hammer; - }.call(exports, __webpack_require__, exports, module)), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - // commonjs export - } else if(typeof module !== 'undefined' && module.exports) { - module.exports = Hammer; - // browser export - } else { - window.Hammer = Hammer; - } + var 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(); + }); - })(window); + // show the groups again, attach them to the DOM in correct order + groupIds.forEach(function (groupId) { + groups[groupId].show(); + }); -/***/ }, -/* 20 */ -/***/ function(module, exports, __webpack_require__) { + this.groupIds = groupIds; + } - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var moment = __webpack_require__(2); - var Component = __webpack_require__(22); + return changed; + } + else { + return false; + } + }; /** - * @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 + * Add a new item + * @param {Item} item + * @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._addItem = function(item) { + this.items[item.id] = item; - this.body = body; + // add to group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); + }; - // 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); + /** + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private + */ + ItemSet.prototype._updateItem = function(item, itemData) { + var oldGroupId = item.data.group; - this.props = { - touch: {} - }; + item.data = itemData; + if (item.displayed) { + item.redraw(); + } - // 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)); + // update group + if (oldGroupId != item.data.group) { + var oldGroup = this.groups[oldGroupId]; + if (oldGroup) oldGroup.remove(item); - // ignore dragging when holding - this.body.emitter.on('hold', this._onHold.bind(this)); + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.add(item); + } + }; - // mouse wheel for zooming - this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); - this.body.emitter.on('DOMMouseScroll', this._onMouseWheel.bind(this)); // For FF + /** + * 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(); - // pinch to zoom - this.body.emitter.on('touch', this._onTouch.bind(this)); - this.body.emitter.on('pinch', this._onPinch.bind(this)); + // remove from items + delete this.items[item.id]; - this.setOptions(options); - } + // remove from selection + var index = this.selection.indexOf(item.id); + if (index != -1) this.selection.splice(index, 1); - Range.prototype = new Component(); + // remove from group + var groupId = this.groupsData ? item.data.group : UNGROUPED; + var group = this.groups[groupId]; + if (group) group.remove(item); + }; /** - * 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 + * Create an array containing all items being a range (having an end date) + * @param array + * @returns {Array} + * @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._constructByEndArray = function(array) { + var endArray = []; - if ('start' in options || 'end' in options) { - // apply a new range. both start and end are optional - this.setRange(options.start, options.end); + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof ItemRange) { + endArray.push(array[i]); } } + return endArray; }; /** - * Test whether direction has a valid value - * @param {String} direction 'horizontal' or 'vertical' - */ - function validateDirection (direction) { - if (direction != 'horizontal' && direction != 'vertical') { - throw new TypeError('Unknown direction "' + direction + '". ' + - 'Choose "horizontal" or "vertical".'); - } - } - - /** - * Set a new start and end range - * @param {Number} [start] - * @param {Number} [end] + * 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 */ - 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); - } + ItemSet.prototype._onTouch = function (event) { + // store the touched item, used in _onDragStart + this.touchParams.item = ItemSet.itemFromTarget(event); }; /** - * 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 + * Start dragging the selected events + * @param {Event} 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._onDragStart = function (event) { + if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; } - // prevent start < end - if (newEnd < newStart) { - newEnd = newStart; - } + var item = this.touchParams.item || null, + me = this, + props; - // prevent start < min - if (min !== null) { - if (newStart < min) { - diff = (min - newStart); - newStart += diff; - newEnd += diff; + if (item && item.selected) { + var dragLeftItem = event.target.dragLeftItem; + var dragRightItem = event.target.dragRightItem; - // prevent end > max - if (max != null) { - if (newEnd > max) { - newEnd = max; - } - } - } - } + if (dragLeftItem) { + props = { + item: dragLeftItem + }; - // 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; - } - } - } - } - - // 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; + if (me.options.editable.updateTime) { + props.start = item.data.start.valueOf(); } - else { - // zoom to the minimum - diff = (zoomMin - (newEnd - newStart)); - newStart -= diff / 2; - newEnd += diff / 2; + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; } - } - } - // prevent (end-start) > zoomMax - if (this.options.zoomMax !== null) { - var zoomMax = parseFloat(this.options.zoomMax); - if (zoomMax < 0) { - zoomMax = 0; + this.touchParams.itemProps = [props]; } - 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 if (dragRightItem) { + props = { + item: dragRightItem + }; + + if (me.options.editable.updateTime) { + props.end = item.data.end.valueOf(); } - else { - // zoom to the maximum - diff = ((newEnd - newStart) - zoomMax); - newStart += diff / 2; - newEnd -= diff / 2; + if (me.options.editable.updateGroup) { + if ('group' in item.data) props.group = item.data.group; } - } - } - - var changed = (this.start != newStart || this.end != newEnd); - - this.start = newStart; - this.end = newEnd; - - return changed; - }; - /** - * Retrieve the current range. - * @return {Object} An object with start and end properties - */ - Range.prototype.getRange = function() { - return { - start: this.start, - end: this.end - }; - }; + this.touchParams.itemProps = [props]; + } + else { + this.touchParams.itemProps = this.getSelection().map(function (id) { + var item = me.items[id]; + var props = { + item: item + }; - /** - * 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); - }; + 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; + } - /** - * 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 props; + }); } - } - else { - return { - offset: 0, - scale: 1 - }; + + event.stopPropagation(); } }; /** - * Start dragging horizontally or vertically + * Drag selected items * @param {Event} event * @private */ - Range.prototype._onDragStart = function(event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; + 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; - // 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; + // 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; + } - this.props.touch.start = this.start; - this.props.touch.end = this.end; + if ('end' in props) { + var end = new Date(props.end + offset); + props.item.data.end = snap ? snap(end) : end; + } - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'move'; - } - }; + if ('group' in props) { + // drag from one group to another + var group = ItemSet.groupFromTarget(event); + _moveToGroup(props.item, group); + } + }); - /** - * Perform dragging operation - * @param {Event} event - * @private - */ - 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) - }); + // TODO: implement onMoving handler + + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + + event.stopPropagation(); + } }; /** - * Stop dragging operation - * @param {event} event + * Move an item to another group + * @param {Item} item + * @param {Group} group * @private */ - Range.prototype._onDragEnd = function (event) { - // only allow dragging when configured as movable - if (!this.options.moveable) return; - - // refuse to drag when we where pinching to prevent the timeline make a jump - // when releasing the fingers in opposite order from the touch screen - if (!this.props.touch.allowDragging) return; + function _moveToGroup (item, group) { + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + group.add(item); + group.order(); - if (this.body.dom.root) { - this.body.dom.root.style.cursor = 'auto'; + item.data.group = group.groupId; } - - // fire a rangechanged event - this.body.emitter.emit('rangechanged', { - start: new Date(this.start), - end: new Date(this.end) - }); - }; + } /** - * Event handler for mouse wheel event, used to zoom - * Code from http://adomas.org/javascript-mouse-wheel/ + * End of dragging selected items * @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; - - // 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; - } + 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 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 + 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); - // 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); + 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; + } - this.zoom(scale, pointerDate); - } + // 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); + } - // Prevent default actions caused by mouse wheel - // (else the page and timeline both zoom and scroll) - event.preventDefault(); - }; + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit('change'); + } + }); + } + }); - /** - * Start of a touch gesture - * @private - */ - Range.prototype._onTouch = function (event) { - this.props.touch.start = this.start; - this.props.touch.end = this.end; - this.props.touch.allowDragging = true; - this.props.touch.center = null; - }; + // apply the changes to the data (if there are changes) + if (changes.length) { + dataset.update(changes); + } - /** - * On start of a hold gesture - * @private - */ - Range.prototype._onHold = function () { - this.props.touch.allowDragging = false; + event.stopPropagation(); + } }; /** - * Handle pinch event + * Handle selecting/deselecting an item when tapping it * @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; + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; - this.props.touch.allowDragging = false; + var ctrlKey = event.gesture.srcEvent && event.gesture.srcEvent.ctrlKey; + var shiftKey = event.gesture.srcEvent && event.gesture.srcEvent.shiftKey; + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + return; + } - if (event.gesture.touches.length > 1) { - if (!this.props.touch.center) { - this.props.touch.center = getPointer(event.gesture.center, this.body.dom.center); - } + var oldSelection = this.getSelection(); - var scale = 1 / event.gesture.scale, - initDate = this._pointerToDate(this.props.touch.center); + var item = ItemSet.itemFromTarget(event); + var selection = item ? [item.id] : []; + this.setSelection(selection); - // 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); + var newSelection = this.getSelection(); - // apply new range - this.setRange(newStart, newEnd); + // 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(); }; /** - * Helper function to calculate the center date for zooming - * @param {{x: Number, y: Number}} pointer - * @return {number} date + * Handle creation and updates of an item on double tap + * @param event * @private */ - Range.prototype._pointerToDate = function (pointer) { - var conversion; - var direction = this.options.direction; + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; - validateDirection(direction); + var me = this, + snap = this.body.util.snap || null, + item = ItemSet.itemFromTarget(event); - if (direction == 'horizontal') { - var width = this.body.domProps.center.width; - conversion = this.conversion(width); - return pointer.x / conversion.scale + conversion.offset; + 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 { - var height = this.body.domProps.center.height; - conversion = this.conversion(height); - return pointer.y / conversion.scale + conversion.offset; - } - }; + // 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' + }; - /** - * 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) - }; - } + // 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; + } - /** - * 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; - } + newItem[this.itemsData.fieldId] = util.randomUUID(); - // calculate new start and end - var newStart = center + (this.start - center) * scale; - var newEnd = center + (this.end - center) * scale; + var group = ItemSet.groupFromTarget(event); + if (group) { + newItem.group = group.groupId; + } - this.setRange(newStart, newEnd); + // 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? + } + }); + } }; /** - * 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 + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private */ - Range.prototype.move = function(delta) { - // zoom start Date and end Date relative to the centerDate - var diff = (this.end - this.start); + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; - // apply new values - var newStart = this.start + diff * delta; - var newEnd = this.end + diff * delta; + var selection, + item = ItemSet.itemFromTarget(event); - // TODO: reckon with min and max range + 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.start = newStart; - this.end = newEnd; + this.body.emitter.emit('select', { + items: this.getSelection() + }); + + event.stopPropagation(); + } }; /** - * Move the range to a new center point - * @param {Number} moveTo New center point of the range + * 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.moveTo = function(moveTo) { - var center = (this.start + this.end) / 2; - - var diff = center - moveTo; - - // calculate new start and end - var newStart = this.start - diff; - var newEnd = this.end - diff; + ItemSet.itemFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-item')) { + return target['timeline-item']; + } + target = target.parentNode; + } - this.setRange(newStart, newEnd); + return null; }; - module.exports = Range; - - -/***/ }, -/* 21 */ -/***/ function(module, exports, __webpack_require__) { - - var Hammer = __webpack_require__(18); - /** - * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent - * @param {Element} element + * 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 */ - exports.fakeGesture = function(element, event) { - var eventType = null; - - // for hammer.js 1.0.5 - // var gesture = Hammer.event.collectEventData(this, eventType, event); + ItemSet.groupFromTarget = function(event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-group')) { + return target['timeline-group']; + } + target = target.parentNode; + } - // for hammer.js 1.0.6+ - var touches = Hammer.event.getTouchList(event, eventType); - var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + return null; + }; - // 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; + /** + * 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']; + } + target = target.parentNode; } - return gesture; + return null; }; + module.exports = ItemSet; + /***/ }, -/* 22 */ +/* 25 */ /***/ function(module, exports, __webpack_require__) { - /** - * Prototype for visual components - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] - * @param {Object} [options] - */ - function Component (body, options) { - this.options = null; - this.props = null; - } + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(2); + var Component = __webpack_require__(18); /** - * Set options for the component. The new options will be merged into the - * current options. - * @param {Object} options + * Legend for Graph2d */ - Component.prototype.setOptions = function(options) { - if (options) { - util.extend(this.options, options); + 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); - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - Component.prototype.redraw = function() { - // should be implemented by the component - return false; - }; + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); - /** - * Destroy the component. Cleanup DOM and event listeners - */ - Component.prototype.destroy = function() { - // should be implemented by the component - }; + this.setOptions(options); + } - /** - * Test whether the component is resized since the last time _isResized() was - * called. - * @return {Boolean} Returns true if the component is resized - * @protected - */ - Component.prototype._isResized = function() { - var resized = (this.props._previousWidth !== this.props.width || - this.props._previousHeight !== this.props.height); + Legend.prototype = new Component(); - this.props._previousWidth = this.props.width; - this.props._previousHeight = this.props.height; - return resized; + Legend.prototype.addGroup = function(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; }; - module.exports = Component; + 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; + } + }; -/***/ }, -/* 23 */ -/***/ function(module, exports, __webpack_require__) { + 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"; - 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); - var Activator = __webpack_require__(36); + this.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'legendText'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; - /** - * 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 () {} + 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'; - // turn Core into an event emitter - Emitter(Core.prototype); + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); + }; /** - * 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 + * Hide the component from the DOM */ - Core.prototype._create = function (container) { - this.dom = {}; + Legend.prototype.hide = function() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; - 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'); + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + Legend.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + }; - this.dom.root.className = 'vis timeline root'; - 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'; + Legend.prototype.setOptions = function(options) { + var fields = ['enabled','orientation','icons','left','right']; + util.selectiveDeepExtend(fields, this.options, options); + }; - this.dom.root.appendChild(this.dom.background); - this.dom.root.appendChild(this.dom.backgroundVertical); - this.dom.root.appendChild(this.dom.backgroundHorizontal); - this.dom.root.appendChild(this.dom.centerContainer); - this.dom.root.appendChild(this.dom.leftContainer); - this.dom.root.appendChild(this.dom.rightContainer); - this.dom.root.appendChild(this.dom.top); - this.dom.root.appendChild(this.dom.bottom); - - this.dom.centerContainer.appendChild(this.dom.center); - this.dom.leftContainer.appendChild(this.dom.left); - this.dom.rightContainer.appendChild(this.dom.right); - - this.dom.centerContainer.appendChild(this.dom.shadowTop); - this.dom.centerContainer.appendChild(this.dom.shadowBottom); - this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); - this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); - this.dom.rightContainer.appendChild(this.dom.shadowTopRight); - this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); - - this.on('rangechange', this.redraw.bind(this)); - this.on('change', this.redraw.bind(this)); - this.on('touch', this._onTouch.bind(this)); - this.on('pinch', this._onPinch.bind(this)); - this.on('dragstart', this._onDragStart.bind(this)); - this.on('drag', this._onDrag.bind(this)); - - // create event listeners for all interesting events, these events will be - // emitted via emitter - this.hammer = Hammer(this.dom.root, { - prevent_default: true - }); - this.listeners = {}; - - var me = this; - var events = [ - 'touch', 'pinch', - 'tap', 'doubletap', 'hold', - 'dragstart', 'drag', 'dragend', - 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox - ]; - events.forEach(function (event) { - var listener = function () { - var args = [event].concat(Array.prototype.slice.call(arguments, 0)); - if (me.isActive()) { - me.emit.apply(me, args); + 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++; } - }; - 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 + 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 = ''; + } - // attach the root panel to the provided container - if (!container) throw new Error('No container provided'); - container.appendChild(this.dom.root); - }; + 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 = ''; + } - /** - * 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 - */ - Core.prototype.setOptions = function (options) { - if (options) { - // copy the known options - var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation', 'activatable']; - util.selectiveExtend(fields, this.options, options); + 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(); + } - if ('activatable' in options) { - if (options.activatable) { - this.activator = new Activator(this.dom.root); - } - else { - if (this.activator) { - this.activator.destroy(); - delete this.activator; + var content = ''; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible == true) { + content += this.groups[groupId].content + '
'; } } } - - // 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.'); + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = ((0.75 * this.options.iconSize) + this.options.iconSpacing) + 'px'; } - - // redraw everything - this.redraw(); - }; - - /** - * Returns true when the Timeline is active. - * @returns {boolean} - */ - Core.prototype.isActive = function () { - return !this.activator || this.activator.active; }; - /** - * Destroy the Core, clean up all DOM elements and event listeners. - */ - Core.prototype.destroy = function () { - // unbind datasets - this.clear(); + 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; - // remove all event listeners - this.off(); + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; - // stop checking for changed size - this._stopAutoResize(); + 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; + } + } + } - // remove from DOM - if (this.dom.root.parentNode) { - this.dom.root.parentNode.removeChild(this.dom.root); + DOMutil.cleanupElements(this.svgElements); } - this.dom = null; + }; - // remove Activator - if (this.activator) { - this.activator.destroy(); - delete this.activator; - } + module.exports = Legend; - // cleanup hammer touch events - for (var event in this.listeners) { - if (this.listeners.hasOwnProperty(event)) { - delete this.listeners[event]; - } - } - this.listeners = null; - this.hammer = null; - // give all components the opportunity to cleanup - this.components.forEach(function (component) { - component.destroy(); - }); +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { - this.body = null; - }; + 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 /** - * Set a custom time bar - * @param {Date} time + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor */ - Core.prototype.setCustomTime = function (time) { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); - } - - this.customTime.setCustomTime(time); - }; + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - Core.prototype.getCustomTime = function() { - if (!this.customTime) { - throw new Error('Cannot get custom time: Custom time bar is not enabled'); - } + 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, + handleOverlap: 'overlap', + 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 + } + } + }; - return this.customTime.getCustomTime(); - }; + // 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 - /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items - */ - Core.prototype.getVisibleItems = function() { - return this.itemSet && this.itemSet.getVisibleItems() || []; - }; + // 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(); /** - * 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} + * Create the HTML DOM for the ItemSet */ - Core.prototype.clear = function(what) { - // clear items - if (!what || what.items) { - this.setItems(null); - } + LineGraph.prototype._create = function(){ + var frame = document.createElement('div'); + frame.className = 'LineGraph'; + this.dom.frame = frame; - // clear groups - if (!what || what.groups) { - this.setGroups(null); - } + // 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); - // clear options of timeline and of each of the components - if (!what || what.options) { - this.components.forEach(function (component) { - component.setOptions(component.defaultOptions); - }); + // data axis + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg); - this.setOptions(this.defaultOptions); // this will also do a redraw - } + 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'); + + this.show(); }; /** - * Set Core window such that it fits all items + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param options */ - Core.prototype.fit = function() { - // apply the data range as range - var dataRange = this.getItemRange(); + 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'); - // 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 (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; + } + } + } } - 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; - } + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); + } + } - this.range.setRange(start, end); + 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(); + } }; + /** + * 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); + } + }; /** - * 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 + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed */ - 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); + LineGraph.prototype.show = function() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); } }; - /** - * Get the visible window - * @return {{start: Date, end: Date}} Visible range - */ - Core.prototype.getWindow = function() { - var range = this.range.getRange(); - return { - start: new Date(range.start), - end: new Date(range.end) - }; - }; /** - * Force a redraw of the Core. Can be useful to manually redraw when - * option autoResize=false + * Set items + * @param {vis.DataSet | null} items */ - Core.prototype.redraw = function() { - var resized = false, - options = this.options, - props = this.props, - dom = this.dom; - - if (!dom) return; // when destroyed + LineGraph.prototype.setItems = function(items) { + var me = this, + ids, + oldItemsData = this.itemsData; - // update class names - if (options.orientation == 'top') { - util.addClassName(dom.root, 'top'); - util.removeClassName(dom.root, 'bottom'); + // replace the dataset + if (!items) { + this.itemsData = null; + } + else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; } else { - util.removeClassName(dom.root, 'top'); - util.addClassName(dom.root, 'bottom'); + throw new TypeError('Data must be an instance of DataSet or DataView'); } - // 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, ''); - - // 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; - - // calculate the heights. If any of the side panels is empty, we set the height to - // minus the border width, such that the border will be invisible - props.center.height = dom.center.offsetHeight; - props.left.height = dom.left.offsetHeight; - props.right.height = dom.right.offsetHeight; - props.top.height = dom.top.clientHeight || -props.border.top; - props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; - - // TODO: compensate borders when any of the panels is empty. - - // apply auto height - // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) - var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); - var autoHeight = props.top.height + contentHeight + props.bottom.height + - borderRootHeight + props.border.top + props.border.bottom; - dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); - // 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; + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } - // 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.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); - // 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'; + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + } + this._updateUngrouped(); + this._updateGraph(); + this.redraw(); + }; - 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'; + /** + * Set groups + * @param {vis.DataSet} groups + */ + LineGraph.prototype.setGroups = function(groups) { + var me = this, + ids; - // 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'; + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.unsubscribe(event, callback); + }); - // 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(); + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } - // 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); + // 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'); } - 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; + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); - // redraw all components - this.components.forEach(function (component) { - resized = component.redraw() || resized; - }); - if (resized) { - // keep repainting until all sizes are settled - this.redraw(); + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); } + this._onUpdate(); }; - // TODO: deprecated since version 1.1.0, remove some day - Core.prototype.repaint = function () { - throw new Error('Function repaint is deprecated. Use redraw instead.'); - }; /** - * Convert a position on screen (pixels) to a datetime - * @param {int} x Position on the screen in pixels - * @return {Date} time The datetime the corresponds with given position x + * Update the datapoints + * @param [ids] * @private */ - // TODO: move this function to Range - Core.prototype._toTime = function(x) { - var conversion = this.range.conversion(this.props.center.width); - return new Date(x / conversion.scale + conversion.offset); + 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]); + } + this._updateGraph(); + this.redraw(); + }; + LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - /** - * Convert a position on the global screen (pixels) to a datetime - * @param {int} x Position on the screen in pixels - * @return {Date} time The datetime the corresponds with given position x - * @private - */ - // TODO: move this function to Range - Core.prototype._toGlobalTime = function(x) { - var conversion = this.range.conversion(this.props.root.width); - return new Date(x / conversion.scale + conversion.offset); - }; - - /** - * Convert a datetime (Date object) into a position on the screen - * @param {Date} time A date - * @return {int} x The position on the screen in pixels which corresponds - * with the given date. - * @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; - }; - - - /** - * 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; + 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(); }; - /** - * Initialize watching when option autoResize is true + * update a group object + * + * @param group + * @param groupId * @private */ - Core.prototype._initAutoResize = function () { - if (this.options.autoResize == true) { - this._startAutoResize(); + LineGraph.prototype._updateGroup = function (group, groupId) { + if (!this.groups.hasOwnProperty(groupId)) { + this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.addGroup(groupId, this.groups[groupId]); + this.legendRight.addGroup(groupId, this.groups[groupId]); + } + else { + this.yAxisLeft.addGroup(groupId, this.groups[groupId]); + this.legendLeft.addGroup(groupId, this.groups[groupId]); + } } else { - this._stopAutoResize(); + this.groups[groupId].update(group); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.updateGroup(groupId, this.groups[groupId]); + this.legendRight.updateGroup(groupId, this.groups[groupId]); + } + else { + this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); + this.legendLeft.updateGroup(groupId, this.groups[groupId]); + } } + this.legendLeft.redraw(); + this.legendRight.redraw(); }; - /** - * Watch for changes in the size of the container. On resize, the Panel will - * automatically redraw itself. - * @private - */ - Core.prototype._startAutoResize = function () { - var me = this; - - this._stopAutoResize(); - - this._onResize = function() { - if (me.options.autoResize != true) { - // stop watching when the option autoResize is changed to false - me._stopAutoResize(); - return; + LineGraph.prototype._updateAllGroupData = function () { + if (this.itemsData != null) { + var groupsContent = {}; + var groupId; + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupsContent[groupId] = []; + } } - - if (me.dom.root) { - // check whether the frame is resized - if ((me.dom.root.clientWidth != me.props.lastWidth) || - (me.dom.root.clientHeight != me.props.lastHeight)) { - me.props.lastWidth = me.dom.root.clientWidth; - me.props.lastHeight = me.dom.root.clientHeight; - - me.emit('change'); + 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); } } - }; - - // add event listener to window resize - util.addEventListener(window, 'resize', this._onResize); - - this.watchTimer = setInterval(this._onResize, 1000); + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } }; /** - * Stop watching for a resize of the frame. - * @private + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. This anonymous group is called 'graph'. + * @protected */ - Core.prototype._stopAutoResize = function () { - if (this.watchTimer) { - clearInterval(this.watchTimer); - this.watchTimer = undefined; + 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; + } + } + } + } + + if (ungroupedCounter == 0) { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } + } + else { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); } - // remove event listener on window.resize - util.removeEventListener(window, 'resize', this._onResize); - this._onResize = null; + this.legendLeft.redraw(); + this.legendRight.redraw(); }; - /** - * 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 + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized */ - Core.prototype._onPinch = function (event) { - this.touch.allowDragging = false; - }; + LineGraph.prototype.redraw = function() { + var resized = false; - /** - * Start moving the timeline vertically - * @param {Event} event - * @private - */ - Core.prototype._onDragStart = function (event) { - this.touch.initialScrollTop = this.props.scrollTop; - }; + 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; - /** - * 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; + // calculate actual size and position + this.width = this.dom.frame.offsetWidth; - var delta = event.gesture.deltaY; + // 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(); + } - var oldScrollTop = this._getScrollTop(); - var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + this.legendLeft.redraw(); + this.legendRight.redraw(); - if (newScrollTop != oldScrollTop) { - this.redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already - } + return resized; }; /** - * Apply a scrollTop - * @param {Number} scrollTop - * @returns {Number} scrollTop Returns the applied scrollTop - * @private + * Update and redraw the graph. + * */ - Core.prototype._setScrollTop = function (scrollTop) { - this.props.scrollTop = scrollTop; - this._updateScrollTop(); - return this.props.scrollTop; - }; + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); + if (this.width != 0 && this.itemsData != null) { + var group, i; + var preprocessedGroupData = {}; + var processedGroupData = {}; + var groupRanges = {}; + var changeCalled = false; - /** - * Update the current scrollTop when the height of the containers has been changed - * @returns {Number} scrollTop Returns the applied scrollTop - * @private - */ - Core.prototype._updateScrollTop = function () { - // recalculate the scrollTopMin - var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero - if (scrollTopMin != this.props.scrollTopMin) { - // in case of bottom orientation, change the scrollTop such that the contents - // do not move relative to the time axis at the bottom - if (this.options.orientation == 'bottom') { - this.props.scrollTop += (scrollTopMin - this.props.scrollTopMin); + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + group = this.groups[groupId]; + if (group.visible == true) { + groupIds.push(groupId); + } + } } - this.props.scrollTopMin = scrollTopMin; - } - - // limit the scrollTop to the feasible scroll range - if (this.props.scrollTop > 0) this.props.scrollTop = 0; - if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; - - return this.props.scrollTop; - }; - - /** - * Get the current scrollTop - * @returns {number} scrollTop - * @private - */ - Core.prototype._getScrollTop = function () { - return this.props.scrollTop; - }; - - module.exports = Core; + if (groupIds.length > 0) { + // 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 groupsData = {}; + // fill groups data + this._getRelevantData(groupIds, groupsData, minDate, maxDate); + // we transform the X coordinates to detect collisions + for (i = 0; i < groupIds.length; i++) { + preprocessedGroupData[groupIds[i]] = this._convertXcoordinates(groupsData[groupIds[i]]); + } + // now all needed data has been collected we start the processing. + this._getYRanges(groupIds, preprocessedGroupData, groupRanges); + // 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; + } -/***/ }, -/* 24 */ -/***/ 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[groupIds[i]] = this._convertYcoordinates(groupsData[groupIds[i]], group); + } - var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var TimeStep = __webpack_require__(25); - var moment = __webpack_require__(2); - /** - * A horizontal time axis - * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body - * @param {Object} [options] See TimeAxis.setOptions for the available - * options. - * @constructor TimeAxis - * @extends Component - */ - function TimeAxis (body, options) { - this.dom = { - foreground: null, - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [], - redundant: { - majorLines: [], - majorTexts: [], - minorLines: [], - minorTexts: [] + // draw the groups + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.style == 'line') { + this._drawLineGraph(processedGroupData[groupIds[i]], group); + } + } + this._drawBarGraphs(groupIds, processedGroupData); } - }; - this.props = { - range: { - start: 0, - end: 0, - minimumStep: 0 - }, - lineTop: 0 - }; - - this.defaultOptions = { - orientation: 'bottom', // supported: 'top', 'bottom' - // TODO: implement timeaxis orientations 'left' and 'right' - showMinorLabels: true, - showMajorLabels: true - }; - this.options = util.extend({}, this.defaultOptions); - - this.body = body; - - // create the HTML DOM - this._create(); - - this.setOptions(options); - } + } - TimeAxis.prototype = new Component(); + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); + }; - /** - * Set options for the TimeAxis. - * Parameters will be merged in current options. - * @param {Object} options Available options: - * {string} [orientation] - * {boolean} [showMinorLabels] - * {boolean} [showMajorLabels] - */ - TimeAxis.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); - // apply locale to moment.js - // TODO: not so nice, this is applied globally to moment.js - if ('locale' in options) { - if (typeof moment.locale === 'function') { - // moment.js 2.8.1+ - moment.locale(options.locale); + LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { + // 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. + var group, i, j, item; + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + groupsData[groupIds[i]] = []; + var dataContainer = groupsData[groupIds[i]]; + // optimization for sorted data + if (group.options.sort == true) { + var guess = Math.max(0, util.binarySearchGeneric(group.itemsData, minDate, 'x', 'before')); + for (j = guess; j < group.itemsData.length; j++) { + item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > maxDate) { + dataContainer.push(item); + break; + } + else { + dataContainer.push(item); + } + } + } } else { - moment.lang(options.locale); + for (j = 0; j < group.itemsData.length; j++) { + item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > minDate && item.x < maxDate) { + dataContainer.push(item); + } + } + } } } } + + this._applySampling(groupIds, groupsData); }; - /** - * Create the HTML DOM for the TimeAxis - */ - TimeAxis.prototype._create = function() { - this.dom.foreground = document.createElement('div'); - this.dom.background = document.createElement('div'); + LineGraph.prototype._applySampling = function (groupIds, groupsData) { + var group; + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.sampling == true) { + var dataContainer = groupsData[groupIds[i]]; + if (dataContainer.length > 0) { + var increment = 1; + var amountOfPoints = dataContainer.length; - this.dom.foreground.className = 'timeaxis foreground'; - this.dom.background.className = 'timeaxis background'; - }; + // 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. + var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x); + var pointsPerPixel = amountOfPoints / xDistance; + increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel))); - /** - * Destroy the TimeAxis - */ - TimeAxis.prototype.destroy = function() { - // remove from DOM - if (this.dom.foreground.parentNode) { - this.dom.foreground.parentNode.removeChild(this.dom.foreground); - } - if (this.dom.background.parentNode) { - this.dom.background.parentNode.removeChild(this.dom.background); - } + var sampledData = []; + for (var j = 0; j < amountOfPoints; j += increment) { + sampledData.push(dataContainer[j]); - this.body = null; + } + groupsData[groupIds[i]] = sampledData; + } + } + } + } }; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - TimeAxis.prototype.redraw = function () { - var options = this.options, - props = this.props, - foreground = this.dom.foreground, - background = this.dom.background; + LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { + var groupData, group, i,j; + var barCombinedDataLeft = []; + var barCombinedDataRight = []; + var barCombinedData; + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + groupData = groupsData[groupIds[i]]; + if (groupData.length > 0) { + group = this.groups[groupIds[i]]; + if (group.options.style == 'line' || group.options.barChart.handleOverlap != "stack") { + var yMin = groupData[0].y; + var yMax = groupData[0].y; + for (j = 0; j < groupData.length; j++) { + yMin = yMin > groupData[j].y ? groupData[j].y : yMin; + yMax = yMax < groupData[j].y ? groupData[j].y : yMax; + } + groupRanges[groupIds[i]] = {min: yMin, max: yMax, yAxisOrientation: group.options.yAxisOrientation}; + } + else if (group.options.style == 'bar') { + if (group.options.yAxisOrientation == 'left') { + barCombinedData = barCombinedDataLeft; + } + else { + barCombinedData = barCombinedDataRight; + } - // determine the correct parent DOM element (depending on option orientation) - var parent = (options.orientation == 'top') ? this.body.dom.top : this.body.dom.bottom; - var parentChanged = (foreground.parentNode !== parent); + groupRanges[groupIds[i]] = {min: 0, max: 0, yAxisOrientation: group.options.yAxisOrientation, ignore: true}; - // calculate character width and height - this._calculateCharSize(); + // combine data + for (j = 0; j < groupData.length; j++) { + barCombinedData.push({ + x: groupData[j].x, + y: groupData[j].y, + groupId: groupIds[i] + }); + } + } + } + } - // TODO: recalculate sizes only needed when parent is resized or options is changed - var orientation = this.options.orientation, - showMinorLabels = this.options.showMinorLabels, - showMajorLabels = this.options.showMajorLabels; + var intersections; + if (barCombinedDataLeft.length > 0) { + // sort by time and by group + barCombinedDataLeft.sort(function (a, b) { + if (a.x == b.x) { + return a.groupId - b.groupId; + } else { + return a.x - b.x; + } + }); + intersections = {}; + this._getDataIntersections(intersections, barCombinedDataLeft); + groupRanges["__barchartLeft"] = this._getStackedBarYRange(intersections, barCombinedDataLeft); + groupRanges["__barchartLeft"].yAxisOrientation = "left"; + groupIds.push("__barchartLeft"); + } + if (barCombinedDataRight.length > 0) { + // sort by time and by group + barCombinedDataRight.sort(function (a, b) { + if (a.x == b.x) { + return a.groupId - b.groupId; + } else { + return a.x - b.x; + } + }); + intersections = {}; + this._getDataIntersections(intersections, barCombinedDataRight); + groupRanges["__barchartRight"] = this._getStackedBarYRange(intersections, barCombinedDataRight); + groupRanges["__barchartRight"].yAxisOrientation = "right"; + groupIds.push("__barchartRight"); + } + } + }; - // determine the width and height of the elemens for the axis - props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; - props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; - props.height = props.minorLabelHeight + props.majorLabelHeight; - props.width = foreground.offsetWidth; + LineGraph.prototype._getStackedBarYRange = function (intersections, combinedData) { + var key; + var yMin = combinedData[0].y; + var yMax = combinedData[0].y; + for (var i = 0; i < combinedData.length; i++) { + key = combinedData[i].x; + if (intersections[key] === undefined) { + yMin = yMin > combinedData[i].y ? combinedData[i].y : yMin; + yMax = yMax < combinedData[i].y ? combinedData[i].y : yMax; + } + else { + intersections[key].accumulated += combinedData[i].y; + } + } + for (var xpos in intersections) { + if (intersections.hasOwnProperty(xpos)) { + yMin = yMin > intersections[xpos].accumulated ? intersections[xpos].accumulated : yMin; + yMax = yMax < intersections[xpos].accumulated ? intersections[xpos].accumulated : yMax; + } + } - props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight - - (options.orientation == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height); - props.minorLineWidth = 1; // TODO: really calculate width - props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight; - props.majorLineWidth = 1; // TODO: really calculate width + return {min: yMin, max: yMax}; + }; - // take foreground and background offline while updating (is almost twice as fast) - var foregroundNextSibling = foreground.nextSibling; - var backgroundNextSibling = background.nextSibling; - foreground.parentNode && foreground.parentNode.removeChild(foreground); - background.parentNode && background.parentNode.removeChild(background); - foreground.style.height = this.props.height + 'px'; + /** + * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. + * @param {Array} groupIds + * @param {Object} groupRanges + * @private + */ + LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var changeCalled = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal; + // if groups are present + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + if (groupRanges.hasOwnProperty(groupIds[i])) { + if (groupRanges[groupIds[i]].ignore !== true) { + minVal = groupRanges[groupIds[i]].min; + maxVal = groupRanges[groupIds[i]].max; + + if (groupRanges[groupIds[i]].yAxisOrientation == '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; + } + } + } + } - this._repaintLabels(); + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } + } - // put DOM online again (at the same place) - if (foregroundNextSibling) { - parent.insertBefore(foreground, foregroundNextSibling); + changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; + changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; + + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; } else { - parent.appendChild(foreground) + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; } - if (backgroundNextSibling) { - this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + + this.yAxisRight.master = !yAxisLeftUsed; + + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} + else {this.yAxisLeft.lineOffset = 0;} + + changeCalled = this.yAxisLeft.redraw() || changeCalled; + this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; + changeCalled = this.yAxisRight.redraw() || changeCalled; } else { - this.body.dom.backgroundVertical.appendChild(background) + changeCalled = this.yAxisRight.redraw() || changeCalled; } - return this._isResized() || parentChanged; + // clean the accumulated lists + if (groupIds.indexOf("__barchartLeft") != -1) { + groupIds.splice(groupIds.indexOf("__barchartLeft"),1); + } + if (groupIds.indexOf("__barchartRight") != -1) { + groupIds.splice(groupIds.indexOf("__barchartRight"),1); + } + + return changeCalled; }; /** - * Repaint major and minor text labels and vertical grid lines + * 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 */ - TimeAxis.prototype._repaintLabels = function () { - var orientation = this.options.orientation; - - // calculate range and step (step such that we have space for 7 characters per label) - var start = util.convert(this.body.range.start, 'Number'), - end = util.convert(this.body.range.end, 'Number'), - minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() - -this.body.util.toTime(0).valueOf(); - var step = new TimeStep(new Date(start), new Date(end), minimumStep); - this.step = step; - - // Move all DOM elements to a "redundant" list, where they - // can be picked for re-use, and clear the lists with lines and texts. - // At the end of the function _repaintLabels, left over elements will be cleaned up - var dom = this.dom; - dom.redundant.majorLines = dom.majorLines; - dom.redundant.majorTexts = dom.majorTexts; - dom.redundant.minorLines = dom.minorLines; - dom.redundant.minorTexts = dom.minorTexts; - dom.majorLines = []; - dom.majorTexts = []; - dom.minorLines = []; - dom.minorTexts = []; - - step.first(); - var xFirstMajorLabel = undefined; - var max = 0; - while (step.hasNext() && max < 1000) { - max++; - var cur = step.getCurrent(), - x = this.body.util.toScreen(cur), - isMajor = step.isMajor(); + 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; + }; - // TODO: lines must have a width, such that we can create css backgrounds - if (this.options.showMinorLabels) { - this._repaintMinorText(x, step.getLabelMinor(), orientation); - } + /** + * draw a bar graph + * + * @param groupIds + * @param processedGroupData + */ + LineGraph.prototype._drawBarGraphs = function (groupIds, processedGroupData) { + var combinedData = []; + var intersections = {}; + var coreDistance; + var key, drawData; + var group; + var i,j; + var barPoints = 0; - if (isMajor && this.options.showMajorLabels) { - if (x > 0) { - if (xFirstMajorLabel == undefined) { - xFirstMajorLabel = x; + // combine all barchart data + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.style == 'bar') { + if (group.visible == true) { + for (j = 0; j < processedGroupData[groupIds[i]].length; j++) { + combinedData.push({ + x: processedGroupData[groupIds[i]][j].x, + y: processedGroupData[groupIds[i]][j].y, + groupId: groupIds[i] + }); + barPoints += 1; } - this._repaintMajorText(x, step.getLabelMajor(), orientation); } - this._repaintMajorLine(x, orientation); - } - else { - this._repaintMinorLine(x, orientation); } - - step.next(); } - // create a major label on the left when needed - if (this.options.showMajorLabels) { - var leftTime = this.body.util.toTime(0), - leftText = step.getLabelMajor(leftTime), - widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation - - if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { - this._repaintMajorText(0, leftText, orientation); - } - } + if (barPoints == 0) {return;} - // Cleanup leftover DOM elements from the redundant list - util.forEach(this.dom.redundant, function (arr) { - while (arr.length) { - var elem = arr.pop(); - if (elem && elem.parentNode) { - elem.parentNode.removeChild(elem); - } + // sort by time and by group + combinedData.sort(function (a, b) { + if (a.x == b.x) { + return a.groupId - b.groupId; + } else { + return a.x - b.x; } }); - }; - /** - * Create a minor label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { - // reuse redundant label - var label = this.dom.redundant.minorTexts.shift(); - - if (!label) { - // create new label - var content = document.createTextNode(''); - label = document.createElement('div'); - label.appendChild(content); - label.className = 'text minor'; - this.dom.foreground.appendChild(label); - } - this.dom.minorTexts.push(label); - - label.childNodes[0].nodeValue = text; + // get intersections + this._getDataIntersections(intersections, combinedData); - label.style.top = (orientation == 'top') ? (this.props.majorLabelHeight + 'px') : '0'; - label.style.left = x + 'px'; - //label.title = title; // TODO: this is a heavy operation - }; + // plot barchart + for (i = 0; i < combinedData.length; i++) { + group = this.groups[combinedData[i].groupId]; + var minWidth = 0.1 * group.options.barChart.width; - /** - * Create a Major label for the axis at position x - * @param {Number} x - * @param {String} text - * @param {String} orientation "top" or "bottom" (default) - * @private - */ - TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { - // reuse redundant label - var label = this.dom.redundant.majorTexts.shift(); + key = combinedData[i].x; + var heightOffset = 0; + if (intersections[key] === undefined) { + if (i+1 < combinedData.length) {coreDistance = Math.abs(combinedData[i+1].x - key);} + if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(combinedData[i-1].x - key));} + 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 < combinedData.length) {coreDistance = Math.abs(combinedData[nextKey].x - key);} + if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(combinedData[prevKey].x - key));} + drawData = this._getSafeDrawData(coreDistance, group, minWidth); + intersections[key].resolved += 1; - if (!label) { - // create label - var content = document.createTextNode(text); - label = document.createElement('div'); - label.className = 'text major'; - label.appendChild(content); - this.dom.foreground.appendChild(label); + if (group.options.barChart.handleOverlap == 'stack') { + heightOffset = intersections[key].accumulated; + intersections[key].accumulated += group.zeroPosition - combinedData[i].y; + } + else if (group.options.barChart.handleOverlap == 'sideBySide') { + 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') {drawData.offset -= 0.5*drawData.width;} + else if (group.options.barChart.align == 'right') {drawData.offset += 0.5*drawData.width;} + } + } + DOMutil.drawBar(combinedData[i].x + drawData.offset, combinedData[i].y - heightOffset, drawData.width, group.zeroPosition - combinedData[i].y, group.className + ' bar', this.svgElements, this.svg); + // draw points + if (group.options.drawPoints.enabled == true) { + DOMutil.drawPoint(combinedData[i].x + drawData.offset, combinedData[i].y - heightOffset, group, this.svgElements, this.svg); + } } - this.dom.majorTexts.push(label); - - label.childNodes[0].nodeValue = text; - //label.title = title; // TODO: this is a heavy operation - - label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px'); - label.style.left = x + 'px'; }; /** - * Create a minor line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) + * Fill the intersections object with counters of how many datapoints share the same x coordinates + * @param intersections + * @param combinedData * @private */ - TimeAxis.prototype._repaintMinorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.minorLines.shift(); - - if (!line) { - // create vertical line - line = document.createElement('div'); - line.className = 'grid vertical minor'; - this.dom.background.appendChild(line); - } - this.dom.minorLines.push(line); - - var props = this.props; - if (orientation == 'top') { - line.style.top = props.majorLabelHeight + 'px'; - } - else { - line.style.top = this.body.domProps.top.height + 'px'; + LineGraph.prototype._getDataIntersections = function (intersections, combinedData) { + // get intersections + var coreDistance; + for (var i = 0; i < combinedData.length; i++) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].x - combinedData[i].x); + } + if (i > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].x - combinedData[i].x)); + } + if (coreDistance == 0) { + if (intersections[combinedData[i].x] === undefined) { + intersections[combinedData[i].x] = {amount: 0, resolved: 0, accumulated: 0}; + } + intersections[combinedData[i].x].amount += 1; + } } - line.style.height = props.minorLineHeight + 'px'; - line.style.left = (x - props.minorLineWidth / 2) + 'px'; }; /** - * Create a Major line for the axis at position x - * @param {Number} x - * @param {String} orientation "top" or "bottom" (default) + * Get the width and offset for bargraphs based on the coredistance between datapoints + * + * @param coreDistance + * @param group + * @param minWidth + * @returns {{width: Number, offset: Number}} * @private */ - TimeAxis.prototype._repaintMajorLine = function (x, orientation) { - // reuse redundant line - var line = this.dom.redundant.majorLines.shift(); - - if (!line) { - // create vertical line - line = document.createElement('DIV'); - line.className = 'grid vertical major'; - this.dom.background.appendChild(line); - } - this.dom.majorLines.push(line); + LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; - var props = this.props; - if (orientation == 'top') { - line.style.top = '0'; + offset = 0; // recalculate offset with the new width; + if (group.options.barChart.align == 'left') { + offset -= 0.5 * coreDistance; + } + else if (group.options.barChart.align == 'right') { + offset += 0.5 * coreDistance; + } } else { - line.style.top = this.body.domProps.top.height + 'px'; + // default settings + width = group.options.barChart.width; + offset = 0; + 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; + } } - line.style.left = (x - props.majorLineWidth / 2) + 'px'; - line.style.height = props.majorLineHeight + 'px'; + + return {width: width, offset: offset}; }; + /** - * 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 + * draw a line graph + * + * @param dataset + * @param group */ - TimeAxis.prototype._calculateCharSize = function () { - // Note: We calculate char size with every redraw. Size may change, for - // example when any of the timelines parents had display:none for example. - - // determine the char width and height on the minor axis - if (!this.dom.measureCharMinor) { - this.dom.measureCharMinor = document.createElement('DIV'); - this.dom.measureCharMinor.className = 'text minor measure'; - this.dom.measureCharMinor.style.position = 'absolute'; + 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.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; + // construct path from dataset + if (group.options.catmullRom.enabled == true) { + d = this._catmullRom(dataset, group); + } + else { + d = this._linear(dataset); + } - // determine the char width and height on the major axis - if (!this.dom.measureCharMajor) { - this.dom.measureCharMajor = document.createElement('DIV'); - this.dom.measureCharMajor.className = 'text minor measure'; - this.dom.measureCharMajor.style.position = 'absolute'; + // 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.dom.measureCharMajor.appendChild(document.createTextNode('0')); - this.dom.foreground.appendChild(this.dom.measureCharMajor); + // draw points + if (group.options.drawPoints.enabled == true) { + this._drawPoints(dataset, group, this.svgElements, this.svg); + } + } } - this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; - this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; }; /** - * 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 + * draw the data points + * + * @param {Array} dataset + * @param {Object} JSONcontainer + * @param {Object} svg | SVG DOM element + * @param {GraphGroup} group + * @param {Number} [offset] */ - TimeAxis.prototype.snap = function(date) { - return this.step.snap(date); + 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); + } }; - module.exports = TimeAxis; - - -/***/ }, -/* 25 */ -/***/ function(module, exports, __webpack_require__) { - var moment = __webpack_require__(2); /** - * @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. + * 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. * - * 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 + * @param datapoints + * @returns {Array} + * @private */ - function TimeStep(start, end, minimumStep) { - // variables - this.current = new Date(); - this._start = new Date(); - this._end = new Date(); - - this.autoScale = true; - this.scale = TimeStep.SCALE.DAY; - this.step = 1; + LineGraph.prototype._convertXcoordinates = function (datapoints) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; - // initialize the range - this.setRange(start, end, minimumStep); - } + for (var i = 0; i < datapoints.length; i++) { + xValue = toScreen(datapoints[i].x) + this.width - 1; + yValue = datapoints[i].y; + extractedData.push({x: xValue, y: yValue}); + } - /// enum scale - TimeStep.SCALE = { - MILLISECOND: 1, - SECOND: 2, - MINUTE: 3, - HOUR: 4, - DAY: 5, - WEEKDAY: 6, - MONTH: 7, - YEAR: 8 + return extractedData; }; + /** - * 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 + * 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 */ - TimeStep.prototype.setRange = function(start, end, minimumStep) { - if (!(start instanceof Date) || !(end instanceof Date)) { - throw "No legal start or end date in method setRange"; + LineGraph.prototype._convertYcoordinates = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; + var axis = this.yAxisLeft; + var svgHeight = Number(this.svg.style.height.replace("px","")); + if (group.options.yAxisOrientation == 'right') { + axis = this.yAxisRight; } - 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); + for (var i = 0; i < datapoints.length; i++) { + xValue = toScreen(datapoints[i].x) + this.width - 1; + yValue = Math.round(axis.convertValue(datapoints[i].y)); + extractedData.push({x: xValue, y: yValue}); } - }; - - /** - * Set the range iterator to the start date. - */ - TimeStep.prototype.first = function() { - this.current = new Date(this._start.valueOf()); - this.roundToMinor(); - }; - /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date - */ - TimeStep.prototype.roundToMinor = function() { - // round to floor - // IMPORTANT: we have no breaks in this switch! (this is no bug) - //noinspection FallthroughInSwitchStatementJS - switch (this.scale) { - case TimeStep.SCALE.YEAR: - this.current.setFullYear(this.step * Math.floor(this.current.getFullYear() / this.step)); - this.current.setMonth(0); - case TimeStep.SCALE.MONTH: this.current.setDate(1); - case TimeStep.SCALE.DAY: // intentional fall through - case TimeStep.SCALE.WEEKDAY: this.current.setHours(0); - case TimeStep.SCALE.HOUR: this.current.setMinutes(0); - case TimeStep.SCALE.MINUTE: this.current.setSeconds(0); - case TimeStep.SCALE.SECOND: this.current.setMilliseconds(0); - //case TimeStep.SCALE.MILLISECOND: // nothing to do for milliseconds - } + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); - 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; - } - } + return extractedData; }; /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date + * 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 */ - TimeStep.prototype.hasNext = function () { - return (this.current.valueOf() <= this._end.valueOf()); - }; + 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++) { - /** - * Do the next step - */ - TimeStep.prototype.next = function() { - var prev = this.current.valueOf(); + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - // 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 { - 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; - } - } + // 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 - 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; - } - } + // 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 }; - // safety mechanism: if current time is still unchanged, move to the end - if (this.current.valueOf() == prev) { - this.current = new Date(this._end.valueOf()); + d += "C" + + bp1.x + "," + + bp1.y + " " + + bp2.x + "," + + bp2.y + " " + + p2.x + "," + + p2.y + " "; } - }; - - /** - * Get the current datetime - * @return {Date} current The current date - */ - TimeStep.prototype.getCurrent = function() { - return this.current; + return d; }; /** - * 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. + * 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. * - * @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. + * One optimization can be used to reuse distances since this is a sliding window approach. + * @param data + * @returns {string} + * @private */ - TimeStep.prototype.setScale = function(newScale, newStep) { - this.scale = newScale; - - if (newStep > 0) { - this.step = newStep; + 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++) { - this.autoScale = false; - }; + p0 = (i == 0) ? data[0] : data[i-1]; + p1 = data[i]; + p2 = data[i+1]; + p3 = (i + 2 < length) ? data[i+2] : p2; - /** - * Enable or disable autoscaling - * @param {boolean} enable If true, autoascaling is set true - */ - TimeStep.prototype.setAutoScale = function (enable) { - this.autoScale = enable; - }; + 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 ] - /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds - */ - TimeStep.prototype.setMinimumStep = function(minimumStep) { - if (minimumStep == undefined) { - return; - } + // [ 0 1 0 0 ] + // [ -d2pow2a/N A/N d1pow2a/N 0 ] + // [ 0 d3pow2a/M B/M -d2pow2a/M ] + // [ 0 0 1 0 ] - 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); + 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); - // 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;} - }; + 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;} - /** - * 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()); + bp1 = { x: ((-d2pow2A * p0.x + A*p1.x + d1pow2A * p2.x) * N), + y: ((-d2pow2A * p0.y + A*p1.y + d1pow2A * p2.y) * N)}; - 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); - } + bp2 = { x: (( d3pow2A * p1.x + B*p2.x - d2pow2A * p3.x) * M), + y: (( d3pow2A * p1.y + B*p2.y - d2pow2A * p3.y) * M)}; - clone.setHours(0); - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.DAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 24) * 24); break; - default: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.WEEKDAY) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 5: - case 2: - clone.setHours(Math.round(clone.getHours() / 12) * 12); break; - default: - clone.setHours(Math.round(clone.getHours() / 6) * 6); break; - } - clone.setMinutes(0); - clone.setSeconds(0); - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.HOUR) { - switch (this.step) { - case 4: - clone.setMinutes(Math.round(clone.getMinutes() / 60) * 60); break; - default: - clone.setMinutes(Math.round(clone.getMinutes() / 30) * 30); break; - } - clone.setSeconds(0); - clone.setMilliseconds(0); - } else if (this.scale == TimeStep.SCALE.MINUTE) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setMinutes(Math.round(clone.getMinutes() / 5) * 5); - clone.setSeconds(0); - break; - case 5: - clone.setSeconds(Math.round(clone.getSeconds() / 60) * 60); break; - default: - clone.setSeconds(Math.round(clone.getSeconds() / 30) * 30); break; - } - clone.setMilliseconds(0); - } - else if (this.scale == TimeStep.SCALE.SECOND) { - //noinspection FallthroughInSwitchStatementJS - switch (this.step) { - case 15: - case 10: - clone.setSeconds(Math.round(clone.getSeconds() / 5) * 5); - clone.setMilliseconds(0); - break; - case 5: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 1000) * 1000); break; - default: - clone.setMilliseconds(Math.round(clone.getMilliseconds() / 500) * 500); break; + 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; } - 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. + * this generates the SVG path for a linear drawing between datapoints. + * @param data + * @returns {string} + * @private */ - 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; + 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; }; - - /** - * 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; - } - - 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 ''; - } - }; - - - /** - * Returns formatted text for the major axis label, depending on the current - * date and the scale. For example when scale is MINUTE, the major scale is - * hours, and the hour will be formatted as "hh". - * @param {Date} [date] custom date. if not provided, current date is taken - */ - TimeStep.prototype.getLabelMajor = function(date) { - if (date == undefined) { - date = this.current; - } - - //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 ''; - } - }; - - module.exports = TimeStep; + module.exports = LineGraph; /***/ }, -/* 26 */ +/* 27 */ /***/ function(module, exports, __webpack_require__) { var util = __webpack_require__(1); - var Component = __webpack_require__(22); - var moment = __webpack_require__(2); - var locales = __webpack_require__(27); + var Component = __webpack_require__(18); + var TimeStep = __webpack_require__(17); + var moment = __webpack_require__(40); /** - * A current time bar - * @param {{range: Range, dom: Object, domProps: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCurrentTime] - * @constructor CurrentTime + * 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 CurrentTime (body, options) { - this.body = body; + function TimeAxis (body, options) { + this.dom = { + foreground: null, + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [], + redundant: { + majorLines: [], + majorTexts: [], + minorLines: [], + minorTexts: [] + } + }; + this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; - // default options this.defaultOptions = { - showCurrentTime: true, - - locales: locales, - locale: 'en' + orientation: 'bottom', // supported: 'top', 'bottom' + // TODO: implement timeaxis orientations 'left' and 'right' + showMinorLabels: true, + showMajorLabels: true }; this.options = util.extend({}, this.defaultOptions); + this.body = body; + + // create the HTML DOM this._create(); this.setOptions(options); } - CurrentTime.prototype = new Component(); + TimeAxis.prototype = new Component(); /** - * Create the HTML DOM for the current time bar - * @private + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] */ - CurrentTime.prototype._create = function() { - var bar = document.createElement('div'); - bar.className = 'currenttime'; - bar.style.position = 'absolute'; - bar.style.top = '0px'; - bar.style.height = '100%'; + TimeAxis.prototype.setOptions = function(options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['orientation', 'showMinorLabels', 'showMajorLabels'], this.options, options); - this.bar = bar; + // apply locale to moment.js + // TODO: not so nice, this is applied globally to moment.js + if ('locale' in options) { + if (typeof moment.locale === 'function') { + // moment.js 2.8.1+ + moment.locale(options.locale); + } + else { + moment.lang(options.locale); + } + } + } }; /** - * Destroy the CurrentTime bar + * Create the HTML DOM for the TimeAxis */ - CurrentTime.prototype.destroy = function () { - this.options.showCurrentTime = false; - this.redraw(); // will remove the bar from the DOM and stop refreshing + TimeAxis.prototype._create = function() { + this.dom.foreground = document.createElement('div'); + this.dom.background = document.createElement('div'); - this.body = null; + this.dom.foreground.className = 'timeaxis foreground'; + this.dom.background.className = 'timeaxis background'; }; /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCurrentTime] + * Destroy the TimeAxis */ - CurrentTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCurrentTime', 'locale', 'locales'], this.options, options); + TimeAxis.prototype.destroy = function() { + // remove from DOM + if (this.dom.foreground.parentNode) { + this.dom.foreground.parentNode.removeChild(this.dom.foreground); + } + if (this.dom.background.parentNode) { + this.dom.background.parentNode.removeChild(this.dom.background); } + + this.body = null; }; /** * Repaint the component * @return {boolean} Returns true if the component is resized */ - 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(); - } + TimeAxis.prototype.redraw = function () { + var options = this.options, + props = this.props, + foreground = this.dom.foreground, + background = this.dom.background; - var now = new Date(); - var x = this.body.util.toScreen(now); + // determine the correct parent DOM element (depending on option orientation) + var parent = (options.orientation == 'top') ? this.body.dom.top : this.body.dom.bottom; + var parentChanged = (foreground.parentNode !== parent); - 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); + // calculate character width and height + this._calculateCharSize(); - 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(); - } + // TODO: recalculate sizes only needed when parent is resized or options is changed + var orientation = this.options.orientation, + showMinorLabels = this.options.showMinorLabels, + showMajorLabels = this.options.showMajorLabels; - return false; - }; + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + props.height = props.minorLabelHeight + props.majorLabelHeight; + props.width = foreground.offsetWidth; - /** - * Start auto refreshing the current time bar - */ - CurrentTime.prototype.start = function() { - var me = this; + props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight - + (options.orientation == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height); + props.minorLineWidth = 1; // TODO: really calculate width + props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight; + props.majorLineWidth = 1; // TODO: really calculate width - function update () { - me.stop(); + // take foreground and background offline while updating (is almost twice as fast) + var foregroundNextSibling = foreground.nextSibling; + var backgroundNextSibling = background.nextSibling; + foreground.parentNode && foreground.parentNode.removeChild(foreground); + background.parentNode && background.parentNode.removeChild(background); - // 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; + foreground.style.height = this.props.height + 'px'; - me.redraw(); + this._repaintLabels(); - // start a timer to adjust for the new time - me.currentTimeTimer = setTimeout(update, interval); + // put DOM online again (at the same place) + if (foregroundNextSibling) { + parent.insertBefore(foreground, foregroundNextSibling); + } + else { + parent.appendChild(foreground) + } + if (backgroundNextSibling) { + this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + } + else { + this.body.dom.backgroundVertical.appendChild(background) } - update(); + return this._isResized() || parentChanged; }; /** - * Stop auto refreshing the current time bar + * Repaint major and minor text labels and vertical grid lines + * @private */ - CurrentTime.prototype.stop = function() { - if (this.currentTimeTimer !== undefined) { - clearTimeout(this.currentTimeTimer); - delete this.currentTimeTimer; - } - }; - - module.exports = CurrentTime; - - -/***/ }, -/* 27 */ -/***/ function(module, exports, __webpack_require__) { - - // English - exports['en'] = { - current: 'current', - time: 'time' - }; - 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']; - - -/***/ }, -/* 28 */ -/***/ function(module, exports, __webpack_require__) { + TimeAxis.prototype._repaintLabels = function () { + var orientation = this.options.orientation; - 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); + // calculate range and step (step such that we have space for 7 characters per label) + var start = util.convert(this.body.range.start, 'Number'), + end = util.convert(this.body.range.end, 'Number'), + minimumStep = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf() + -this.body.util.toTime(0).valueOf(); + var step = new TimeStep(new Date(start), new Date(end), minimumStep); + this.step = step; - /** - * A custom time bar - * @param {{range: Range, dom: Object}} body - * @param {Object} [options] Available parameters: - * {Boolean} [showCustomTime] - * @constructor CustomTime - * @extends Component - */ + // Move all DOM elements to a "redundant" list, where they + // can be picked for re-use, and clear the lists with lines and texts. + // At the end of the function _repaintLabels, left over elements will be cleaned up + var dom = this.dom; + dom.redundant.majorLines = dom.majorLines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorLines = dom.minorLines; + dom.redundant.minorTexts = dom.minorTexts; + dom.majorLines = []; + dom.majorTexts = []; + dom.minorLines = []; + dom.minorTexts = []; - function CustomTime (body, options) { - this.body = body; + step.first(); + var xFirstMajorLabel = undefined; + var max = 0; + while (step.hasNext() && max < 1000) { + max++; + var cur = step.getCurrent(), + x = this.body.util.toScreen(cur), + isMajor = step.isMajor(); - // default options - this.defaultOptions = { - showCustomTime: false, - locales: locales, - locale: 'en' - }; - this.options = util.extend({}, this.defaultOptions); + // TODO: lines must have a width, such that we can create css backgrounds - this.customTime = new Date(); - this.eventParams = {}; // stores state parameters while dragging the bar + if (this.options.showMinorLabels) { + this._repaintMinorText(x, step.getLabelMinor(), orientation); + } - // create the DOM - this._create(); + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; + } + this._repaintMajorText(x, step.getLabelMajor(), orientation); + } + this._repaintMajorLine(x, orientation); + } + else { + this._repaintMinorLine(x, orientation); + } - this.setOptions(options); - } + step.next(); + } - CustomTime.prototype = new Component(); + // create a major label on the left when needed + if (this.options.showMajorLabels) { + var leftTime = this.body.util.toTime(0), + leftText = step.getLabelMajor(leftTime), + widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation - /** - * Set options for the component. Options will be merged in current options. - * @param {Object} options Available parameters: - * {boolean} [showCustomTime] - */ - CustomTime.prototype.setOptions = function(options) { - if (options) { - // copy all options that we know - util.selectiveExtend(['showCustomTime', 'locale', 'locales'], this.options, options); + if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { + this._repaintMajorText(0, leftText, orientation); + } } + + // Cleanup leftover DOM elements from the redundant list + util.forEach(this.dom.redundant, function (arr) { + while (arr.length) { + var elem = arr.pop(); + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + }); }; /** - * Create the DOM for the custom time + * Create a minor label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) * @private */ - 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; + TimeAxis.prototype._repaintMinorText = function (x, text, orientation) { + // reuse redundant label + var label = this.dom.redundant.minorTexts.shift(); - 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); + if (!label) { + // create new label + var content = document.createTextNode(''); + label = document.createElement('div'); + label.appendChild(content); + label.className = 'text minor'; + this.dom.foreground.appendChild(label); + } + this.dom.minorTexts.push(label); - // 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)); + label.childNodes[0].nodeValue = text; + + label.style.top = (orientation == 'top') ? (this.props.majorLabelHeight + 'px') : '0'; + label.style.left = x + 'px'; + //label.title = title; // TODO: this is a heavy operation }; /** - * Destroy the CustomTime bar + * Create a Major label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) + * @private */ - CustomTime.prototype.destroy = function () { - this.options.showCustomTime = false; - this.redraw(); // will remove the bar from the DOM + TimeAxis.prototype._repaintMajorText = function (x, text, orientation) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); - this.hammer.enable(false); - this.hammer = null; + if (!label) { + // create label + var content = document.createTextNode(text); + label = document.createElement('div'); + label.className = 'text major'; + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.majorTexts.push(label); - this.body = null; + label.childNodes[0].nodeValue = text; + //label.title = title; // TODO: this is a heavy operation + + label.style.top = (orientation == 'top') ? '0' : (this.props.minorLabelHeight + 'px'); + label.style.left = x + 'px'; }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Create a minor line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) + * @private */ - CustomTime.prototype.redraw = function () { - if (this.options.showCustomTime) { - var parent = this.body.dom.backgroundVertical; - if (this.bar.parentNode != parent) { - // attach to the dom - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } - parent.appendChild(this.bar); - } - - var x = this.body.util.toScreen(this.customTime); + TimeAxis.prototype._repaintMinorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.minorLines.shift(); - 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); + if (!line) { + // create vertical line + line = document.createElement('div'); + line.className = 'grid vertical minor'; + this.dom.background.appendChild(line); + } + this.dom.minorLines.push(line); - this.bar.style.left = x + 'px'; - this.bar.title = title; + var props = this.props; + if (orientation == 'top') { + line.style.top = props.majorLabelHeight + 'px'; } else { - // remove the line from the DOM - if (this.bar.parentNode) { - this.bar.parentNode.removeChild(this.bar); - } + line.style.top = this.body.domProps.top.height + 'px'; } - - return false; + line.style.height = props.minorLineHeight + 'px'; + line.style.left = (x - props.minorLineWidth / 2) + 'px'; }; /** - * Set custom time. - * @param {Date} time + * Create a Major line for the axis at position x + * @param {Number} x + * @param {String} orientation "top" or "bottom" (default) + * @private */ - CustomTime.prototype.setCustomTime = function(time) { - this.customTime = new Date(time.valueOf()); - this.redraw(); - }; - - /** - * Retrieve the current custom time. - * @return {Date} customTime - */ - CustomTime.prototype.getCustomTime = function() { - return new Date(this.customTime.valueOf()); - }; + TimeAxis.prototype._repaintMajorLine = function (x, orientation) { + // reuse redundant line + var line = this.dom.redundant.majorLines.shift(); - /** - * Start moving horizontally - * @param {Event} event - * @private - */ - CustomTime.prototype._onDragStart = function(event) { - this.eventParams.dragging = true; - this.eventParams.customTime = this.customTime; + if (!line) { + // create vertical line + line = document.createElement('DIV'); + line.className = 'grid vertical major'; + this.dom.background.appendChild(line); + } + this.dom.majorLines.push(line); - event.stopPropagation(); - event.preventDefault(); + var props = this.props; + if (orientation == 'top') { + line.style.top = '0'; + } + else { + line.style.top = this.body.domProps.top.height + 'px'; + } + line.style.left = (x - props.majorLineWidth / 2) + 'px'; + line.style.height = props.majorLineHeight + 'px'; }; /** - * Perform moving operating. - * @param {Event} event + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. * @private */ - CustomTime.prototype._onDrag = function (event) { - if (!this.eventParams.dragging) return; + TimeAxis.prototype._calculateCharSize = function () { + // Note: We calculate char size with every redraw. Size may change, for + // example when any of the timelines parents had display:none for example. - var deltaX = event.gesture.deltaX, - x = this.body.util.toScreen(this.eventParams.customTime) + deltaX, - time = this.body.util.toTime(x); + // determine the char width and height on the minor axis + if (!this.dom.measureCharMinor) { + this.dom.measureCharMinor = document.createElement('DIV'); + this.dom.measureCharMinor.className = 'text minor measure'; + this.dom.measureCharMinor.style.position = 'absolute'; - this.setCustomTime(time); + 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; - // fire a timechange event - this.body.emitter.emit('timechange', { - time: new Date(this.customTime.valueOf()) - }); + // determine the char width and height on the major axis + if (!this.dom.measureCharMajor) { + this.dom.measureCharMajor = document.createElement('DIV'); + this.dom.measureCharMajor.className = 'text minor measure'; + this.dom.measureCharMajor.style.position = 'absolute'; - event.stopPropagation(); - event.preventDefault(); + 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; }; /** - * Stop moving operating. - * @param {event} event - * @private + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * @param {Date} date the date to be snapped. + * @return {Date} snappedDate */ - 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(); + TimeAxis.prototype.snap = function(date) { + return this.step.snap(date); }; - module.exports = CustomTime; + module.exports = TimeAxis; /***/ }, -/* 29 */ +/* 28 */ /***/ 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 Hammer = __webpack_require__(41); + + /** + * @constructor Item + * @param {Object} data Object containing (optional) parameters type, + * start, end, content, group, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} options Configuration options + * // TODO: describe available options + */ + function Item (data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; + this.selected = false; + this.displayed = false; + this.dirty = true; - var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + this.top = null; + this.left = null; + this.width = null; + this.height = null; + } /** - * 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 + * Select current item */ - function ItemSet(body, options) { - this.body = body; + Item.prototype.select = function() { + this.selected = true; + if (this.displayed) this.redraw(); + }; - this.defaultOptions = { - type: null, // 'box', 'point', 'range' - orientation: 'bottom', // 'top' or 'bottom' - align: 'center', // alignment of box items - stack: true, - groupOrder: null, + /** + * Unselect current item + */ + Item.prototype.unselect = function() { + this.selected = false; + if (this.displayed) this.redraw(); + }; - selectable: true, - editable: { - updateTime: false, - updateGroup: false, - add: false, - remove: 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(); + } + } + else { + this.parent = parent; + } + }; - onAdd: function (item, callback) { - callback(item); - }, - onUpdate: function (item, callback) { - callback(item); - }, - onMove: function (item, callback) { - callback(item); - }, - onRemove: function (item, callback) { - callback(item); - }, + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + Item.prototype.isVisible = function(range) { + // Should be implemented by Item implementations + return false; + }; - margin: { - item: { - horizontal: 10, - vertical: 10 - }, - axis: 20 - }, - padding: 5 - }; + /** + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed + */ + Item.prototype.show = function() { + return false; + }; - // options is shared by this ItemSet and all its items - this.options = util.extend({}, this.defaultOptions); + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + Item.prototype.hide = function() { + return false; + }; - // options for getting items from the DataSet with the correct type - this.itemOptions = { - type: {start: 'Date', end: 'Date'} - }; + /** + * Repaint the item + */ + Item.prototype.redraw = function() { + // should be implemented by the item + }; - this.conversion = { - toScreen: body.util.toScreen, - toTime: body.util.toTime - }; - this.dom = {}; - this.props = {}; - this.hammer = null; + /** + * Reposition the Item horizontally + */ + Item.prototype.repositionX = function() { + // should be implemented by the item + }; - var me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + /** + * Reposition the Item vertically + */ + Item.prototype.repositionY = function() { + // should be implemented by the item + }; - // 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); - } - }; + /** + * 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; - // 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); + 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); } - }; + this.dom.deleteButton = null; + } + }; - this.items = {}; // object with an Item for every data item - this.groups = {}; // Group object for every group - this.groupIds = []; + module.exports = Item; - this.selection = []; // list with the ids of all selected nodes - this.stackDirty = true; // if true, all items will be restacked on next redraw - this.touchParams = {}; // stores properties while dragging - // create the HTML DOM +/***/ }, +/* 29 */ +/***/ function(module, exports, __webpack_require__) { - this._create(); + var Item = __webpack_require__(28); - this.setOptions(options); + /** + * @constructor ItemBox + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function ItemBox (data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 + } + }; + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } + } + + Item.call(this, data, conversion, options); } - ItemSet.prototype = new Component(); + ItemBox.prototype = new Item (null, null, null); - // available item types will be registered here - ItemSet.types = { - box: ItemBox, - range: ItemRange, - point: ItemPoint + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + ItemBox.prototype.isVisible = function(range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return (this.data.start > range.start - interval) && (this.data.start < range.end + interval); }; /** - * Create the HTML DOM for the ItemSet + * Repaint the item */ - ItemSet.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'itemset'; - frame['timeline-itemset'] = this; - this.dom.frame = frame; + ItemBox.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - // create background panel - var background = document.createElement('div'); - background.className = 'background'; - frame.appendChild(background); - this.dom.background = background; + // create main box + dom.box = document.createElement('DIV'); - // create foreground panel - var foreground = document.createElement('div'); - foreground.className = 'foreground'; - frame.appendChild(foreground); - this.dom.foreground = foreground; + // contents box (inside the background box). used for making margins + dom.content = document.createElement('DIV'); + dom.content.className = 'content'; + dom.box.appendChild(dom.content); - // create axis panel - var axis = document.createElement('div'); - axis.className = 'axis'; - this.dom.axis = axis; + // line to axis + dom.line = document.createElement('DIV'); + dom.line.className = 'line'; - // create labelset - var labelSet = document.createElement('div'); - labelSet.className = 'labelset'; - this.dom.labelSet = labelSet; + // dot on axis + dom.dot = document.createElement('DIV'); + dom.dot.className = 'dot'; - // create ungrouped Group - this._updateUngrouped(); + // attach this item as attribute + dom.box['timeline-item'] = this; + } - // 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 - }); + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); + foreground.appendChild(dom.box); + } + if (!dom.line.parentNode) { + var background = this.parent.dom.background; + if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); + background.appendChild(dom.line); + } + if (!dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); + axis.appendChild(dom.dot); + } + this.displayed = true; - // 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)); + // 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); + } - // single select (or unselect) when tapping an item - this.hammer.on('tap', this._onSelectItem.bind(this)); + this.dirty = true; + } - // multi select when holding mouse/touch, or on ctrl+click - this.hammer.on('hold', this._onMultiSelectItem.bind(this)); + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; + } - // add item on doubletap - this.hammer.on('doubletap', this._onAddItem.bind(this)); + // 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; - // attach to the DOM - this.show(); + this.dirty = true; + } + + // recalculate size + if (this.dirty) { + this.props.dot.height = dom.dot.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.line.width = dom.line.offsetWidth; + this.width = dom.box.offsetWidth; + this.height = dom.box.offsetHeight; + + this.dirty = false; + } + + this._repaintDeleteButton(dom.box); }; /** - * 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. + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. */ - 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(); + ItemBox.prototype.show = function() { + if (!this.displayed) { + this.redraw(); } }; /** - * Mark the ItemSet dirty so it will refresh everything with next redraw + * Hide the item from the DOM (when visible) */ - ItemSet.prototype.markDirty = function() { - this.groupIds = []; - this.stackDirty = true; - }; + ItemBox.prototype.hide = function() { + if (this.displayed) { + var dom = this.dom; - /** - * Destroy the ItemSet - */ - ItemSet.prototype.destroy = function() { - this.hide(); - this.setItems(null); - this.setGroups(null); + 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.hammer = null; + this.top = null; + this.left = null; - this.body = null; - this.conversion = null; + this.displayed = false; + } }; /** - * Hide the component from the DOM + * Reposition the item horizontally + * @Override */ - ItemSet.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); - } + 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; - // remove the axis with dots - if (this.dom.axis.parentNode) { - this.dom.axis.parentNode.removeChild(this.dom.axis); + // calculate left position of the box + if (align == 'right') { + this.left = start - this.width; } - - // remove the labelset containing all group labels - if (this.dom.labelSet.parentNode) { - this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + else if (align == 'left') { + this.left = start; } - }; - - /** - * 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); + else { + // default or 'center' + this.left = start - this.width / 2; } - // show axis with dots - if (!this.dom.axis.parentNode) { - this.body.dom.top.appendChild(this.dom.axis); - } + // reposition box + box.style.left = this.left + 'px'; - // show labelset containing labels - if (!this.dom.labelSet.parentNode) { - this.body.dom.left.appendChild(this.dom.labelSet); - } + // reposition line + line.style.left = (start - this.props.line.width / 2) + 'px'; + + // reposition dot + dot.style.left = (start - this.props.dot.width / 2) + 'px'; }; /** - * 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. + * Reposition the item vertically + * @Override */ - ItemSet.prototype.setSelection = function(ids) { - var i, ii, id, item; + ItemBox.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box, + line = this.dom.line, + dot = this.dom.dot; - if (ids) { - if (!Array.isArray(ids)) { - throw new TypeError('Array expected'); - } + if (orientation == 'top') { + box.style.top = (this.top || 0) + 'px'; - // 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(); - } + 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; - // 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(); - } - } + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + line.style.top = (itemSetHeight - lineHeight) + 'px'; + line.style.bottom = '0'; } - }; - /** - * Get the selected items by their id - * @return {Array} ids The ids of the selected items - */ - ItemSet.prototype.getSelection = function() { - return this.selection.concat([]); + dot.style.top = (-this.props.dot.height / 2) + 'px'; }; - /** - * Get the id's of the currently visible items. - * @returns {Array} The ids of the visible items - */ - 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); + module.exports = ItemBox; - 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); - } - } - } - } +/***/ }, +/* 30 */ +/***/ function(module, exports, __webpack_require__) { - return ids; - }; + var Item = __webpack_require__(28); /** - * Deselect a selected item - * @param {String | Number} id - * @private + * @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 */ - 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; + 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); } } + + 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 + */ + 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); }; /** - * Repaint the component - * @return {boolean} Returns true if the component is resized + * Repaint the item */ - 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; + ItemPoint.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - // update class name - frame.className = 'itemset' + (editable ? ' editable' : ''); + // background box + dom.point = document.createElement('div'); + // className is updated in redraw() - // reorder the groups (if needed) - resized = this._orderGroups() || resized; + // contents box, right from the dot + dom.content = document.createElement('div'); + dom.content.className = 'content'; + dom.point.appendChild(dom.content); - // 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; + // dot at start + dom.dot = document.createElement('div'); + dom.point.appendChild(dom.dot); - // 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; + // attach this item as attribute + dom.point['timeline-item'] = this; + } - // update frame height - frame.style.height = asSize(height); + // 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; - // calculate actual size and position - this.props.top = frame.offsetTop; - this.props.left = frame.offsetLeft; - this.props.width = frame.offsetWidth; - this.props.height = height; + // 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); + } - // 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 = '0'; + this.dirty = true; + } - // check if this component is resized - resized = this._isResized() || resized; + // update title + if (this.data.title != this.title) { + dom.point.title = this.data.title; + this.title = this.data.title; + } - return resized; + // 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; + } + + // 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; + } + + this._repaintDeleteButton(dom.point); }; /** - * Get the first group, aligned with the axis - * @return {Group | null} firstGroup - * @private + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - 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; + ItemPoint.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } }; /** - * Create or delete the group holding all ungrouped items. This group is used when - * there are no groups specified. - * @protected + * Hide the item from the DOM (when visible) */ - 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]; + ItemPoint.prototype.hide = function() { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); } - } - 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]); - } - } + this.top = null; + this.left = null; - ungrouped.show(); - } + this.displayed = false; } }; /** - * Get the element for the labelset - * @return {HTMLElement} labelSet + * Reposition the item horizontally + * @Override */ - ItemSet.prototype.getLabelSet = function() { - return this.dom.labelSet; + ItemPoint.prototype.repositionX = function() { + var start = this.conversion.toScreen(this.data.start); + + this.left = start - this.props.dot.width; + + // reposition point + this.dom.point.style.left = this.left + 'px'; }; /** - * Set items - * @param {vis.DataSet | null} items + * Reposition the item vertically + * @Override */ - ItemSet.prototype.setItems = function(items) { - var me = this, - ids, - oldItemsData = this.itemsData; + ItemPoint.prototype.repositionY = function() { + var orientation = this.options.orientation, + point = this.dom.point; - // replace the dataset - if (!items) { - this.itemsData = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - this.itemsData = items; + if (orientation == 'top') { + point.style.top = this.top + 'px'; } else { - throw new TypeError('Data must be an instance of DataSet or DataView'); + point.style.top = (this.parent.height - this.top - this.height) + 'px'; } + }; - if (oldItemsData) { - // unsubscribe from old dataset - util.forEach(this.itemListeners, function (callback, event) { - oldItemsData.off(event, callback); - }); + module.exports = ItemPoint; - // 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); - }); +/***/ }, +/* 31 */ +/***/ function(module, exports, __webpack_require__) { - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); + var Hammer = __webpack_require__(41); + var Item = __webpack_require__(28); - // update the group holding all ungrouped items - this._updateUngrouped(); + /** + * @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 ItemRange (data, conversion, options) { + this.props = { + content: { + width: 0 + } + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data.id); + } + if (data.end == undefined) { + throw new Error('Property "end" missing in item ' + data.id); + } } - }; + + Item.call(this, data, conversion, options); + } + + ItemRange.prototype = new Item (null, null, null); + + ItemRange.prototype.baseClassName = 'item range'; /** - * Get the current items - * @returns {vis.DataSet | 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 */ - ItemSet.prototype.getItems = function() { - return this.itemsData; + ItemRange.prototype.isVisible = function(range) { + // determine visibility + return (this.data.start < range.end) && (this.data.end > range.start); }; /** - * Set groups - * @param {vis.DataSet} groups + * Repaint the item */ - ItemSet.prototype.setGroups = function(groups) { - var me = this, - ids; + ItemRange.prototype.redraw = function() { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a 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; } - // replace the dataset - if (!groups) { - this.groupsData = null; + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; + 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 { - throw new TypeError('Data must be an instance of DataSet or DataView'); + 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; } - if (this.groupsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.on(event, callback, id); - }); + // update title + if (this.data.title != this.title) { + dom.box.title = this.data.title; + this.title = this.data.title; + } - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); + // 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; } - // update the group holding all ungrouped items - this._updateUngrouped(); + // recalculate size + if (this.dirty) { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; - // update the order of all items in each group - this._order(); + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; - this.body.emitter.emit('change'); + this.dirty = false; + } + + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); }; /** - * Get the current groups - * @returns {vis.DataSet | null} groups + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. */ - ItemSet.prototype.getGroups = function() { - return this.groupsData; + ItemRange.prototype.show = function() { + if (!this.displayed) { + this.redraw(); + } }; /** - * Remove an item by its id - * @param {String | Number} id + * Hide the item from the DOM (when visible) + * @return {Boolean} changed */ - ItemSet.prototype.removeItem = function(id) { - var item = this.itemsData.get(id), - dataset = this.itemsData.getDataSet(); + ItemRange.prototype.hide = function() { + if (this.displayed) { + var box = this.dom.box; - 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); - } - }); + if (box.parentNode) { + box.parentNode.removeChild(box); + } + + this.top = null; + this.left = null; + + this.displayed = false; } }; /** - * Handle updated items - * @param {Number[]} ids - * @protected + * Reposition the item horizontally + * @Override */ - ItemSet.prototype._onUpdate = function(ids) { - var me = this; - - ids.forEach(function (id) { - var itemData = me.itemsData.get(id, me.itemOptions), - item = me.items[id], - type = itemData.type || me.options.type || (itemData.end ? 'range' : 'box'); + 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; - var constructor = ItemSet.types[type]; + // 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 (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); - } - } + 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); - 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 + '"'); - } + 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._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); - }; + this.left = start; + this.width = boxWidth; + } - /** - * Handle added items - * @param {Number[]} ids - * @protected - */ - ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + this.dom.box.style.left = this.left + 'px'; + this.dom.box.style.width = boxWidth + 'px'; + this.dom.content.style.left = contentLeft + 'px'; + }; /** - * Handle removed items - * @param {Number[]} ids - * @protected + * Reposition the item vertically + * @Override */ - 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); - } - }); + ItemRange.prototype.repositionY = function() { + var orientation = this.options.orientation, + box = this.dom.box; - if (count) { - // update order - this._order(); - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); + if (orientation == 'top') { + box.style.top = this.top + 'px'; + } + else { + box.style.top = (this.parent.height - this.top - this.height) + 'px'; } }; /** - * Update the order of item in all groups - * @private + * Repaint a drag area on the left side of the range when the range is selected + * @protected */ - 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(); - }); - }; + 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; - /** - * Handle updated groups - * @param {Number[]} ids - * @private - */ - ItemSet.prototype._onUpdateGroups = function(ids) { - this._onAddGroups(ids); + // 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; + } }; /** - * Handle changed groups - * @param {Number[]} ids - * @private + * Repaint a drag area on the right side of the range when the range is selected + * @protected */ - ItemSet.prototype._onAddGroups = function(ids) { - var me = this; + 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; - ids.forEach(function (id) { - var groupData = me.groupsData.get(id); - var group = me.groups[id]; + // TODO: this should be redundant? + Hammer(dragRight, { + preventDefault: true + }).on('drag', function () { + //console.log('drag right') + }); - if (!group) { - // check for reserved ids - if (id == UNGROUPED) { - throw new Error('Illegal group id. ' + id + ' is a reserved id.'); - } + 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; + } + }; - var groupOptions = Object.create(me.options); - util.extend(groupOptions, { - height: null - }); + module.exports = ItemRange; - 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); - } - } - } +/***/ }, +/* 32 */ +/***/ function(module, exports, __webpack_require__) { - group.order(); - group.show(); - } - else { - // update group - group.setData(groupData); - } - }); + var Emitter = __webpack_require__(49); + var Hammer = __webpack_require__(41); + var mousetrap = __webpack_require__(50); + 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 Activator = __webpack_require__(48); + var locales = __webpack_require__(45); - this.body.emitter.emit('change'); - }; + // Load custom shapes into CanvasRenderingContext2D + __webpack_require__(46); /** - * Handle removed groups - * @param {Number[]} ids - * @private + * @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._onRemoveGroups = function(ids) { - var groups = this.groups; - ids.forEach(function (id) { - var group = groups[id]; + function Network (container, data, options) { + if (!(this instanceof Network)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } - if (group) { - group.hide(); - delete groups[id]; - } - }); + this._initializeMixinLoaders(); - this.markDirty(); + // create variables and set default values + this.containerElement = container; - this.body.emitter.emit('change'); - }; + // 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 - * @return {boolean} changed - * @private - */ - ItemSet.prototype._orderGroups = function () { - if (this.groupsData) { - // reorder the groups - var groupIds = this.groupsData.getIds({ - order: this.options.groupOrder - }); + this.initializing = true; - 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(); - }); + this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; - // show the groups again, attach them to the DOM in correct order - groupIds.forEach(function (groupId) { - groups[groupId].show(); - }); + // 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); - this.groupIds = groupIds; - } + this.hoverObj = {nodes:{},edges:{}}; + this.controlNodesActive = false; - return changed; - } - else { - return false; - } - }; + // 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(); + }); - /** - * Add a new item - * @param {Item} item - * @private - */ - ItemSet.prototype._addItem = function(item) { - this.items[item.id] = item; + // keyboard navigation variables + this.xIncrement = 0; + this.yIncrement = 0; + this.zoomIncrement = 0; - // add to group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); - }; + // 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 an existing item - * @param {Item} item - * @param {Object} itemData - * @private - */ - ItemSet.prototype._updateItem = function(item, itemData) { - var oldGroupId = item.data.group; + // apply options + this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); + this._setScale(1); + this.setOptions(options); - item.data = itemData; - if (item.displayed) { - item.redraw(); - } + // other vars + this.freezeSimulation = false;// freeze the simulation + this.cachedFunctions = {}; - // update group - if (oldGroupId != item.data.group) { - var oldGroup = this.groups[oldGroupId]; - if (oldGroup) oldGroup.remove(item); + // 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 - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.add(item); - } - }; + // 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 + + // create event listeners used to subscribe on the DataSets of the nodes and edges + this.nodesListeners = { + 'add': function (event, params) { + network._addNodes(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateNodes(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeNodes(params.items); + network.start(); + } + }; + this.edgesListeners = { + 'add': function (event, params) { + network._addEdges(params.items); + network.start(); + }, + 'update': function (event, params) { + network._updateEdges(params.items); + network.start(); + }, + 'remove': function (event, params) { + network._removeEdges(params.items); + network.start(); + } + }; + + // properties for the animation + this.moving = true; + this.timer = undefined; // Scheduling function. Is definded in this.start(); + + // load data (the disable start variable will be the same as the enabled clustering) + this.setData(data,this.constants.clustering.enabled || this.constants.hierarchicalLayout.enabled); + + // hierarchical layout + this.initializing = false; + if (this.constants.hierarchicalLayout.enabled == true) { + this._setupHierarchicalLayout(); + } + else { + // zoom so all data will fit on the screen, if clustering is enabled, we do not want start to be called here. + if (this.constants.stabilize == false) { + this.zoomExtent(true,this.constants.clustering.enabled); + } + } + + // if clustering is disabled, the simulation will have started in the setData function + if (this.constants.clustering.enabled) { + this.startWithClustering(); + } + } + + // Extend Network with an Emitter mixin + Emitter(Network.prototype); /** - * 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 + * 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 */ - ItemSet.prototype._removeItem = function(item) { - // remove from DOM - item.hide(); - - // remove from items - delete this.items[item.id]; + Network.prototype._getScriptPath = function() { + var scripts = document.getElementsByTagName( 'script' ); - // remove from selection - var index = this.selection.indexOf(item.id); - if (index != -1) this.selection.splice(index, 1); + // 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); + } + } - // remove from group - var groupId = this.groupsData ? item.data.group : UNGROUPED; - var group = this.groups[groupId]; - if (group) group.remove(item); + return null; }; + /** - * Create an array containing all items being a range (having an end date) - * @param array - * @returns {Array} + * Find the center position of the network * @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]); + 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;} } } - return endArray; + 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}; }; + /** - * 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 + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} * @private */ - ItemSet.prototype._onTouch = function (event) { - // store the touched item, used in _onDragStart - this.touchParams.item = ItemSet.itemFromTarget(event); + Network.prototype._findCenter = function(range) { + return {x: (0.5 * (range.maxX + range.minX)), + y: (0.5 * (range.maxY + range.minY))}; }; + /** - * Start dragging the selected events - * @param {Event} event - * @private + * center the network + * + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; */ - ItemSet.prototype._onDragStart = function (event) { - if (!this.options.editable.updateTime && !this.options.editable.updateGroup) { - return; - } + Network.prototype._centerNetwork = function(range) { + var center = this._findCenter(range); - var item = this.touchParams.item || null, - me = this, - props; + center.x *= this.scale; + center.y *= this.scale; + center.x -= 0.5 * this.frame.canvas.clientWidth; + center.y -= 0.5 * this.frame.canvas.clientHeight; - if (item && item.selected) { - var dragLeftItem = event.target.dragLeftItem; - var dragRightItem = event.target.dragRightItem; + this._setTranslation(-center.x,-center.y); // set at 0,0 + }; - if (dragLeftItem) { - props = { - item: dragLeftItem - }; - if (me.options.editable.updateTime) { - props.start = item.data.start.valueOf(); - } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; - } + /** + * This 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; + } - this.touchParams.itemProps = [props]; - } - else if (dragRightItem) { - props = { - item: dragRightItem - }; + var range = this._getRange(); + var zoomLevel; - if (me.options.editable.updateTime) { - props.end = item.data.end.valueOf(); + 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. } - if (me.options.editable.updateGroup) { - if ('group' in item.data) props.group = item.data.group; + else { + zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. } - - this.touchParams.itemProps = [props]; } else { - this.touchParams.itemProps = this.getSelection().map(function (id) { - var item = me.items[id]; - var props = { - item: item - }; - - 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; - } - - return props; - }); + if (this.constants.clustering.enabled == true && + numberOfNodes >= this.constants.clustering.initialMaxNodes) { + zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } + else { + zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + } } - event.stopPropagation(); + // 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; - /** - * Drag selected items - * @param {Event} 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; + var xZoomLevel = this.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.frame.canvas.clientHeight / yDistance; - // 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; - } - - 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); - } - }); + zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; + } - // TODO: implement onMoving handler + if (zoomLevel > 1.0) { + zoomLevel = 1.0; + } - this.stackDirty = true; // force re-stacking of all items next redraw - this.body.emitter.emit('change'); - event.stopPropagation(); + this._setScale(zoomLevel); + this._centerNetwork(range); + if (disableStart == false) { + this.moving = true; + this.start(); } }; - /** - * 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(); - - item.data.group = group.groupId; - } - } /** - * End of dragging selected items - * @param {Event} event + * Update the this.nodeIndices with the most recent node index list * @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 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); + Network.prototype._updateNodeIndexList = function() { + this._clearNodeIndexList(); + for (var idx in this.nodes) { + if (this.nodes.hasOwnProperty(idx)) { + this.nodeIndices.push(idx); } - - event.stopPropagation(); } }; + /** - * Handle selecting/deselecting an item when tapping it - * @param {Event} event - * @private + * 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. */ - 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; + Network.prototype.setData = function(data, disableStart) { + if (disableStart === undefined) { + disableStart = false; } - 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() - }); + 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.'); } - event.stopPropagation(); - }; - - /** - * Handle creation and updates of an item on double tap - * @param event - * @private - */ - ItemSet.prototype._onAddItem = function (event) { - if (!this.options.selectable) return; - if (!this.options.editable.add) return; - - var me = this, - snap = this.body.util.snap || null, - item = ItemSet.itemFromTarget(event); - - if (item) { - // update item + // set options + this.setOptions(data && data.options); - // 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); - } - }); + // 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 { - // 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' - }; + this._setNodes(data && data.nodes); + this._setEdges(data && data.edges); + } - // when default type is a range, add a default end date to the new item - if (this.options.type === 'range') { - var end = this.body.util.toTime(x + this.props.width / 5); - newItem.end = snap ? snap(end) : end; + this._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) } - - newItem[this.itemsData.fieldId] = util.randomUUID(); - - var group = ItemSet.groupFromTarget(event); - if (group) { - newItem.group = group.groupId; + else { + this.start(); } - - // 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 selecting/deselecting multiple items when holding an item - * @param {Event} event - * @private + * Set options + * @param {Object} options */ - ItemSet.prototype._onMultiSelectItem = function (event) { - if (!this.options.selectable) return; + Network.prototype.setOptions = function (options) { + if (options) { + var prop; - var selection, - item = ItemSet.itemFromTarget(event); + var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', + 'onAdd','onEdit','onEditEdge','onConnect','onDelete','clickToUse' + ]; + util.selectiveNotDeepExtend(fields,this.constants, options); + util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); + util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); - 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 (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]; + } + } + } } - else { - // item is already selected -> deselect it - selection.splice(index, 1); + + 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;} + + 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'); + + + if (options.dataManipulation) { + this.editMode = this.constants.dataManipulation.initiallyVisible; } - this.setSelection(selection); - this.body.emitter.emit('select', { - items: this.getSelection() - }); - event.stopPropagation(); - } - }; + // 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;} + } + } - /** - * Find an item from an event target: - * searches for the attribute 'timeline-item' in the event target's element tree - * @param {Event} event - * @return {Item | null} item - */ - ItemSet.itemFromTarget = function(event) { - var target = event.target; - while (target) { - if (target.hasOwnProperty('timeline-item')) { - return target['timeline-item']; + 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;} + } + } } - target = target.parentNode; - } - return null; - }; + 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); + } + } + } - /** - * 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 (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); + } } - target = target.parentNode; - } - return null; - }; + if ('clickToUse' in options) { + if (options.clickToUse) { + this.activator = new Activator(this.frame); + this.activator.on('change', this._createKeyBinds.bind(this)); + } + else { + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + } + } - /** - * 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']; + if (options.labels) { + throw new Error('Option "labels" is deprecated. Use options "locale" and "locales" instead.'); } - target = target.parentNode; } - return null; - }; - - module.exports = ItemSet; + // (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(); -/***/ }, -/* 30 */ -/***/ function(module, exports, __webpack_require__) { + // bind keys. If disabled, this will not do anything; + this._createKeyBinds(); + this.setSize(this.constants.width, this.constants.height); + this.moving = true; + this.start(); - var util = __webpack_require__(1); - var stack = __webpack_require__(31); - var ItemRange = __webpack_require__(32); + }; /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * 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 */ - function Group (groupId, data, itemSet) { - this.groupId = groupId; + Network.prototype._create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } - this.itemSet = itemSet; + this.frame = document.createElement('div'); + this.frame.className = 'vis network-frame'; + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; - this.dom = {}; - this.props = { - label: { - width: 0, - height: 0 - } - }; - this.className = 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); + } - 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: [] - }; + 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) ); - this._create(); + // add the frame to the container element + this.containerElement.appendChild(this.frame); + + }; - this.setData(data); - } /** - * Create DOM elements for the group + * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin * @private */ - Group.prototype._create = function() { - var label = document.createElement('div'); - label.className = 'vlabel'; - this.dom.label = label; + Network.prototype._createKeyBinds = function() { + var me = this; + this.mousetrap = mousetrap; - var inner = document.createElement('div'); - inner.className = 'inner'; - label.appendChild(inner); - this.dom.inner = inner; - - var foreground = document.createElement('div'); - foreground.className = 'group'; - foreground['timeline-group'] = this; - this.dom.foreground = foreground; - - this.dom.background = document.createElement('div'); - this.dom.background.className = 'group'; + this.mousetrap.reset(); - this.dom.axis = document.createElement('div'); - this.dom.axis.className = 'group'; + if (this.constants.keyboard.enabled && this.isActive()) { + 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"); + } - // 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); + if (this.constants.dataManipulation.enabled == true) { + this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); + this.mousetrap.bind("del",this._deleteSelected.bind(me)); + } }; /** - * Set the group data for this group - * @param {Object} data Group data, can contain properties content and className + * Get the pointer location from a touch location + * @param {{pageX: Number, pageY: Number}} touch + * @return {{x: Number, y: Number}} pointer + * @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 - } - - // update title - this.dom.label.title = data && data.title || ''; + Network.prototype._getPointer = function (touch) { + return { + x: touch.pageX - util.getAbsoluteLeft(this.frame.canvas), + y: touch.pageY - util.getAbsoluteTop(this.frame.canvas) + }; + }; - if (!this.dom.inner.firstChild) { - util.addClassName(this.dom.inner, 'hidden'); - } - else { - util.removeClassName(this.dom.inner, 'hidden'); - } + /** + * 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(); - // 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); - } + this._handleTouch(this.drag.pointer); }; /** - * Get the width of the group label - * @return {number} width + * handle drag start event + * @private */ - Group.prototype.getLabelWidth = function() { - return this.props.label.width; + Network.prototype._onDragStart = function () { + this._handleDragStart(); }; /** - * 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 + * This function is called by _onDragStart. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @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; - - util.forEach(this.items, function (item) { - item.dirty = true; - if (item.displayed) item.redraw(); - }); - - restack = true; - } + 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 - // 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); - } + drag.dragging = true; + drag.selection = []; + drag.translation = this._getTranslation(); + drag.nodeId = null; - // 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 (node != null) { + drag.nodeId = node.id; + // select the clicked node if not yet selected + if (!node.isSelected()) { + this._selectObject(node,false); } - height = max + margin.item.vertical / 2; - } - else { - height = margin.axis + margin.item.vertical; - } - height = Math.max(height, this.props.label.height); - // calculate actual size and position - var foreground = this.dom.foreground; - this.top = foreground.offsetTop; - this.left = foreground.offsetLeft; - this.width = foreground.offsetWidth; - resized = util.updateProperty(this, 'height', height) || resized; + // 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, - // 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; + // store original x, y, xFixed and yFixed, make the node temporarily Fixed + x: object.x, + y: object.y, + xFixed: object.xFixed, + yFixed: object.yFixed + }; - // apply new height - this.dom.background.style.height = height + 'px'; - this.dom.foreground.style.height = height + 'px'; - this.dom.label.style.height = height + 'px'; + object.xFixed = true; + object.yFixed = true; - // 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(); + drag.selection.push(s); + } + } } - - return resized; }; + /** - * Show this group: attach to the DOM + * handle drag event + * @private */ - Group.prototype.show = function() { - if (!this.dom.label.parentNode) { - this.itemSet.dom.labelSet.appendChild(this.dom.label); - } - - if (!this.dom.foreground.parentNode) { - this.itemSet.dom.foreground.appendChild(this.dom.foreground); - } - - if (!this.dom.background.parentNode) { - this.itemSet.dom.background.appendChild(this.dom.background); - } - - if (!this.dom.axis.parentNode) { - this.itemSet.dom.axis.appendChild(this.dom.axis); - } + Network.prototype._onDrag = function (event) { + this._handleOnDrag(event) }; + /** - * Hide this group: remove from the DOM + * This function is called by _onDrag. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private */ - Group.prototype.hide = function() { - var label = this.dom.label; - if (label.parentNode) { - label.parentNode.removeChild(label); + Network.prototype._handleOnDrag = function(event) { + if (this.drag.pinched) { + return; } - var foreground = this.dom.foreground; - if (foreground.parentNode) { - foreground.parentNode.removeChild(foreground); - } + var pointer = this._getPointer(event.gesture.center); - var background = this.dom.background; - if (background.parentNode) { - background.parentNode.removeChild(background); + 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; + + if (!s.xFixed) { + node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); + } + + if (!s.yFixed) { + node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); + } + }); + + + // 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; - var axis = this.dom.axis; - if (axis.parentNode) { - axis.parentNode.removeChild(axis); + this._setTranslation( + this.drag.translation.x + diffX, + this.drag.translation.y + diffY + ); + this._redraw(); + // this.moving = true; + // this.start(); + } } }; /** - * Add an item to the group - * @param {Item} item + * handle drag start event + * @private */ - 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); + 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(); + } + }; /** - * Remove an item from the group - * @param {Item} item + * handle tap/click event: select/unselect a node + * @private */ - Group.prototype.remove = function(item) { - delete this.items[item.id]; - item.setParent(this.itemSet); - - // remove from visible items - var index = this.visibleItems.indexOf(item); - if (index != -1) this.visibleItems.splice(index, 1); + Network.prototype._onTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleTap(pointer); - // TODO: also remove from ordered items? }; + /** - * Remove an item from the corresponding DataSet - * @param {Item} item + * handle doubletap event + * @private */ - Group.prototype.removeFromDataSet = function(item) { - this.itemSet.removeItem(item.id); + Network.prototype._onDoubleTap = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleDoubleTap(pointer); }; + /** - * Reorder the items + * handle long tap event: multi select nodes + * @private */ - Group.prototype.order = function() { - var array = util.toArray(this.items); - this.orderedItems.byStart = array; - this.orderedItems.byEnd = this._constructByEndArray(array); + Network.prototype._onHold = function (event) { + var pointer = this._getPointer(event.gesture.center); + this.pointerPosition = pointer; + this._handleOnHold(pointer); + }; - stack.orderByStart(this.orderedItems.byStart); - stack.orderByEnd(this.orderedItems.byEnd); + /** + * handle the release of the screen + * + * @private + */ + Network.prototype._onRelease = function (event) { + var pointer = this._getPointer(event.gesture.center); + this._handleOnRelease(pointer); }; /** - * Create an array containing all items being a range (having an end date) - * @param {Item[]} array - * @returns {ItemRange[]} + * Handle pinch event + * @param event * @private */ - Group.prototype._constructByEndArray = function(array) { - var endArray = []; + Network.prototype._onPinch = function (event) { + var pointer = this._getPointer(event.gesture.center); - for (var i = 0; i < array.length; i++) { - if (array[i] instanceof ItemRange) { - endArray.push(array[i]); - } + this.drag.pinched = true; + if (!('scale' in this.pinch)) { + this.pinch.scale = 1; } - return endArray; + + // TODO: enabled moving while pinching? + var scale = this.pinch.scale * event.gesture.scale; + this._zoom(scale, pointer) }; /** - * 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. + * 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 */ - Group.prototype._updateVisibleItems = function(orderedItems, visibleItems, range) { - var initialPosByStart, - newVisibleItems = [], - i; + 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; + } - // 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); + var preScaleDragPointer = null; + if (this.drag !== undefined) { + if (this.drag.dragging == true) { + preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); + } } - } + // + this.frame.canvas.clientHeight / 2 + var translation = this._getTranslation(); - // 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]); - } + var scaleFrac = scale / scaleOld; + var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; + var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; - // use visible search to find a visible ItemRange (only based on endTime) - var initialPosByEnd = util.binarySearch(orderedItems.byEnd, range, 'data','end'); + this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), + "y" : this._YconvertDOMtoCanvas(pointer.y)}; - // 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;} + this._setScale(scale); + this._setTranslation(tx, ty); + this.updateClustersDefault(); + + if (preScaleDragPointer != null) { + var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); + this.drag.pointer.x = postScaleDragPointer.x; + this.drag.pointer.y = postScaleDragPointer.y; } - } - // 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;} + this._redraw(); + + if (scaleOld < scale) { + this.emit("zoom", {direction:"+"}); } - for (i = initialPosByEnd + 1; i < orderedItems.byEnd.length; i++) { - if (this._checkIfInvisible(orderedItems.byEnd[i], newVisibleItems, range)) {break;} + else { + this.emit("zoom", {direction:"-"}); } - } - return newVisibleItems; + return scale; + } }; - /** - * 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} + * 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._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; + 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; } + + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + + // calculate the new scale + var scale = this._getScale(); + var zoom = delta / 10; + if (delta < 0) { + zoom = zoom / (1 - zoom); + } + scale *= (1 + zoom); + + // calculate the pointer location + var gesture = hammerUtil.fakeGesture(this, event); + var pointer = this._getPointer(gesture.center); + + // apply the new scale + this._zoom(scale, pointer); + } + + // Prevent default actions caused by mouse wheel. + event.preventDefault(); }; + /** - * 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 + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event * @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(); + 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); } - }; - module.exports = Group; + // 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); + } -/***/ }, -/* 31 */ -/***/ function(module, exports, __webpack_require__) { + /** + * 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]; + } + } - // Utility functions for ordering and stacking of items - var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + // adding hover highlights + var obj = this._getNodeAt(pointer); + if (obj == null) { + obj = this._getEdgeAt(pointer); + } + if (obj != null) { + this._hoverObject(obj); + } - /** - * 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; - }); + // 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(); + } }; /** - * Order items by their end date. If they have no end date, their start date - * is used. - * @param {Item[]} items + * 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 */ - 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; - }); - }; + 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) + }; - /** - * 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 - */ - exports.stack = function(items, margin, force) { - var i, iMax; + var id; + var lastPopupNode = this.popupObj; - if (force) { - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = null; + 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; + } + } } } - // 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; + 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; } - } while (collidingItem); + } } } - }; - /** - * Adjust vertical positions of the items without stacking them - * @param {Item[]} items - * All visible items - * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin - * Margins between items and between items and the axis. - */ - exports.nostack = function(items, margin) { - var i, iMax; + 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); + } - // reset top position of all items - for (i = 0, iMax = items.length; i < iMax; i++) { - items[i].top = margin.axis; + // 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(); + } } }; + /** - * 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 + * 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 */ - 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._checkHidePopup = function (pointer) { + if (!this.popupObj || !this._getNodeAt(pointer) ) { + this.popupObj = undefined; + if (this.popup) { + this.popup.hide(); + } + } }; -/***/ }, -/* 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 + * 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%') */ - function ItemRange (data, conversion, options) { - this.props = { - content: { - width: 0 - } - }; - this.overflow = false; // if contents can overflow (css styling), this flag is set to true - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data.id); - } - if (data.end == undefined) { - throw new Error('Property "end" missing in item ' + data.id); - } - } - - Item.call(this, data, conversion, options); - } + Network.prototype.setSize = function(width, height) { + this.frame.style.width = width; + this.frame.style.height = height; - ItemRange.prototype = new Item (null, null, null); + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; - ItemRange.prototype.baseClassName = 'item range'; + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; - /** - * 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); + this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); }; /** - * Repaint the item + * Set a data set with nodes for the network + * @param {Array | DataSet | DataView} nodes The data containing the nodes. + * @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; - } + Network.prototype._setNodes = function(nodes) { + var oldNodesData = this.nodesData; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.nodesData = nodes; } - 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 (nodes instanceof Array) { + this.nodesData = new DataSet(); + this.nodesData.add(nodes); } - 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; + else if (!nodes) { + this.nodesData = new DataSet(); } - - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; + else { + throw new TypeError('Array or DataSet expected'); } - // 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 (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); } - // recalculate size - if (this.dirty) { - // determine from css whether this box has overflow - this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; + // remove drawn nodes + this.nodes = {}; - this.props.content.width = this.dom.content.offsetWidth; - this.height = this.dom.box.offsetHeight; + if (this.nodesData) { + // subscribe to new dataset + var me = this; + util.forEach(this.nodesListeners, function (callback, event) { + me.nodesData.on(event, callback); + }); - this.dirty = false; + // draw all new nodes + var ids = this.nodesData.getIds(); + this._addNodes(ids); } - - this._repaintDeleteButton(dom.box); - this._repaintDragLeft(); - this._repaintDragRight(); + this._updateSelection(); }; /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * Add nodes + * @param {Number[] | String[]} ids + * @private */ - ItemRange.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + 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(); }; /** - * Hide the item from the DOM (when visible) - * @return {Boolean} changed + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - ItemRange.prototype.hide = function() { - if (this.displayed) { - var box = this.dom.box; - - if (box.parentNode) { - box.parentNode.removeChild(box); + 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.top = null; - this.left = null; - - this.displayed = false; } + this.moving = true; + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this._updateNodeIndexList(); + this._reconnectEdges(); + this._updateValueRange(nodes); }; /** - * Reposition the item horizontally - * @Override + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids + * @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; + 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]; } - if (end > 2 * parentWidth) { - end = 2 * parentWidth; + this._updateNodeIndexList(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } - 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'; + this._updateCalculationNodes(); + this._reconnectEdges(); + this._updateSelection(); + this._updateValueRange(nodes); }; /** - * Reposition the item vertically - * @Override + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private + * @private */ - ItemRange.prototype.repositionY = function() { - var orientation = this.options.orientation, - box = this.dom.box; + Network.prototype._setEdges = function(edges) { + var oldEdgesData = this.edgesData; - if (orientation == 'top') { - box.style.top = this.top + 'px'; + if (edges instanceof DataSet || edges instanceof DataView) { + this.edgesData = edges; } - else { - box.style.top = (this.parent.height - this.top - this.height) + 'px'; + else if (edges instanceof Array) { + this.edgesData = new DataSet(); + this.edgesData.add(edges); } - }; - - /** - * Repaint a drag area on the left side of the range when the range is selected - * @protected - */ - ItemRange.prototype._repaintDragLeft = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { - // create and show drag area - var dragLeft = document.createElement('div'); - dragLeft.className = 'drag-left'; - dragLeft.dragLeftItem = this; - - // 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 (!edges) { + this.edgesData = new DataSet(); } - 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; + else { + throw new TypeError('Array or DataSet expected'); } - }; - - /** - * Repaint a drag area on the right side of the range when the range is selected - * @protected - */ - ItemRange.prototype._repaintDragRight = function () { - if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { - // create and show drag area - var dragRight = document.createElement('div'); - dragRight.className = 'drag-right'; - dragRight.dragRightItem = this; - // TODO: this should be redundant? - Hammer(dragRight, { - preventDefault: true - }).on('drag', function () { - //console.log('drag right') + if (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); }); - - 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; } - }; - module.exports = ItemRange; + // 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); + }); -/***/ }, -/* 33 */ -/***/ function(module, exports, __webpack_require__) { + // draw all new nodes + var ids = this.edgesData.getIds(); + this._addEdges(ids); + } - var Hammer = __webpack_require__(18); + this._reconnectEdges(); + }; /** - * @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 + * Add edges + * @param {Number[] | String[]} ids + * @private */ - function Item (data, conversion, options) { - this.id = null; - this.parent = null; - this.data = data; - this.dom = null; - this.conversion = conversion || {}; - this.options = options || {}; + Network.prototype._addEdges = function (ids) { + var edges = this.edges, + edgesData = this.edgesData; - this.selected = false; - this.displayed = false; - this.dirty = true; + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; - this.top = null; - this.left = null; - this.width = null; - this.height = null; - } + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); + } - /** - * Select current item - */ - Item.prototype.select = function() { - this.selected = true; - if (this.displayed) this.redraw(); + 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(); + } + this._updateCalculationNodes(); }; /** - * Unselect current item + * Update existing edges, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private */ - Item.prototype.unselect = function() { - this.selected = false; - if (this.displayed) this.redraw(); + 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; + } + } + + this._createBezierNodes(); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); + } + this.moving = true; + this._updateValueRange(edges); }; /** - * Set a parent for the item - * @param {ItemSet | Group} parent + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids + * @private */ - Item.prototype.setParent = function(parent) { - if (this.displayed) { - this.hide(); - this.parent = parent; - if (this.parent) { - this.show(); + 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]; } } - else { - this.parent = parent; + + this.moving = true; + this._updateValueRange(edges); + if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { + this._resetLevels(); + this._setupHierarchicalLayout(); } + this._updateCalculationNodes(); }; /** - * 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 + * Reconnect all edges + * @private */ - Item.prototype.isVisible = function(range) { - // Should be implemented by Item implementations - return false; - }; + Network.prototype._reconnectEdges = function() { + var id, + nodes = this.nodes, + edges = this.edges; + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; + } + } - /** - * Show the Item in the DOM (when not already visible) - * @return {Boolean} changed - */ - Item.prototype.show = function() { - return false; + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); + } + } }; /** - * Hide the Item from the DOM (when visible) - * @return {Boolean} changed + * 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 */ - Item.prototype.hide = function() { - return false; - }; + Network.prototype._updateValueRange = function(obj) { + var id; - /** - * Repaint the item - */ - Item.prototype.redraw = function() { - // should be implemented by the item - }; + // 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); + } + } + } - /** - * Reposition the Item horizontally - */ - Item.prototype.repositionX = function() { - // should be implemented by the item + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax); + } + } + } }; /** - * Reposition the Item vertically + * Redraw the network with the current data + * chart will be resized too. */ - Item.prototype.repositionY = function() { - // should be implemented by the item + Network.prototype.redraw = function() { + this.setSize(this.constants.width, this.constants.height); + this._redraw(); }; /** - * Repaint a delete button on the top right of the item when the item is selected - * @param {HTMLElement} anchor - * @protected + * Redraw the network with the current data + * @private */ - Item.prototype._repaintDeleteButton = function (anchor) { - if (this.selected && this.options.editable.remove && !this.dom.deleteButton) { - // create and show button - var me = this; + 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); - var deleteButton = document.createElement('div'); - deleteButton.className = 'delete'; - deleteButton.title = 'Delete this item'; + // set scaling and translation + ctx.save(); + ctx.translate(this.translation.x, this.translation.y); + ctx.scale(this.scale, this.scale); - Hammer(deleteButton, { - preventDefault: true - }).on('tap', function (event) { - me.parent.removeFromDataSet(me); - event.stopPropagation(); - }); + 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) + }; - anchor.appendChild(deleteButton); - this.dom.deleteButton = deleteButton; - } - else if (!this.selected && this.dom.deleteButton) { - // remove button - if (this.dom.deleteButton.parentNode) { - this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton); - } - this.dom.deleteButton = null; + + this._doInAllSectors("_drawAllSectorNodes",ctx); + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { + this._doInAllSectors("_drawEdges",ctx); } - }; - module.exports = Item; + if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { + this._doInAllSectors("_drawNodes",ctx,false); + } + if (this.controlNodesActive == true) { + this._doInAllSectors("_drawControlNodes",ctx); + } -/***/ }, -/* 34 */ -/***/ function(module, exports, __webpack_require__) { + // this._doInSupportSector("_drawNodes",ctx,true); + // this._drawTree(ctx,"#F00F0F"); - var Item = __webpack_require__(33); + // restore original scaling and translation + ctx.restore(); + }; /** - * @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 + * Set the translation of the network + * @param {Number} offsetX Horizontal offset + * @param {Number} offsetY Vertical offset + * @private */ - function ItemBox (data, conversion, options) { - this.props = { - dot: { - width: 0, - height: 0 - }, - line: { - width: 0, - height: 0 - } - }; - - // validate data - if (data) { - if (data.start == undefined) { - throw new Error('Property "start" missing in item ' + data); - } + Network.prototype._setTranslation = function(offsetX, offsetY) { + if (this.translation === undefined) { + this.translation = { + x: 0, + y: 0 + }; } - Item.call(this, data, conversion, options); - } + if (offsetX !== undefined) { + this.translation.x = offsetX; + } + if (offsetY !== undefined) { + this.translation.y = offsetY; + } - ItemBox.prototype = new Item (null, null, null); + this.emit('viewChanged'); + }; /** - * 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 + * Get the translation of the network + * @return {Object} translation An object with parameters x and y, both a number + * @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._getTranslation = function() { + return { + x: this.translation.x, + y: this.translation.y + }; }; /** - * Repaint the item + * Scale the network + * @param {Number} scale Scaling factor 1.0 is unscaled + * @private */ - ItemBox.prototype.redraw = function() { - var dom = this.dom; - if (!dom) { - // create DOM - this.dom = {}; - dom = this.dom; + Network.prototype._setScale = function(scale) { + this.scale = scale; + }; - // create main box - dom.box = document.createElement('DIV'); + /** + * Get the current scale of the network + * @return {Number} scale Scaling factor 1.0 is unscaled + * @private + */ + Network.prototype._getScale = function() { + return this.scale; + }; - // contents box (inside the background box). used for making margins - dom.content = document.createElement('DIV'); - dom.content.className = 'content'; - dom.box.appendChild(dom.content); + /** + * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} x + * @returns {number} + * @private + */ + Network.prototype._XconvertDOMtoCanvas = function(x) { + return (x - this.translation.x) / this.scale; + }; - // line to axis - dom.line = document.createElement('DIV'); - dom.line.className = 'line'; + /** + * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the X coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} x + * @returns {number} + * @private + */ + Network.prototype._XconvertCanvasToDOM = function(x) { + return x * this.scale + this.translation.x; + }; - // dot on axis - dom.dot = document.createElement('DIV'); - dom.dot.className = 'dot'; + /** + * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} y + * @returns {number} + * @private + */ + Network.prototype._YconvertDOMtoCanvas = function(y) { + return (y - this.translation.y) / this.scale; + }; - // attach this item as attribute - dom.box['timeline-item'] = this; - } + /** + * 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 ; + }; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); - } - if (!dom.box.parentNode) { - var foreground = this.parent.dom.foreground; - if (!foreground) throw new Error('Cannot redraw time axis: parent has no foreground container element'); - foreground.appendChild(dom.box); - } - if (!dom.line.parentNode) { - var background = this.parent.dom.background; - if (!background) throw new Error('Cannot redraw time axis: parent has no background container element'); - background.appendChild(dom.line); - } - if (!dom.dot.parentNode) { - var axis = this.parent.dom.axis; - if (!background) throw new Error('Cannot redraw time axis: parent has no axis container element'); - axis.appendChild(dom.dot); - } - this.displayed = true; - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; - } - else { - throw new Error('Property "content" missing in item ' + this.data.id); - } + /** + * + * @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.dirty = true; - } + /** + * + * @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)}; + } - // update title - if (this.data.title != this.title) { - dom.box.title = this.data.title; - this.title = this.data.title; + /** + * 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; } - // 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; + // first draw the unselected nodes + var nodes = this.nodes; + var selected = []; - this.dirty = true; + 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); + } + } + } } - // 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; + // 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); + } } - - this._repaintDeleteButton(dom.box); }; /** - * Show the item in the DOM (when not already displayed). The items DOM will - * be created when needed. + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private */ - ItemBox.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + 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); + } + } } }; /** - * Hide the item from the DOM (when visible) + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private */ - ItemBox.prototype.hide = function() { - if (this.displayed) { - var dom = this.dom; - - if (dom.box.parentNode) dom.box.parentNode.removeChild(dom.box); - if (dom.line.parentNode) dom.line.parentNode.removeChild(dom.line); - if (dom.dot.parentNode) dom.dot.parentNode.removeChild(dom.dot); - - this.top = null; - this.left = null; - - this.displayed = false; + Network.prototype._drawControlNodes = function(ctx) { + var edges = this.edges; + for (var id in edges) { + if (edges.hasOwnProperty(id)) { + edges[id]._drawControlNodes(ctx); + } } }; /** - * Reposition the item horizontally - * @Override + * Find a stable position for all nodes + * @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._stabilize = function() { + if (this.constants.freezeForStabilization == true) { + this._freezeDefinedNodes(); } - else if (align == 'left') { - this.left = start; + + // find stable position + var count = 0; + while (this.moving && count < this.constants.stabilizationIterations) { + this._physicsTick(); + count++; } - else { - // default or 'center' - this.left = start - this.width / 2; + this.zoomExtent(false,true); + if (this.constants.freezeForStabilization == true) { + this._restoreFrozenNodes(); } - - // 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.emit("stabilized",{iterations:count}); }; /** - * Reposition the item vertically - * @Override + * 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 */ - 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._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; + } + } } - - 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 + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @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._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; + } } } + }; - 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 + * 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 */ - 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._isMoving = function(vmin) { + var nodes = this.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { + return true; + } + } + return false; }; + /** - * Repaint the item + * /** + * Perform one discrete step for all nodes + * + * @private */ - 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() - - // contents box, right from the dot - dom.content = document.createElement('div'); - dom.content.className = 'content'; - dom.point.appendChild(dom.content); - - // dot at start - dom.dot = document.createElement('div'); - dom.point.appendChild(dom.dot); - - // attach this item as attribute - dom.point['timeline-item'] = this; - } + Network.prototype._discreteStepNodes = function(checkMovement) { + var interval = this.physicsDiscreteStepsize; + var nodes = this.nodes; + var nodeId; + var nodesPresent = false; - // append DOM to parent DOM - if (!this.parent) { - throw new Error('Cannot redraw item: no parent attached'); + if (this.constants.maxVelocity > 0) { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStepLimited(interval, this.constants.maxVelocity); + nodesPresent = true; + } + } } - 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'); + else { + for (nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + nodes[nodeId].discreteStep(interval); + nodesPresent = true; + } } - foreground.appendChild(dom.point); } - this.displayed = true; - // update contents - if (this.data.content != this.content) { - this.content = this.data.content; - if (this.content instanceof Element) { - dom.content.innerHTML = ''; - dom.content.appendChild(this.content); - } - else if (this.data.content != undefined) { - dom.content.innerHTML = this.content; + 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 { - throw new Error('Property "content" missing in item ' + this.data.id); - } - - this.dirty = true; - } - - // update title - if (this.data.title != this.title) { - dom.point.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.point.className = 'item point' + className; - dom.dot.className = 'item dot' + className; - - this.dirty = true; - } - - // 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.moving = this._isMoving(vminCorrected); + if (this.moving == false) { + this.emit("stabilized",{iterations:null}); + } + this.moving = this.moving || this.configurePhysics; - this.dirty = false; + } } - - this._repaintDeleteButton(dom.point); }; /** - * Show the item in the DOM (when not already visible). The items DOM will - * be created when needed. + * A single simulation step (or "tick") in the physics simulation + * + * @private */ - ItemPoint.prototype.show = function() { - if (!this.displayed) { - this.redraw(); + 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()) + } } }; + /** - * Hide the item from the DOM (when visible) + * 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 */ - ItemPoint.prototype.hide = function() { - if (this.displayed) { - if (this.dom.point.parentNode) { - this.dom.point.parentNode.removeChild(this.dom.point); - } + Network.prototype._animationStep = function() { + // reset the timer so a new scheduled animation step can be set + this.timer = undefined; + // handle the keyboad movement + this._handleNavigation(); - this.top = null; - this.left = null; + // this schedules a new animation step + this.start(); - this.displayed = false; + // 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++; } - }; - - /** - * Reposition the item horizontally - * @Override - */ - ItemPoint.prototype.repositionX = function() { - var start = this.conversion.toScreen(this.data.start); - - this.left = start - this.props.dot.width; + // start the rendering process + var renderTime = Date.now(); + this._redraw(); + this.renderTime = Date.now() - renderTime; - // reposition point - this.dom.point.style.left = this.left + 'px'; }; + if (typeof window !== 'undefined') { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || + window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } + /** - * Reposition the item vertically - * @Override + * Schedule a animation step with the refreshrate interval. */ - ItemPoint.prototype.repositionY = function() { - var orientation = this.options.orientation, - point = this.dom.point; + 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(); - if (orientation == 'top') { - point.style.top = this.top + 'px'; + 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; + } + } + + 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 { - point.style.top = (this.parent.height - this.top - this.height) + 'px'; + this._redraw(); } }; - module.exports = ItemPoint; - - -/***/ }, -/* 36 */ -/***/ function(module, exports, __webpack_require__) { - - var mousetrap = __webpack_require__(37); - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var util = __webpack_require__(1); /** - * Turn an element into an activatable element. - * When not active, the element has a transparent overlay. When the overlay is - * clicked, the mode is changed to active. - * When active, the element is displayed with a blue border around it, and - * the interactive contents of the element can be used. When clicked outside - * the element, the elements mode is changed to inactive. - * @param {Element} container - * @constructor + * Move the network according to the keyboard presses. + * + * @private */ - function Activator(container) { - this.active = false; - - this.dom = { - container: container - }; - - this.dom.overlay = document.createElement('div'); - this.dom.overlay.className = 'overlay'; - - this.dom.container.appendChild(this.dom.overlay); - - this.hammer = Hammer(this.dom.overlay, {prevent_default: false}); - this.hammer.on('tap', this._onTapOverlay.bind(this)); - - // block all touch events (except tap) - var me = this; - var events = [ - 'touch', 'pinch', - 'doubletap', 'hold', - 'dragstart', 'drag', 'dragend', - 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox - ]; - events.forEach(function (event) { - me.hammer.on(event, function (event) { - event.stopPropagation(); - }); - }); - - // attach a tap event to the window, in order to deactivate when clicking outside the timeline - this.windowHammer = Hammer(window, {prevent_default: false}); - this.windowHammer.on('tap', function (event) { - // deactivate when clicked outside the container - if (!_hasParent(event.target, container)) { - me.deactivate(); - } - }); - - // mousetrap listener only bounded when active) - this.escListener = this.deactivate.bind(this); - } - - // turn into an event emitter - Emitter(Activator.prototype); + 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); + } + }; - // The currently active activator - Activator.current = null; /** - * Destroy the activator. Cleans up all created DOM and event listeners + * Freeze the _animationStep */ - Activator.prototype.destroy = function () { - this.deactivate(); - - // remove dom - this.dom.overlay.parentNode.removeChild(this.dom.overlay); - - // cleanup hammer instances - this.hammer = null; - this.windowHammer = null; + Network.prototype.toggleFreeze = function() { + if (this.freezeSimulation == false) { + this.freezeSimulation = true; + } + else { + this.freezeSimulation = false; + this.start(); + } }; + /** - * Activate the element - * Overlay is hidden, element is decorated with a blue shadow border + * This function cleans the support nodes if they are not needed and adds them when they are. + * + * @param {boolean} [disableStart] + * @private */ - Activator.prototype.activate = function () { - // we allow only one active activator at a time - if (Activator.current) { - Activator.current.deactivate(); + 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; + } + } } - Activator.current = this; - - this.active = true; - this.dom.overlay.style.display = 'none'; - util.addClassName(this.dom.container, 'vis-active'); - this.emit('change'); - this.emit('activate'); - // ugly hack: bind ESC after emitting the events, as the Network rebinds all - // keyboard events on a 'change' event - mousetrap.bind('esc', this.escListener); + this._updateCalculationNodes(); + if (!disableStart) { + this.moving = true; + this.start(); + } }; + /** - * Deactivate the element - * Overlay is displayed on top of the element + * 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 */ - Activator.prototype.deactivate = function () { - this.active = false; - this.dom.overlay.style.display = ''; - util.removeClassName(this.dom.container, 'vis-active'); - mousetrap.unbind('esc', this.escListener); - - this.emit('change'); - this.emit('deactivate'); + 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(); + } + } + } + } }; /** - * Handle a tap event: activate the container - * @param event + * load the functions that load the mixins into the prototype. + * * @private */ - Activator.prototype._onTapOverlay = function (event) { - // activate the container - this.activate(); - event.stopPropagation(); + Network.prototype._initializeMixinLoaders = function () { + for (var mixin in MixinLoader) { + if (MixinLoader.hasOwnProperty(mixin)) { + Network.prototype[mixin] = MixinLoader[mixin]; + } + } }; /** - * Test whether the element has the requested parent element somewhere in - * its chain of parent nodes. - * @param {HTMLElement} element - * @param {HTMLElement} parent - * @returns {boolean} Returns true when the parent is found somewhere in the - * chain of parent nodes. - * @private + * Load the XY positions of the nodes into the dataset. */ - function _hasParent(element, parent) { - while (element) { - if (element === parent) { - return true + 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}); + } } - element = element.parentNode; } - return false; - } - - module.exports = Activator; - + this.nodesData.update(dataArray); + }; -/***/ }, -/* 37 */ -/***/ function(module, exports, __webpack_require__) { /** - * Copyright 2012 Craig Campbell + * Center a node in view. * - * 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 + * @param {Number} nodeId + * @param {Number} [zoomLevel] */ + Network.prototype.focusOnNode = function (nodeId, zoomLevel) { + if (this.nodes.hasOwnProperty(nodeId)) { + if (zoomLevel === undefined) { + zoomLevel = this._getScale(); + } + var nodePosition= {x: this.nodes[nodeId].x, y: this.nodes[nodeId].y}; - /** - * 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', - '_': '-', - '+': '=', - ':': ';', - '\"': '\'', - '<': ',', - '>': '.', - '?': '/', - '|': '\\' - }, - - /** - * 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' - }, + var requiredScale = zoomLevel; + this._setScale(requiredScale); - /** - * 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, + var canvasCenter = this.DOMtoCanvas({x:0.5 * this.frame.canvas.width,y:0.5 * this.frame.canvas.height}); + var translation = this._getTranslation(); - /** - * a list of all the callbacks setup via Mousetrap.bind() - * - * @type {Object} - */ - _callbacks = {}, + var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, + y:canvasCenter.y - nodePosition.y}; - /** - * direct map of string combinations to callbacks used for trigger() - * - * @type {Object} - */ - _direct_map = {}, + this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, + translation.y + requiredScale * distanceFromCenter.y); + this.redraw(); + } + else { + console.log("This nodeId cannot be found.") + } + }; - /** - * keeps track of what level each sequence is at since multiple - * sequences can start out with the same sequence - * - * @type {Object} - */ - _sequence_levels = {}, + /** + * Returns true when the Timeline is active. + * @returns {boolean} + */ + Network.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; - /** - * variable to store the setTimeout call - * - * @type {null|number} - */ - _reset_timer, + module.exports = Network; - /** - * temporary state where we will ignore the next keyup - * - * @type {boolean|string} - */ - _ignore_next_keyup = false, - /** - * are we currently inside of a sequence? - * type of action ("keyup" or "keydown" or "keypress") or false - * - * @type {boolean|string} - */ - _inside_sequence = false; +/***/ }, +/* 33 */ +/***/ function(module, exports, __webpack_require__) { - /** - * 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; - } + var util = __webpack_require__(1); + var Node = __webpack_require__(36); - /** - * loop through to map numbers on the numeric keypad - */ - for (i = 0; i <= 9; ++i) { - _MAP[i + 96] = i; + /** + * @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']; - /** - * 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); - } + this.network = network; - /** - * 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); - } + // 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; - // for non keypress events the special maps are needed - if (_MAP[e.which]) { - return _MAP[e.which]; - } + this.from = null; // a node + this.to = null; // a node + this.via = null; // a temp node - if (_KEYCODE_MAP[e.which]) { - return _KEYCODE_MAP[e.which]; - } + // 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 = []; - // if it is not in the special map - return String.fromCharCode(e.which).toLowerCase(); - } + this.connected = false; - /** - * 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.widthFixed = false; + this.lengthFixed = false; - // if the element has the class "mousetrap" then no need to stop - if ((' ' + element.className + ' ').indexOf(' mousetrap ') > -1) { - return false; - } + this.setProperties(properties); - // stop for input, select, and textarea - return tag_name == 'INPUT' || tag_name == 'SELECT' || tag_name == 'TEXTAREA' || (element.contentEditable && element.contentEditable == 'true'); - } + this.controlNodesEnabled = false; + this.controlNodes = {from:null, to:null, positions:{}}; + this.connectedNode = null; + } - /** - * 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(','); + /** + * 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; } - /** - * 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 fields = ['style','fontSize','fontFace','fontColor','fontFill','width', + 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - var active_sequences = false, - key; + if (properties.from !== undefined) {this.fromId = properties.from;} + if (properties.to !== undefined) {this.toId = properties.to;} - for (key in _sequence_levels) { - if (do_not_reset[key]) { - active_sequences = true; - continue; - } - _sequence_levels[key] = 0; - } + if (properties.id !== undefined) {this.id = properties.id;} + if (properties.label !== undefined) {this.label = properties.label;} - if (!active_sequences) { - _inside_sequence = false; - } - } + 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;} - /** - * 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 = []; + // scale the arrow + if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} - // if there are no events related to this keycode - if (!_callbacks[character]) { - return []; - } + if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} - // if a modifier key is coming up on its own we should allow it - if (action == 'keyup' && _isModifier(character)) { - modifiers = [character]; - } + 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;} + } + } - // 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]; + // A node is connected when it has a from and to node. + this.connect(); - // 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; - } + this.widthFixed = this.widthFixed || (properties.width !== undefined); + this.lengthFixed = this.lengthFixed || (properties.length !== undefined); - // if the action we are looking for doesn't match the action we got - // then we should keep going - if (action != callback.action) { - continue; - } + this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; - // 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)) { + // 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; + } + }; - // 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); - } + /** + * Connect an edge to its nodes + */ + Edge.prototype.connect = function () { + this.disconnect(); - matches.push(callback); - } - } + this.from = this.network.nodes[this.fromId] || null; + this.to = this.network.nodes[this.toId] || null; + this.connected = (this.from && this.to); - return matches; + 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); + } } + }; - /** - * takes a key event and figures out what the modifiers are - * - * @param {Event} e - * @returns {Array} - */ - function _eventModifiers(e) { - var modifiers = []; + /** + * 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; + } - if (e.shiftKey) { - modifiers.push('shift'); - } + this.connected = false; + }; - if (e.altKey) { - modifiers.push('alt'); - } + /** + * 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; + }; - if (e.ctrlKey) { - modifiers.push('ctrl'); - } - if (e.metaKey) { - modifiers.push('meta'); - } + /** + * Retrieve the value of the edge. Can be undefined + * @return {Number} value + */ + Edge.prototype.getValue = function() { + return this.value; + }; - return modifiers; + /** + * 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; } + }; - /** - * 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(); - } + /** + * 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"; + }; - if (e.stopPropagation) { - e.stopPropagation(); - } + /** + * 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; - e.returnValue = false; - e.cancelBubble = true; - } - } + var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); - /** - * handles a character key event - * - * @param {string} character - * @param {Event} e - * @returns void - */ - function _handleCharacter(character, e) { + return (dist < distMax); + } + else { + return false + } + }; - // if this event should not happen stop here - if (_stop(e)) { - 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 + }; + } - var callbacks = _getMatches(character, _eventModifiers(e), e.type), - i, - do_not_reset = {}, - processed_sequence_callback = false; + if (this.selected == true) {return colorObj.highlight;} + else if (this.hover == true) {return colorObj.hover;} + else {return colorObj.color;} + } - // 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; + /** + * 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(); - // keep a list of which sequences were matches for later - do_not_reset[callbacks[i].seq] = 1; - _fireCallback(callbacks[i].callback, e); - continue; - } + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - // if there were no sequence matches but we are still here - // that means this is a regular match so we should fire that - if (!processed_sequence_callback && !_inside_sequence) { - _fireCallback(callbacks[i].callback, e); - } + // draw label + var point; + if (this.label) { + if (this.options.smoothCurves.enabled == true && via != null) { + var midpointX = 0.5*(0.5*(this.from.x + via.x) + 0.5*(this.to.x + via.x)); + var midpointY = 0.5*(0.5*(this.from.y + via.y) + 0.5*(this.to.y + via.y)); + point = {x:midpointX, y:midpointY}; } - - // if 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); + else { + point = this._pointOnLine(0.5); } + this._label(ctx, this.label, point.x, point.y); + } } - - /** - * handles a keydown event - * - * @param {Event} e - * @returns void - */ - function _handleKey(e) { - - // 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; - - 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 { + 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); } + }; - /** - * 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'; + /** + * 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; } - - /** - * 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); + else { + if (this.hover == true) { + return Math.min(this.options.hoverWidth, this.options.widthMax)*this.networkScaleInv; + } + else { + return this.options.width*this.networkScaleInv; + } } + }; - /** - * reverses the map lookup so that we can look for specific keys - * to see what can and can't use keypress - * - * @return {Object} - */ - function _getReverseMap() { - if (!_REVERSE_MAP) { - _REVERSE_MAP = {}; - for (var key in _MAP) { - - // pull out the numeric keypad from here cause keypress should - // be able to detect the keys from the character - if (key > 95 && key < 112) { - continue; - } + Edge.prototype._getViaCoordinates = function () { + var xVia = null; + var yVia = null; + var factor = this.options.smoothCurves.roundness; + var type = this.options.smoothCurves.type; - if (_MAP.hasOwnProperty(key)) { - _REVERSE_MAP[_MAP[key]] = key; - } - } + 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; + } } - return _REVERSE_MAP; - } - - /** - * 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'; + 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; + } } - - // modifier keys don't work as expected with keypress, - // switch to keydown - if (action == 'keypress' && modifiers.length) { - action = 'keydown'; + if (type == "discrete") { + xVia = dx < factor * dy ? this.from.x : xVia; } - - return action; - } - - /** - * 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], []); + } + 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; + } } - - /** - * 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); + 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; } + } } - - /** - * 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); + 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; } - - // 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'); - } - - // if this key is a modifier then add it to the list of modifiers - if (_isModifier(key)) { - modifiers.push(key); - } + else { + yVia = this.to.y + (1-factor) * dy; } - - // depending on what the key combination is - // we will try to pick the best event for it - action = _pickBestAction(key, modifiers, action); - - // make sure to initialize array if this is the first time - // a callback is added for this key - if (!_callbacks[key]) { - _callbacks[key] = []; + } + 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; } - - // remove an existing match if there is one - _getMatches(key, modifiers, action, !sequence_name, combination); - - // 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 - }); - } - - /** - * 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); + else { + xVia = this.to.x + (1-factor) * dx; } + yVia = this.from.y; + } + } + else if (type == 'horizontal') { + if (this.from.x < this.to.x) { + xVia = this.to.x - (1-factor) * dx; + } + else { + xVia = this.to.x + (1-factor) * dx; + } + yVia = this.from.y; + } + else if (type == 'vertical') { + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1-factor) * dy; + } + else { + yVia = this.to.y + (1-factor) * dy; + } + } + else { // continuous + if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(1) + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(2) + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x > xVia ? this.to.x :xVia; + } + } + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(3) + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } + else if (this.from.x > this.to.x) { + // console.log(4, this.from.x, this.to.x) + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } + } + } + else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y > this.to.y) { + if (this.from.x < this.to.x) { + // console.log(5) + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(6) + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + } + else if (this.from.y < this.to.y) { + if (this.from.x < this.to.x) { + // console.log(7) + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + else if (this.from.x > this.to.x) { + // console.log(8) + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + } + } } - // start! - _addEvent(document, 'keypress', _handleKey); - _addEvent(document, 'keydown', _handleKey); - _addEvent(document, 'keyup', _handleKey); - - var mousetrap = { - - /** - * binds an event to mousetrap - * - * can be a single key, a combination of keys separated with +, - * a comma separated list of keys, an array of keys, or - * a sequence of keys separated by spaces - * - * be sure to list the modifier keys first to make sure that the - * correct key ends up getting bound (the last key in the pattern) - * - * @param {string|Array} keys - * @param {Function} callback - * @param {string=} action - 'keypress', 'keydown', or 'keyup' - * @returns void - */ - bind: function(keys, callback, action) { - _bindMultiple(keys instanceof Array ? keys : [keys], callback, action); - _direct_map[keys + ':' + action] = callback; - return this; - }, - - /** - * 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; - }, - /** - * 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 {x:xVia, y:yVia}; + } - /** - * 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; + /** + * 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; } - }; - - module.exports = mousetrap; + 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; + } + }; + /** + * 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(); + }; + /** + * 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; -/***/ }, -/* 38 */ -/***/ function(module, exports, __webpack_require__) { + ctx.fillRect(left, top, width, height); - 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__(39); + // draw text + ctx.fillStyle = this.options.fontColor || "black"; + ctx.textAlign = "left"; + ctx.textBaseline = "top"; + ctx.fillText(text, left, top); + } + }; /** - * 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 - * @extends Core + * 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 */ - function Graph2d (container, items, options, groups) { - var me = this; - this.defaultOptions = { - start: null, - end: null, + 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;} - autoResize: true, + ctx.lineWidth = this._getLineWidth(); - 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) + 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]; } - }; - - // 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); - } - // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! - if (groups) { - this.setGroups(groups); - } + // set dash settings for chrome or firefox + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; - // create itemset - if (items) { - this.setItems(items); - } - else { - this.redraw(); - } - } + } else { //Firefox + ctx.mozDash = pattern; + ctx.mozDashOffset = 0; + } - // Extend the functionality from Core - Graph2d.prototype = new Core(); + // draw the line + via = this._line(ctx); - /** - * Set items - * @param {vis.DataSet | Array | google.visualization.DataTable | null} items - */ - Graph2d.prototype.setItems = function(items) { - var initialLoad = (this.itemsData == null); + // restore the dash settings. + if (typeof ctx.setLineDash !== 'undefined') { //Chrome + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; - // convert to type DataSet when needed - var newDataSet; - if (!items) { - newDataSet = null; - } - else if (items instanceof DataSet || items instanceof DataView) { - newDataSet = items; + } else { //Firefox + ctx.mozDash = [0]; + ctx.mozDashOffset = 0; + } } - else { - // turn an array into a dataset - newDataSet = new DataSet(items, { - type: { - start: 'Date', - end: 'Date' - } - }); + 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(); } - // 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); + // 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); } }; /** - * Set groups - * @param {vis.DataSet | Array | google.visualization.DataTable} groups + * Get a point on a line + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @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; - } - else { - // turn an array into a dataset - newDataSet = new DataSet(groups); + 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 } - - 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 + * 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 */ - 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; + 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 checks if the visible option of the supplied group (by ID) is true or false. - * @param groupId - * @returns {*} + * 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 */ - Graph2d.prototype.isGroupVisible = function(groupId) { - if (this.linegraph.groups[groupId] !== undefined) { - return this.linegraph.groups[groupId].visible; - } - else { - return false; - } - } + Edge.prototype._drawArrowCenter = function(ctx) { + var point; + // set style + if (this.selected == true) {ctx.strokeStyle = this.options.color.highlight; ctx.fillStyle = this.options.color.highlight;} + else if (this.hover == true) {ctx.strokeStyle = this.options.color.hover; ctx.fillStyle = this.options.color.hover;} + else {ctx.strokeStyle = this.options.color.color; ctx.fillStyle = this.options.color.color;} + ctx.lineWidth = this._getLineWidth(); + if (this.from != this.to) { + // draw line + var via = this._line(ctx); - /** - * 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; + 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); + } - // 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; - } - } + 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 { + // 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 { - min: (min != null) ? new Date(min) : null, - max: (max != null) ? new Date(max) : null - }; - }; - - - - module.exports = Graph2d; - + // 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(); -/***/ }, -/* 39 */ -/***/ function(module, exports, __webpack_require__) { + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + } + }; - 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__(40); - var GraphGroup = __webpack_require__(42); - var Legend = __webpack_require__(43); - 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 + * 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 */ - function LineGraph(body, options) { - this.id = util.randomUUID(); - this.body = body; + 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.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, - handleOverlap: 'overlap', - 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 - } - } - }; + ctx.lineWidth = this._getLineWidth(); - // 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 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 me = this; - this.itemsData = null; // DataSet - this.groupsData = null; // DataSet + 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; - // 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); + var via; + if (this.options.smoothCurves.dynamic == true && this.options.smoothCurves.enabled == true ) { + via = this.via; } - }; - - // 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); + else if (this.options.smoothCurves.enabled == true) { + via = this._getViaCoordinates(); } - }; - - 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"); - } + 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; - LineGraph.prototype = new Component(); + 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; + } - /** - * Create the HTML DOM for the ItemSet - */ - LineGraph.prototype._create = function(){ - var frame = document.createElement('div'); - frame.className = 'LineGraph'; - this.dom.frame = frame; + 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(); - // 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); + // 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(); - // 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; + // 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(); - // legends - this.legendLeft = new Legend(this.body, this.options.legend, 'left'); - this.legendRight = new Legend(this.body, this.options.legend, 'right'); + // 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(); - this.show(); + // draw label + if (this.label) { + point = this._pointOnCircle(x, y, radius, 0.5); + this._label(ctx, this.label, point.x, point.y); + } + } }; + + /** - * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. - * @param options + * 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.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'); - - 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; - } - } + 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; } - } - - if (this.yAxisLeft) { - if (options.dataAxis !== undefined) { - this.yAxisLeft.setOptions(this.options.dataAxis); - this.yAxisRight.setOptions(this.options.dataAxis); + else { + var via = this._getViaCoordinates(); + xVia = via.x; + yVia = via.y; } - } - - if (this.legendLeft) { - if (options.legend !== undefined) { - this.legendLeft.setOptions(this.options.legend); - this.legendRight.setOptions(this.options.legend); + 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 } - - if (this.groups.hasOwnProperty(UNGROUPED)) { - this.groups[UNGROUPED].setOptions(options); + else { + return this._getDistanceToLine(x1,y1,x2,y2,x3,y3); } } - if (this.dom.frame) { - this._updateGraph(); + else { + var x, y, dx, dy; + var radius = 0.25 * this.physics.springLength; + var node = this.from; + if (node.width > node.height) { + x = node.x + 0.5 * node.width; + y = node.y - radius; + } + else { + x = node.x + radius; + y = node.y - 0.5 * node.height; + } + dx = x - x3; + dy = y - y3; + return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); } }; - /** - * 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); - } - }; + 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; - /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed - */ - LineGraph.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + if (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); + } /** - * Set items - * @param {vis.DataSet | null} items + * This allows the zoom level of the network to influence the rendering + * + * @param scale */ - 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'); - } + Edge.prototype.setScale = function(scale) { + this.networkScaleInv = 1.0/scale; + }; - 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); - } + Edge.prototype.select = function() { + this.selected = true; + }; - if (this.itemsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.itemListeners, function (callback, event) { - me.itemsData.on(event, callback, id); - }); + Edge.prototype.unselect = function() { + this.selected = false; + }; - // add all new items - ids = this.itemsData.getIds(); - this._onAdd(ids); + 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._updateUngrouped(); - this._updateGraph(); - this.redraw(); }; /** - * Set groups - * @param {vis.DataSet} groups + * This function draws the control nodes for the manipulator. In order to enable this, only set the this.controlNodesEnabled to true. + * @param ctx */ - LineGraph.prototype.setGroups = function(groups) { - var me = this, - ids; - - // unsubscribe from current dataset - if (this.groupsData) { - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.unsubscribe(event, callback); - }); + 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); + } - // remove all drawn groups - ids = this.groupsData.getIds(); - this.groupsData = null; - this._onRemoveGroups(ids); // note: this will cause a redraw - } + 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; + } - // replace the dataset - if (!groups) { - this.groupsData = null; - } - else if (groups instanceof DataSet || groups instanceof DataView) { - this.groupsData = groups; + this.controlNodes.from.draw(ctx); + this.controlNodes.to.draw(ctx); } else { - throw new TypeError('Data must be an instance of DataSet or DataView'); - } - - if (this.groupsData) { - // subscribe to new dataset - var id = this.id; - util.forEach(this.groupListeners, function (callback, event) { - me.groupsData.on(event, callback, id); - }); - - // draw all ms - ids = this.groupsData.getIds(); - this._onAddGroups(ids); + this.controlNodes = {from:null, to:null, positions:{}}; } - 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]); - } - this._updateGraph(); - this.redraw(); + /** + * Enable control nodes. + * @private + */ + Edge.prototype._enableControlNodes = function() { + this.controlNodesEnabled = true; }; - LineGraph.prototype._onAddGroups = function (groupIds) {this._onUpdateGroups(groupIds);}; - 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(); + /** + * disable control nodes + * @private + */ + Edge.prototype._disableControlNodes = function() { + this.controlNodesEnabled = false; }; /** - * update a group object - * - * @param group - * @param groupId + * 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._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]); - } + 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)); + + 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 { - 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]); - } + return null; } - this.legendLeft.redraw(); - this.legendRight.redraw(); }; - LineGraph.prototype._updateAllGroupData = function () { - if (this.itemsData != null) { - var groupsContent = {}; - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - groupsContent[groupId] = []; - } - } - for (var itemId in this.itemsData._data) { - if (this.itemsData._data.hasOwnProperty(itemId)) { - var item = this.itemsData._data[itemId]; - item.x = util.convert(item.x,"Date"); - groupsContent[item.group].push(item); - } - } - for (var groupId in this.groups) { - if (this.groups.hasOwnProperty(groupId)) { - this.groups[groupId].setItems(groupsContent[groupId]); - } - } - } - }; /** - * Create or delete the group holding all ungrouped items. This group is used when - * there are no groups specified. This anonymous group is called 'graph'. - * @protected + * this resets the control nodes to their original position. + * @private */ - 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); + Edge.prototype._restoreControlNodes = function() { + if (this.controlNodes.from.selected == true) { + this.from = this.connectedNode; + this.connectedNode = null; + this.controlNodes.from.unselect(); } - else { - delete this.groups[UNGROUPED]; - this.legendLeft.removeGroup(UNGROUPED); - this.legendRight.removeGroup(UNGROUPED); - this.yAxisLeft.removeGroup(UNGROUPED); - this.yAxisRight.removeGroup(UNGROUPED); + if (this.controlNodes.to.selected == true) { + this.to = this.connectedNode; + this.connectedNode = null; + this.controlNodes.to.unselect(); } - - this.legendLeft.redraw(); - this.legendRight.redraw(); }; - /** - * Redraw the component, mandatory function - * @return {boolean} Returns true if the component is resized + * 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.redraw = function() { - var resized = false; - - this.svg.style.height = ('' + this.options.graphHeight).replace('px','') + 'px'; - if (this.lastWidth === undefined && this.width || this.lastWidth != this.width) { - resized = true; + 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; + + 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(); } - // 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; + 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; - // 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); + 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; } - if (zoomed == true) { - this._updateGraph(); + else { + xTo = (1 - toBorderPoint) * this.from.x + toBorderPoint * this.to.x; + yTo = (1 - toBorderPoint) * this.from.y + toBorderPoint * this.to.y; } - this.legendLeft.redraw(); - this.legendRight.redraw(); - - return resized; + return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; }; + module.exports = Edge; + +/***/ }, +/* 34 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); + /** - * Update and redraw the graph. - * + * @class Groups + * This class can store groups and properties specific for groups. */ - LineGraph.prototype._updateGraph = function () { - // reset the svg elements - DOMutil.prepareElements(this.svgElements); - if (this.width != 0 && this.itemsData != null) { - var group, 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)) { - group = this.groups[groupId]; - if (group.visible == true) { - groupIds.push(groupId); - } - } - } - if (groupIds.length > 0) { - // 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 groupsData = {}; - // fill groups data - this._getRelevantData(groupIds, groupsData, minDate, maxDate); - // we transform the X coordinates to detect collisions - for (i = 0; i < groupIds.length; i++) { - preprocessedGroupData[groupIds[i]] = this._convertXcoordinates(groupsData[groupIds[i]]); - } - // now all needed data has been collected we start the processing. - this._getYRanges(groupIds, preprocessedGroupData, groupRanges); + function Groups() { + this.clear(); + this.defaultIndex = 0; + } - // 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[groupIds[i]] = this._convertYcoordinates(groupsData[groupIds[i]], group); - } + /** + * default constants for group colors + */ + Groups.DEFAULT = [ + {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue + {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow + {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red + {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green + {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta + {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple + {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange + {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue + {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink + {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint + ]; - // draw the groups - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.options.style == 'line') { - this._drawLineGraph(processedGroupData[groupIds[i]], group); - } + /** + * 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++; } - this._drawBarGraphs(groupIds, processedGroupData); } + return i; } - - // cleanup unused svg elements - DOMutil.cleanupElements(this.svgElements); }; - LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { - // 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. - var group; - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - groupsData[groupIds[i]] = []; - var dataContainer = groupsData[groupIds[i]]; - // 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) { - dataContainer.push(item); - break; - } - else { - dataContainer.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) { - dataContainer.push(item); - } - } - } - } - } + /** + * 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; } - this._applySampling(groupIds, groupsData); + return group; }; - LineGraph.prototype._applySampling = function (groupIds, groupsData) { - var group; - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.options.sampling == true) { - var dataContainer = groupsData[groupIds[i]]; - var increment = 1; - var amountOfPoints = dataContainer.length; + /** + * 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; + }; - // 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. - var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x); - var pointsPerPixel = amountOfPoints / xDistance; - increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel))); + module.exports = Groups; - var sampledData = []; - for (var j = 0; j < amountOfPoints; j += increment) { - sampledData.push(dataContainer[j]); - } - groupsData[groupIds[i]] = sampledData; - } - } - } - }; +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { - LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { - var groupData, group; - var barCombinedDataLeft = []; - var barCombinedDataRight = []; - var barCombinedData; - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - groupData = groupsData[groupIds[i]]; - group = this.groups[groupIds[i]]; - if (group.options.style == 'line' || group.options.barChart.handleOverlap != "stack") { - var yMin = groupData[0].y; - var yMax = groupData[0].y; - for (var j = 0; j < groupData.length; j++) { - yMin = yMin > groupData[j].y ? groupData[j].y : yMin; - yMax = yMax < groupData[j].y ? groupData[j].y : yMax; - } - groupRanges[groupIds[i]] = {min: yMin, max: yMax, yAxisOrientation: group.options.yAxisOrientation}; - } - else if (group.options.style == 'bar') { - if (group.options.yAxisOrientation == 'left') { - barCombinedData = barCombinedDataLeft; - } - else { - barCombinedData = barCombinedDataRight; - } + /** + * @class Images + * This class loads images and keeps them stored. + */ + function Images() { + this.images = {}; - groupRanges[groupIds[i]] = {min: 0, max: 0, yAxisOrientation: group.options.yAxisOrientation, ignore: true}; + this.callback = undefined; + } - // combine data - for (var j = 0; j < groupData.length; j++) { - barCombinedData.push({ - x: groupData[j].x, - y: groupData[j].y, - groupId: groupIds[i] - }); - } - } - } - if (barCombinedDataLeft.length > 0) { - // sort by time and by group - barCombinedDataLeft.sort(function (a, b) { - if (a.x == b.x) { - return a.groupId - b.groupId; - } else { - return a.x - b.x; - } - }) - var intersections = {}; - this._getDataIntersections(intersections, barCombinedDataLeft); - groupRanges["__barchartLeft"] = this._getStackedBarYRange(intersections, barCombinedDataLeft); - groupRanges["__barchartLeft"].yAxisOrientation = "left"; - groupIds.push("__barchartLeft"); - } - if (barCombinedDataRight.length > 0) { - // sort by time and by group - barCombinedDataRight.sort(function (a, b) { - if (a.x == b.x) { - return a.groupId - b.groupId; - } else { - return a.x - b.x; - } - }) - var intersections = {}; - this._getDataIntersections(intersections, barCombinedDataRight); - groupRanges["__barchartRight"] = this._getStackedBarYRange(intersections, barCombinedDataRight); - groupRanges["__barchartRight"].yAxisOrientation = "right"; - groupIds.push("__barchartRight"); - } - } + /** + * 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; }; - LineGraph.prototype._getStackedBarYRange = function (intersections, combinedData) { - var key; - var yMin = combinedData[0].y; - var yMax = combinedData[0].y; - for (var i = 0; i < combinedData.length; i++) { - key = combinedData[i].x; - if (intersections[key] === undefined) { - yMin = yMin > combinedData[i].y ? combinedData[i].y : yMin; - yMax = yMax < combinedData[i].y ? combinedData[i].y : yMax; - } - else { - intersections[key].accumulated += combinedData[i].y; - } - } - for (var xpos in intersections) { - if (intersections.hasOwnProperty(xpos)) { - yMin = yMin > intersections[xpos].accumulated ? intersections[xpos].accumulated : yMin; - yMax = yMax < intersections[xpos].accumulated ? intersections[xpos].accumulated : yMax; - } + /** + * + * @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 {min: yMin, max: yMax}; + return img; }; + module.exports = Images; + + +/***/ }, +/* 36 */ +/***/ function(module, exports, __webpack_require__) { + + var util = __webpack_require__(1); /** - * 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 + * @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 + * */ - 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; + function Node(properties, imagelist, grouplist, networkConstants) { + var constants = util.selectiveBridgeObject(['nodes'],networkConstants); + this.options = constants.nodes; - // if groups are present - if (groupIds.length > 0) { - for (var i = 0; i < groupIds.length; i++) { - if (groupRanges[groupIds[i]].ignore !== true) { - minVal = groupRanges[groupIds[i]].min; - maxVal = groupRanges[groupIds[i]].max; + this.selected = false; + this.hover = false; - if (groupRanges[groupIds[i]].yAxisOrientation == '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; - } - } - } + this.edges = []; // all edges connected to this node + this.dynamicEdges = []; + this.reroutedEdges = {}; - if (yAxisLeftUsed == true) { - this.yAxisLeft.setRange(minLeft, maxLeft); - } - if (yAxisRightUsed == true) { - this.yAxisRight.setRange(minRight, maxRight); - } - } + this.fontDrawThreshold = 3; - changeCalled = this._toggleAxisVisiblity(yAxisLeftUsed , this.yAxisLeft) || changeCalled; - changeCalled = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || changeCalled; + // set defaults for the properties + this.id = undefined; + this.x = null; + this.y = null; + this.xFixed = false; + this.yFixed = false; + this.horizontalAlignLeft = true; // these are for the navigation controls + this.verticalAlignTop = true; // these are for the navigation controls + this.baseRadiusValue = networkConstants.nodes.radius; + this.radiusFixed = false; + this.level = -1; + this.preassignedLevel = false; - if (yAxisRightUsed == true && yAxisLeftUsed == true) { - this.yAxisLeft.drawIcons = true; - this.yAxisRight.drawIcons = true; - } - else { - this.yAxisLeft.drawIcons = false; - this.yAxisRight.drawIcons = false; - } - this.yAxisRight.master = !yAxisLeftUsed; + this.imagelist = imagelist; + this.grouplist = grouplist; - if (this.yAxisRight.master == false) { - if (yAxisRightUsed == true) {this.yAxisLeft.lineOffset = this.yAxisRight.width;} - else {this.yAxisLeft.lineOffset = 0;} + // 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}; - changeCalled = this.yAxisLeft.redraw() || changeCalled; - this.yAxisRight.stepPixelsForced = this.yAxisLeft.stepPixels; - changeCalled = this.yAxisRight.redraw() || changeCalled; - } - else { - changeCalled = this.yAxisRight.redraw() || changeCalled; - } - // clean the accumulated lists - if (groupIds.indexOf("__barchartLeft") != -1) { - groupIds.splice(groupIds.indexOf("__barchartLeft"),1); - } - if (groupIds.indexOf("__barchartRight") != -1) { - groupIds.splice(groupIds.indexOf("__barchartRight"),1); - } + this.setProperties(properties, constants); - return changeCalled; + // 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; + } + + /** + * (re)setting the clustering variables and objects + */ + Node.prototype.resetCluster = function() { + // clustering variables + this.formationScale = undefined; // this is used to determine when to open the cluster + this.clusterSize = 1; // this signifies the total amount of nodes in this cluster + this.containedNodes = {}; + this.containedEdges = {}; + this.clusterSessions = []; }; /** - * 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 + * Attach a edge to the node + * @param {Edge} edge */ - LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { - var changed = false; - if (axisUsed == false) { - if (axis.dom.frame.parentNode) { - axis.hide(); - changed = true; - } + Node.prototype.attachEdge = function(edge) { + if (this.edges.indexOf(edge) == -1) { + this.edges.push(edge); } - else { - if (!axis.dom.frame.parentNode) { - axis.show(); - changed = true; - } + if (this.dynamicEdges.indexOf(edge) == -1) { + this.dynamicEdges.push(edge); } - return changed; + this.dynamicEdgesLength = this.dynamicEdges.length; }; - /** - * draw a bar graph - * @param datapoints - * @param group + * Detach a edge from the node + * @param {Edge} edge */ - LineGraph.prototype._drawBarGraphs = function (groupIds, processedGroupData) { - var combinedData = []; - var intersections = {}; - var coreDistance; - var key; - var group; - var i,j; - var barPoints = 0; - - // combine all barchart data - for (i = 0; i < groupIds.length; i++) { - group = this.groups[groupIds[i]]; - if (group.options.style == 'bar') { - if (group.visible == true) { - for (j = 0; j < processedGroupData[groupIds[i]].length; j++) { - combinedData.push({ - x: processedGroupData[groupIds[i]][j].x, - y: processedGroupData[groupIds[i]][j].y, - groupId: groupIds[i] - }); - barPoints += 1; - } - } - } + 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; + }; - if (barPoints == 0) {return;} - // sort by time and by group - combinedData.sort(function (a, b) { - if (a.x == b.x) { - return a.groupId - b.groupId; - } else { - return a.x - b.x; - } - }); + /** + * Set or overwrite properties for the node + * @param {Object} properties an object with properties + * @param {Object} constants and object with default, global properties + */ + Node.prototype.setProperties = function(properties, constants) { + if (!properties) { + return; + } - // get intersections - this._getDataIntersections(intersections, combinedData); + var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', + 'fontSize','fontFace','group','mass' + ]; + util.selectiveDeepExtend(fields, this.options, properties); - // plot barchart - for (i = 0; i < combinedData.length; i++) { - group = this.groups[combinedData[i].groupId]; - var minWidth = 0.1 * group.options.barChart.width; + 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;} - key = combinedData[i].x; - var heightOffset = 0; - if (intersections[key] === undefined) { - if (i+1 < combinedData.length) {coreDistance = Math.abs(combinedData[i+1].x - key);} - if (i > 0) {coreDistance = Math.min(coreDistance,Math.abs(combinedData[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 < combinedData.length) {coreDistance = Math.abs(combinedData[nextKey].x - key);} - if (prevKey > 0) {coreDistance = Math.min(coreDistance,Math.abs(combinedData[prevKey].x - key));} - var drawData = this._getSafeDrawData(coreDistance, group, minWidth); - intersections[key].resolved += 1; + // navigation controls properties + if (properties.horizontalAlignLeft !== undefined) {this.horizontalAlignLeft = properties.horizontalAlignLeft;} + if (properties.verticalAlignTop !== undefined) {this.verticalAlignTop = properties.verticalAlignTop;} + if (properties.triggerFunction !== undefined) {this.triggerFunction = properties.triggerFunction;} - if (group.options.barChart.handleOverlap == 'stack') { - heightOffset = intersections[key].accumulated; - intersections[key].accumulated += group.zeroPosition - combinedData[i].y; - } - else if (group.options.barChart.handleOverlap == 'sideBySide') { - 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(combinedData[i].x + drawData.offset, combinedData[i].y - heightOffset, drawData.width, group.zeroPosition - combinedData[i].y, group.className + ' bar', this.svgElements, this.svg); - // draw points - if (group.options.drawPoints.enabled == true) { - DOMutil.drawPoint(combinedData[i].x + drawData.offset, combinedData[i].y - heightOffset, group, this.svgElements, this.svg); - } + if (this.id === undefined) { + throw "Node must have an id"; } - }; - - LineGraph.prototype._getDataIntersections = function (intersections, combinedData) { - // get intersections - var coreDistance; - for (var i = 0; i < combinedData.length; i++) { - if (i + 1 < combinedData.length) { - coreDistance = Math.abs(combinedData[i + 1].x - combinedData[i].x); - } - if (i > 0) { - coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].x - combinedData[i].x)); - } - if (coreDistance == 0) { - if (intersections[combinedData[i].x] === undefined) { - intersections[combinedData[i].x] = {amount: 0, resolved: 0, accumulated: 0}; + // 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]; } - intersections[combinedData[i].x].amount += 1; } } - }; - - //LineGraph.prototype._accumulate = function (intersections, combinedData) { + // individual shape properties + if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} + if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} - LineGraph.prototype._getSafeDrawData = function (coreDistance, group, minWidth) { - var width, offset; - if (coreDistance < group.options.barChart.width && coreDistance > 0) { - width = coreDistance < minWidth ? minWidth : coreDistance; - - offset = 0; // recalculate offset with the new width; - if (group.options.barChart.align == 'left') { - offset -= 0.5 * coreDistance; + if (this.options.image!== undefined && this.options.image!= "") { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image); } - else if (group.options.barChart.align == 'right') { - offset += 0.5 * coreDistance; + else { + throw "No imagelist provided"; } } - else { - // no collisions, plot with default settings - width = group.options.barChart.width; - offset = 0; - 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; - } + + this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); + this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); + this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); + + if (this.options.shape == 'image') { + this.options.radiusMin = constants.nodes.widthMin; + this.options.radiusMax = constants.nodes.widthMax; } - return {width: width, offset: offset}; - }; + // 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(); + }; /** - * draw a line graph - * - * @param datapoints - * @param group + * select this node */ - 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); - - // 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); - - // draw points - if (group.options.drawPoints.enabled == true) { - this._drawPoints(dataset, group, this.svgElements, this.svg); - } - } - } + Node.prototype.select = function() { + this.selected = true; + this._reset(); }; /** - * draw the data points - * - * @param dataset - * @param JSONcontainer - * @param svg - * @param group + * unselect this node */ - 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.unselect = function() { + this.selected = false; + this._reset(); }; + /** + * Reset the calculated size of the node, forces it to recalculate its size + */ + Node.prototype.clearSizeCache = function() { + this._reset(); + }; /** - * 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} + * Reset the calculated size of the node, forces it to recalculate its size * @private */ - LineGraph.prototype._convertXcoordinates = function (datapoints) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; + Node.prototype._reset = function() { + this.width = undefined; + this.height = undefined; + }; - for (var i = 0; i < datapoints.length; i++) { - xValue = toScreen(datapoints[i].x) + this.width - 1; - yValue = datapoints[i].y; - extractedData.push({x: xValue, y: yValue}); - } - - return extractedData; + /** + * 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; }; - - /** - * 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 + * 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 */ - LineGraph.prototype._convertYcoordinates = function (datapoints, group) { - var extractedData = []; - var xValue, yValue; - var toScreen = this.body.util.toScreen; - var axis = this.yAxisLeft; - var svgHeight = Number(this.svg.style.height.replace("px","")); - if (group.options.yAxisOrientation == 'right') { - axis = this.yAxisRight; - } + Node.prototype.distanceToBorder = function (ctx, angle) { + var borderWidth = 1; - for (var i = 0; i < datapoints.length; i++) { - xValue = toScreen(datapoints[i].x) + this.width - 1; - yValue = Math.round(axis.convertValue(datapoints[i].y)); - extractedData.push({x: xValue, y: yValue}); + if (!this.width) { + this.resize(ctx); } - group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + switch (this.options.shape) { + case 'circle': + case 'dot': + return this.options.radius+ borderWidth; - return extractedData; + 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; + } + + } + // TODO: implement calculation of distance to border for all shapes }; /** - * 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} + * 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 */ - 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++) { + Node.prototype._addForce = function(fx, fy) { + this.fx += fx; + this.fy += fy; + }; - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; + /** + * 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 + } + 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 + } + }; - // Catmull-Rom to Cubic Bezier conversion matrix - // 0 1 0 0 - // -1/6 1 1/6 0 - // 0 1/6 1 -1/6 - // 0 0 1 0 - // bp0 = { x: p1.x, y: p1.y }; - bp1 = { x: ((-p0.x + 6*p1.x + p2.x) *normalization), y: ((-p0.y + 6*p1.y + p2.y) *normalization)}; - bp2 = { x: (( p1.x + 6*p2.x - p3.x) *normalization), y: (( p1.y + 6*p2.y - p3.y) *normalization)}; - // bp0 = { x: p2.x, y: p2.y }; - d += "C" + - bp1.x + "," + - bp1.y + " " + - bp2.x + "," + - bp2.y + " " + - p2.x + "," + - p2.y + " "; + /** + * Perform one discrete step for the node + * @param {number} interval Time interval in seconds + * @param {number} maxVelocity The speed limit imposed on the velocity + */ + Node.prototype.discreteStepLimited = function(interval, maxVelocity) { + if (!this.xFixed) { + var dx = this.damping * this.vx; // damping force + var ax = (this.fx - dx) / this.options.mass; // acceleration + this.vx += ax * interval; // velocity + this.vx = (Math.abs(this.vx) > maxVelocity) ? ((this.vx > 0) ? maxVelocity : -maxVelocity) : this.vx; + this.x += this.vx * interval; // position + } + else { + this.fx = 0; } - return d; + 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; + } }; /** - * 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 + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not */ - 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++) { + Node.prototype.isFixed = function() { + return (this.xFixed && this.yFixed); + }; - p0 = (i == 0) ? data[0] : data[i-1]; - p1 = data[i]; - p2 = data[i+1]; - p3 = (i + 2 < length) ? data[i+2] : p2; + /** + * 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); + }; - 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)); + /** + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false + */ + Node.prototype.isSelected = function() { + return this.selected; + }; - // 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 ] + /** + * Retrieve the value of the node. Can be undefined + * @return {Number} value + */ + Node.prototype.getValue = function() { + return this.value; + }; - // [ 0 1 0 0 ] - // [ -d2pow2a/N A/N d1pow2a/N 0 ] - // [ 0 d3pow2a/M B/M -d2pow2a/M ] - // [ 0 0 1 0 ] + /** + * Calculate the distance from the nodes location to the given location (x,y) + * @param {Number} x + * @param {Number} y + * @return {Number} value + */ + Node.prototype.getDistance = function(x, y) { + var dx = this.x - x, + dy = this.y - y; + return Math.sqrt(dx * dx + dy * dy); + }; - 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 + * Adjust the value range of the node. The node will adjust it's radius + * based on its value. + * @param {Number} min + * @param {Number} max */ - 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; + 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 { - d += " " + data[i].x + "," + data[i].y; + var scale = (this.options.radiusMax - this.options.radiusMin) / (max - min); + this.options.radius= (this.value - min) * scale + this.options.radiusMin; } } - return d; + this.baseRadiusValue = this.options.radius; }; - module.exports = LineGraph; - - -/***/ }, -/* 40 */ -/***/ function(module, exports, __webpack_require__) { + /** + * 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 util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); - var DataStep = __webpack_require__(41); + /** + * 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"; + }; /** - * A horizontal time axis - * @param {Object} [options] See DataAxis.setOptions for the available - * options. - * @constructor DataAxis - * @extends Component - * @param body + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top, right, bottom + * @return {boolean} True if location is located on node */ - function DataAxis (body, options, svg) { - this.id = util.randomUUID(); - this.body = body; + 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); + }; - 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} - } - }; + Node.prototype._resizeImage = function (ctx) { + // TODO: pre calculate the image size - this.linegraphSVG = svg; - this.props = {}; - this.DOMelements = { // dynamic elements - lines: {}, - labels: {} - }; + 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.dom = {}; + this.growthIndicator = 0; + if (this.width > 0 && this.height > 0) { + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - width; + } + } - this.range = {start:0, end:0}; + }; - this.options = util.extend({}, this.defaultOptions); - this.conversionFactor = 1; + Node.prototype._drawImage = function (ctx) { + this._resizeImage(ctx); - this.setOptions(options); - this.width = Number(('' + this.options.width).replace("px","")); - this.minWidth = this.width; - this.height = this.linegraphSVG.offsetHeight; + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - this.stepPixels = 25; - this.stepPixelsForced = 25; - this.lineOffset = 0; - this.master = true; - this.svgElements = {}; + var yLabel; + if (this.imageObj.width != 0 ) { + // draw the shade + if (this.clusterSize > 1) { + var lineWidth = ((this.clusterSize > 1) ? 10 : 0.0); + lineWidth *= this.networkScaleInv; + lineWidth = Math.min(0.2 * this.width,lineWidth); + ctx.globalAlpha = 0.5; + ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); + } - this.groups = {}; - this.amountOfGroups = 0; + // 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; + } - // create the HTML DOM - this._create(); - } + this._label(ctx, this.label, this.x, yLabel, undefined, "top"); + }; - DataAxis.prototype = new Component(); + 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; - 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; - }; + Node.prototype._drawBox = function (ctx) { + this._resizeBox(ctx); - DataAxis.prototype.removeGroup = function(label) { - if (this.groups.hasOwnProperty(label)) { - delete this.groups[label]; - this.amountOfGroups -= 1; - } - }; + 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; - 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); + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - this.minWidth = Number(('' + this.options.width).replace("px","")); + // 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); - if (redraw == true && this.dom.frame) { - this.hide(); - this.show(); - } + ctx.roundRect(this.left-2*ctx.lineWidth, this.top-2*ctx.lineWidth, this.width+4*ctx.lineWidth, this.height+4*ctx.lineWidth, this.options.radius); + ctx.stroke(); } - }; + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; - /** - * Create the HTML DOM for the DataAxis - */ - DataAxis.prototype._create = function() { - this.dom.frame = document.createElement('div'); - this.dom.frame.style.width = this.options.width; - this.dom.frame.style.height = this.height; - - this.dom.lineContainer = document.createElement('div'); - this.dom.lineContainer.style.width = '100%'; - this.dom.lineContainer.style.height = this.height; + ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); + ctx.fill(); + ctx.stroke(); - // 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); + this._label(ctx, this.label, this.x, this.y); }; - 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; + 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; - if (this.options.orientation == 'left') { - x = iconOffset; - } - else { - x = this.width - iconWidth - iconOffset; + // 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; } + }; - 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; - } - } - } + Node.prototype._drawDatabase = function (ctx) { + this._resizeDatabase(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - DOMutil.cleanupElements(this.svgElements); - }; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - /** - * 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); - } - } + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - if (!this.dom.lineContainer.parentNode) { - this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); - } - }; + // 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 the HTML DOM for the DataAxis - */ - DataAxis.prototype.hide = function() { - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + 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 (this.dom.lineContainer.parentNode) { - this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); - } - }; + 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(); - /** - * Set a range (start and end) - * @param end - * @param start - * @param end - */ - DataAxis.prototype.setRange = function (start, end) { - this.range.start = start; - this.range.end = end; + this._label(ctx, this.label, this.x, this.y); }; - /** - * Repaint the component - * @return {boolean} Returns true if the component is resized - */ - 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(); + + 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; + + // 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; } - 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; + Node.prototype._drawCircle = function (ctx) { + this._resizeCircle(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var props = this.props; - var frame = this.dom.frame; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - // update classname - frame.className = 'dataaxis'; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // calculate character width and height - this._calculateCharSize(); + // draw the outer border + if (this.clusterSize > 1) { + ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width,ctx.lineWidth); - var orientation = this.options.orientation; - var showMinorLabels = this.options.showMinorLabels; - var showMajorLabels = this.options.showMajorLabels; + 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); - // determine the width and height of the elemens for the axis - props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; - props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + 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(); - 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; + this._label(ctx, this.label, this.x, this.y); + }; - // 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(); + Node.prototype._resizeEllipse = function (ctx) { + if (!this.width) { + var textSize = this.getTextSize(ctx); + + this.width = textSize.width * 1.5; + this.height = textSize.height * 2; + if (this.width < this.height) { + this.width = this.height; } + var defaultSize = this.width; + + // scaling used for clustering + this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; + this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; + this.options.radius += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; + this.growthIndicator = this.width - defaultSize; } - 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); + Node.prototype._drawEllipse = function (ctx) { + this._resizeEllipse(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - var orientation = this.options['orientation']; + var clusterLineWidth = 2.5; + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - // 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; + ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - var amountOfSteps = this.height / stepPixels; - var stepDifference = 0; + // 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); - 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; + 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; - this.valueAtZero = step.marginEnd; - var marginStartPos = 0; + ctx.ellipse(this.left, this.top, this.width, this.height); + ctx.fill(); + ctx.stroke(); + this._label(ctx, this.label, this.x, this.y); + }; - // do not draw the first label - var max = 1; + Node.prototype._drawDot = function (ctx) { + this._drawShape(ctx, 'circle'); + }; - 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(); + Node.prototype._drawTriangle = function (ctx) { + this._drawShape(ctx, 'triangle'); + }; - 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); - } + Node.prototype._drawTriangleDown = function (ctx) { + this._drawShape(ctx, 'triangleDown'); + }; - 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._drawSquare = function (ctx) { + this._drawShape(ctx, 'square'); + }; - max++; - } + Node.prototype._drawStar = function (ctx) { + this._drawShape(ctx, 'star'); + }; - if (this.master == false) { - this.conversionFactor = y / (this.valueAtZero - step.current); - } - else { - this.conversionFactor = this.dom.frame.offsetHeight / step.marginRange; - } + 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; - 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; + // 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; } }; - DataAxis.prototype.convertValue = function (value) { - var invertedValue = this.valueAtZero - value; - var convertedValue = invertedValue * this.conversionFactor; - return convertedValue; - }; + Node.prototype._drawShape = function (ctx, shape) { + this._resizeShape(ctx); - /** - * 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"; + 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 { - label.style.right = '-' + this.options.labelOffsetX + 'px'; - label.style.textAlign = "left"; + + 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); - label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; + 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(); - text += ''; + if (this.label) { + this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); + } + }; - var largestWidth = Math.max(this.props.majorCharWidth,this.props.minorCharWidth); - if (this.maxLabelSize < text.length * largestWidth) { - this.maxLabelSize = text.length * largestWidth; + 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; + + // 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); } }; - /** - * 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 = ''; + Node.prototype._drawText = function (ctx) { + this._resizeText(ctx); + this.left = this.x - this.width / 2; + this.top = this.y - this.height / 2; - if (orientation == 'left') { - line.style.left = (this.width - offset) + 'px'; - } - else { - line.style.right = (this.width - offset) + 'px'; + 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"; + + 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); } - line.style.width = width + 'px'; - line.style.top = y + 'px'; + for (var i = 0; i < lineCount; i++) { + ctx.fillText(lines[i], x, yLine); + yLine += fontSize; + } } }; + Node.prototype.getTextSize = function(ctx) { + if (this.label !== undefined) { + ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + + 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); + } + return {"width": width, "height": height}; + } + else { + return {"width": 0, "height": 0}; + } + }; /** - * 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 + * 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} */ - 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); + 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); } - - 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; - - this.dom.frame.removeChild(measureCharMajor); + else { + return true; } }; /** - * 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 + * checks if the core of the node is in the display area, this is used for opening clusters around zoom + * @returns {boolean} */ - DataAxis.prototype.snap = function(date) { - return this.step.snap(date); + 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); }; - module.exports = DataAxis; - - -/***/ }, -/* 41 */ -/***/ function(module, exports, __webpack_require__) { - /** - * @constructor DataStep - * The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an - * end data point. The class itself determines the best scale (step size) based on the - * provided start Date, end Date, and minimumStep. - * - * If minimumStep is provided, the step size is chosen as close as possible - * to the minimumStep but larger than minimumStep. If minimumStep is not - * provided, the scale is set to 1 DAY. - * The minimumStep should correspond with the onscreen size of about 6 characters - * - * Alternatively, you can set a scale by hand. - * After creation, you can initialize the class by executing first(). Then you - * can iterate from the start date to the end date via next(). You can check if - * the end date is reached with the function hasNext(). After each step, you can - * retrieve the current date via getCurrent(). - * The DataStep has scales ranging from milliseconds, seconds, minutes, hours, - * days, to years. - * - * Version: 1.2 + * 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 {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 + * @param scale + * @param canvasTopLeft + * @param canvasBottomRight */ - function DataStep(start, end, minimumStep, containerHeight, customRange) { - // variables - this.current = 0; + Node.prototype.setScaleAndPos = function(scale,canvasTopLeft,canvasBottomRight) { + this.networkScaleInv = 1.0/scale; + this.networkScale = scale; + this.canvasTopLeft = canvasTopLeft; + this.canvasBottomRight = canvasBottomRight; + }; - this.autoScale = true; - this.stepIndex = 0; - this.step = 1; - this.scale = 1; - this.marginStart; - this.marginEnd; - this.deadSpace = 0; + /** + * 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; + }; - this.majorSteps = [1, 2, 5, 10]; - this.minorSteps = [0.25, 0.5, 1, 2]; - this.setRange(start, end, minimumStep, containerHeight, customRange); - } + /** + * 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; + }; /** - * 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 + * Basic preservation of (kinectic) energy + * + * @param massBeforeClustering */ - 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.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); + }; - if (start == end) { - this._start = start - 0.75; - this._end = end + 1; - } + module.exports = Node; - if (this.autoScale) { - this.setMinimumStep(minimumStep, containerHeight); - } - this.setFirst(customRange); - }; + +/***/ }, +/* 37 */ +/***/ function(module, exports, __webpack_require__) { /** - * Automatically determine the scale that bests fits the provided minimum step - * @param {Number} [minimumStep] The minimum step size in milliseconds + * 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. */ - DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { - // round to floor - var size = this._end - this._start; - var safeSize = size * 1.2; - var minimumStepValue = minimumStep * (safeSize / containerHeight); - var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); - - var minorStepIdx = -1; - var magnitudefactor = Math.pow(10,orderOfMagnitude); - - var start = 0; - if (orderOfMagnitude < 0) { - start = orderOfMagnitude; + function Popup(container, x, y, text, style) { + if (container) { + this.container = container; + } + else { + this.container = document.body; } - 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; + // 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' + } } } - if (solutionFound == true) { - break; - } } - this.stepIndex = minorStepIdx; - this.scale = magnitudefactor; - this.step = magnitudefactor * this.minorSteps[minorStepIdx]; - }; + this.x = 0; + this.y = 0; + this.padding = 5; + + if (x !== undefined && y !== undefined ) { + this.setPosition(x, y); + } + if (text !== undefined) { + this.setText(text); + } + // create the frame + this.frame = document.createElement("div"); + var styleAttr = this.frame.style; + styleAttr.position = "absolute"; + styleAttr.visibility = "hidden"; + styleAttr.border = "1px solid " + style.color.border; + styleAttr.color = style.fontColor; + styleAttr.fontSize = style.fontSize + "px"; + styleAttr.fontFamily = style.fontFace; + styleAttr.padding = this.padding + "px"; + styleAttr.backgroundColor = style.color.background; + styleAttr.borderRadius = "3px"; + styleAttr.MozBorderRadius = "3px"; + styleAttr.WebkitBorderRadius = "3px"; + styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; + styleAttr.whiteSpace = "nowrap"; + this.container.appendChild(this.frame); + } /** - * Round the current date to the first minor date value - * This must be executed once when the current date is set to start Date + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window */ - DataStep.prototype.setFirst = function(customRange) { - if (customRange === undefined) { - customRange = {}; - } - var niceStart = customRange.min === undefined ? this._start - (this.scale * 2 * this.minorSteps[this.stepIndex]) : customRange.min; - var niceEnd = customRange.max === undefined ? this._end + (this.scale * this.minorSteps[this.stepIndex]) : customRange.max; - - this.marginEnd = customRange.max === undefined ? this.roundToMinor(niceEnd) : customRange.max; - this.marginStart = customRange.min === undefined ? this.roundToMinor(niceStart) : customRange.min; - this.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; - this.marginRange = this.marginEnd - this.marginStart; - - this.current = this.marginEnd; - - }; - - DataStep.prototype.roundToMinor = function(value) { - var rounded = value - (value % (this.scale * this.minorSteps[this.stepIndex])); - if (value % (this.scale * this.minorSteps[this.stepIndex]) > 0.5 * (this.scale * this.minorSteps[this.stepIndex])) { - return rounded + (this.scale * this.minorSteps[this.stepIndex]); - } - else { - return rounded; - } - } - + Popup.prototype.setPosition = function(x, y) { + this.x = parseInt(x); + this.y = parseInt(y); + }; /** - * Check if the there is a next step - * @return {boolean} true if the current date has not passed the end date + * Set the text for the popup window. This can be HTML code + * @param {string} text */ - DataStep.prototype.hasNext = function () { - return (this.current >= this.marginStart); + Popup.prototype.setText = function(text) { + this.frame.innerHTML = text; }; /** - * Do the next step + * Show the popup window + * @param {boolean} show Optional. Show or hide the window */ - DataStep.prototype.next = function() { - var prev = this.current; - this.current -= this.step; + Popup.prototype.show = function (show) { + if (show === undefined) { + show = true; + } - // safety mechanism: if current time is still unchanged, move to the end - if (this.current == prev) { - this.current = this._end; + if (show) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; + + var top = (this.y - height); + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; + } + if (top < this.padding) { + top = this.padding; + } + + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + if (left < this.padding) { + left = this.padding; + } + + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + } + else { + this.hide(); } }; /** - * Do the next step + * Hide the popup window */ - DataStep.prototype.previous = function() { - this.current += this.step; - this.marginEnd += this.step; - this.marginRange = this.marginEnd - this.marginStart; + Popup.prototype.hide = function () { + this.frame.style.visibility = "hidden"; }; + module.exports = Popup; + +/***/ }, +/* 38 */ +/***/ function(module, exports, __webpack_require__) { /** - * Get the current datetime - * @return {String} current The current date + * 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 */ - 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; - } - } + function parseDOT (data) { + dot = data; + return parseGraph(); + } - return toPrecision; + // token types enumeration + var TOKENTYPE = { + NULL : 0, + DELIMITER : 1, + IDENTIFIER: 2, + UNKNOWN : 3 }; + // map with all delimiters + var DELIMITERS = { + '{': true, + '}': true, + '[': true, + ']': true, + ';': true, + '=': true, + ',': true, + + '->': true, + '--': true + }; + 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 /** - * 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 + * 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. */ - DataStep.prototype.snap = function(date) { - - }; + function first() { + index = 0; + c = dot.charAt(0); + } /** - * 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. + * 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. */ - DataStep.prototype.isMajor = function() { - return (this.current % (this.scale * this.majorSteps[this.stepIndex]) == 0); - }; - - module.exports = DataStep; - - -/***/ }, -/* 42 */ -/***/ function(module, exports, __webpack_require__) { + function next() { + index++; + c = dot.charAt(index); + } - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); + /** + * Preview the next character from the dot file. + * @return {String} cNext + */ + function nextPreview() { + return dot.charAt(index + 1); + } /** - * @constructor Group - * @param {Number | String} groupId - * @param {Object} data - * @param {ItemSet} itemSet + * Test whether given character is alphabetic or numeric + * @param {String} c + * @return {Boolean} isAlphaNumeric */ - function GraphGroup (group, groupId, options, groupsUsingDefaultStyles) { - this.id = groupId; - var fields = ['sampling','style','sort','yAxisOrientation','barChart','drawPoints','shaded','catmullRom'] - 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; + var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; + function isAlphaNumeric(c) { + return regexAlphaNumeric.test(c); } - 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 = []; + /** + * 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 = {}; } - }; - - GraphGroup.prototype.setZeroPosition = function(pos) { - this.zeroPosition = pos; - }; - GraphGroup.prototype.setOptions = function(options) { - if (options !== undefined) { - var fields = ['sampling','style','sort','yAxisOrientation','barChart']; - 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; - } - } + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; } } } - }; + return a; + } - 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); - }; - - 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); + /** + * 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] = {}; } - fillPath.setAttributeNS(null, "class", this.className + " iconFill"); + o = o[key]; } - - if (this.options.drawPoints.enabled == true) { - DOMutil.drawPoint(x + 0.5 * iconWidth,y, this, JSONcontainer, SVGcontainer); + else { + // this is the end point + o[key] = value; } } - 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); - } - }; + } /** - * - * @param iconWidth - * @param iconHeight - * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} + * 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 */ - 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}; - } + function addNode(graph, node) { + var i, len; + var current = null; - module.exports = GraphGroup; + // find root graph (in case of subgraph) + var graphs = [graph]; // list with all graphs from current graph to root graph + var root = graph; + while (root.parent) { + graphs.push(root.parent); + root = root.parent; + } + // find existing node (at root level) by its id + if (root.nodes) { + for (i = 0, len = root.nodes.length; i < len; i++) { + if (node.id === root.nodes[i].id) { + current = root.nodes[i]; + break; + } + } + } -/***/ }, -/* 43 */ -/***/ function(module, exports, __webpack_require__) { + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); + } + } - var util = __webpack_require__(1); - var DOMutil = __webpack_require__(6); - var Component = __webpack_require__(22); + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; - /** - * Legend for Graph2d - */ - function Legend(body, options, side) { - this.body = body; - this.defaultOptions = { - enabled: true, - icons: true, - iconSize: 20, - iconSpacing: 6, - left: { - visible: true, - position: 'top-left' // top/bottom - left,center,right - }, - right: { - visible: true, - position: 'top-left' // top/bottom - left,center,right + if (!g.nodes) { + g.nodes = []; + } + if (g.nodes.indexOf(current) == -1) { + g.nodes.push(current); } } - this.side = side; - this.options = util.extend({},this.defaultOptions); - - this.svgElements = {}; - this.dom = {}; - this.groups = {}; - this.amountOfGroups = 0; - this._create(); - this.setOptions(options); + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); + } } - Legend.prototype = new Component(); - - - Legend.prototype.addGroup = function(label, graphOptions) { - if (!this.groups.hasOwnProperty(label)) { - this.groups[label] = graphOptions; + /** + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge + */ + function addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; } - 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; + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes } - }; - - 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.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'; - - this.dom.frame.appendChild(this.svg); - this.dom.frame.appendChild(this.dom.textArea); - }; + } /** - * Hide the component from the DOM + * 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 */ - Legend.prototype.hide = function() { - // remove the frame containing the items - if (this.dom.frame.parentNode) { - this.dom.frame.parentNode.removeChild(this.dom.frame); + 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; + } /** - * Show the component in the DOM (when not already visible). - * @return {Boolean} changed + * Get next token in the current dot file. + * The token and token type are available as token and tokenType */ - Legend.prototype.show = function() { - // show frame containing the items - if (!this.dom.frame.parentNode) { - this.body.dom.center.appendChild(this.dom.frame); + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ''; + + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); } - }; - Legend.prototype.setOptions = function(options) { - var fields = ['enabled','orientation','icons','left','right']; - util.selectiveDeepExtend(fields, this.options, options); - }; + do { + var isComment = 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++; + // 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 (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 = ''; + if (c == '/' && nextPreview() == '/') { + // skip line comment + while (c != '' && c != '\n') { + next(); + } + isComment = true; } - 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 (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; } - 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 = ''; + // skip over whitespaces + while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter + next(); } + } + while (isComment); - 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(); - } + // check for end of dot file + if (c == '') { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } - 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'; + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; } - }; - 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; + // check for delimiters consisting of 1 character + if (DELIMITERS[c]) { + tokenType = TOKENTYPE.DELIMITER; + token = c; + next(); + return; + } - this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; + // 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(); - 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; - } + 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; + } + + // 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; + } - DOMutil.cleanupElements(this.svgElements); + // 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) + '"'); + } - module.exports = Legend; + /** + * Parse a graph. + * @returns {Object} graph + */ + function parseGraph() { + var graph = {}; + first(); + getToken(); -/***/ }, -/* 44 */ -/***/ function(module, exports, __webpack_require__) { + // optional strict keyword + if (token == 'strict') { + graph.strict = true; + getToken(); + } - var Emitter = __webpack_require__(10); - var Hammer = __webpack_require__(18); - var mousetrap = __webpack_require__(37); - var util = __webpack_require__(1); - var hammerUtil = __webpack_require__(21); - var DataSet = __webpack_require__(7); - var DataView = __webpack_require__(8); - var dotparser = __webpack_require__(50); - var gephiParser = __webpack_require__(51); - var Groups = __webpack_require__(47); - var Images = __webpack_require__(48); - var Node = __webpack_require__(46); - var Edge = __webpack_require__(45); - var Popup = __webpack_require__(49); - var MixinLoader = __webpack_require__(52); - var Activator = __webpack_require__(36); - var locales = __webpack_require__(63); + // graph or digraph keyword + if (token == 'graph' || token == 'digraph') { + graph.type = token; + getToken(); + } - // Load custom shapes into CanvasRenderingContext2D - __webpack_require__(64); + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } - /** - * @constructor Network - * Create a network visualization, displaying nodes and edges. - * - * @param {Element} container The DOM element in which the Network will - * be created. Normally a div element. - * @param {Object} data An object containing parameters - * {Array} nodes - * {Array} edges - * @param {Object} options Options - */ - function Network (container, data, options) { - if (!(this instanceof Network)) { - throw new SyntaxError('Constructor must be called with the new operator'); + // open angle bracket + if (token != '{') { + throw newSyntaxError('Angle bracket { expected'); } + getToken(); - this._initializeMixinLoaders(); + // statements + parseStatements(graph); - // create variables and set default values - this.containerElement = container; + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); - // 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 + // end of file + if (token !== '') { + throw newSyntaxError('End of file expected'); + } + getToken(); - this.initializing = true; + // remove temporary default properties + delete graph.node; + delete graph.edge; + delete graph.graph; - this.triggerFunctions = {add:null,edit:null,editEdge:null,connect:null,del:null}; + return graph; + } - // set constant values - this.defaultOptions = { + /** + * Parse a list with statements. + * @param {Object} graph + */ + function parseStatements (graph) { + while (token !== '' && token != '}') { + parseStatement(graph); + if (token == ';') { + getToken(); + } + } + } + + /** + * 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); + + return; + } + + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; + } + + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + var id = token; // id can be a string or a number + getToken(); + + if (token == '=') { + // id statement + getToken(); + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + graph[id] = token; + getToken(); + // TODO: implement comma separated list with "a_list: ID=ID [','] [a_list] " + } + else { + parseNodeStatement(graph, id); + } + } + + /** + * Parse a subgraph + * @param {Object} graph parent graph object + * @return {Object | null} subgraph + */ + function parseSubgraph (graph) { + var subgraph = null; + + // optional subgraph keyword + if (token == 'subgraph') { + subgraph = {}; + subgraph.type = 'subgraph'; + getToken(); + + // optional graph id + if (tokenType == TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); + } + } + + // 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); + + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); + + // 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); + } + + 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(); + + // node attributes + graph.node = parseAttributeList(); + return 'node'; + } + else if (token == 'edge') { + getToken(); + + // edge attributes + graph.edge = parseAttributeList(); + return 'edge'; + } + else if (token == 'graph') { + getToken(); + + // graph attributes + graph.graph = parseAttributeList(); + return 'graph'; + } + + return 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); + + // edge statements + parseEdge(graph, id); + } + + /** + * 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(); + + 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(); + } + + // parse edge attributes + var attr = parseAttributeList(); + + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); + + from = to; + } + } + + /** + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr + */ + function parseAttributeList() { + var attr = null; + + while (token == '[') { + getToken(); + attr = {}; + while (token !== '' && token != ']') { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute name expected'); + } + var name = token; + + getToken(); + if (token != '=') { + throw newSyntaxError('Equal sign = expected'); + } + getToken(); + + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute value expected'); + } + var value = token; + setValue(attr, name, value); // name can be a path + + getToken(); + if (token ==',') { + getToken(); + } + } + + if (token != ']') { + throw newSyntaxError('Bracket ] expected'); + } + getToken(); + } + + return attr; + } + + /** + * 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 + ')'); + } + + /** + * 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) + '...'); + } + + /** + * Execute a function fn for each pair of elements in two arrays + * @param {Array | *} array1 + * @param {Array | *} array2 + * @param {function} fn + */ + function forEach2(array1, array2, fn) { + if (array1 instanceof Array) { + array1.forEach(function (elem1) { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(elem1, elem2); + }); + } + else { + fn(elem1, array2); + } + }); + } + else { + if (array2 instanceof Array) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } + else { + fn(array1, array2); + } + } + } + + /** + * Convert a string containing a graph in DOT language into a map containing + * with nodes and edges in the format of graph. + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graphData + */ + function DOTToGraph (data) { + // parse the DOT file + var dotData = parseDOT(data); + var graphData = { + nodes: [], + edges: [], + options: {} + }; + + // copy the nodes + if (dotData.nodes) { + dotData.nodes.forEach(function (dotNode) { + var graphNode = { + id: dotNode.id, + label: String(dotNode.label || dotNode.id) + }; + merge(graphNode, dotNode.attr); + if (graphNode.image) { + graphNode.shape = 'image'; + } + graphData.nodes.push(graphNode); + }); + } + + // copy the edges + if (dotData.edges) { + /** + * Convert an edge in DOT format to an edge with VisGraph format + * @param {Object} dotEdge + * @returns {Object} graphEdge + */ + function convertEdge(dotEdge) { + var graphEdge = { + from: dotEdge.from, + to: dotEdge.to + }; + merge(graphEdge, dotEdge.attr); + graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; + return graphEdge; + } + + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } + else { + from = { + id: dotEdge.from + } + } + + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } + else { + to = { + id: dotEdge.to + } + } + + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + + 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); + }); + + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + }); + } + + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; + } + + return graphData; + } + + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; + + +/***/ }, +/* 39 */ +/***/ function(module, exports, __webpack_require__) { + + + function parseGephi(gephiJSON, options) { + var edges = []; + var nodes = []; + this.options = { + edges: { + inheritColor: true + }, nodes: { - 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' + allowedToMove: false, + parseColor: false + } + }; + + if (options !== undefined) { + this.options.nodes['allowedToMove'] = options.allowedToMove | false; + this.options.nodes['parseColor'] = options.parseColor | false; + this.options.edges['inheritColor'] = options.inheritColor | true; + } + + 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; + +/***/ }, +/* 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__(51); + + +/***/ }, +/* 41 */ +/***/ function(module, exports, __webpack_require__) { + + // Only load hammer.js when in a browser environment + // (loading hammer.js in a node.js environment gives errors) + if (typeof window !== 'undefined') { + module.exports = window['Hammer'] || __webpack_require__(52); + } + else { + module.exports = function () { + throw Error('hammer.js is only available in a browser, not in node.js.'); + } + } + + +/***/ }, +/* 42 */ +/***/ function(module, exports, __webpack_require__) { + + var Emitter = __webpack_require__(49); + 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); + var Activator = __webpack_require__(48); + + /** + * 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 () {} + + // turn Core into an event emitter + Emitter(Core.prototype); + + /** + * 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 + */ + 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'); + + this.dom.root.className = 'vis timeline root'; + this.dom.background.className = 'vispanel background'; + this.dom.backgroundVertical.className = 'vispanel background vertical'; + this.dom.backgroundHorizontal.className = 'vispanel background horizontal'; + this.dom.centerContainer.className = 'vispanel center'; + this.dom.leftContainer.className = 'vispanel left'; + this.dom.rightContainer.className = 'vispanel right'; + this.dom.top.className = 'vispanel top'; + this.dom.bottom.className = 'vispanel bottom'; + this.dom.left.className = 'content'; + this.dom.center.className = 'content'; + this.dom.right.className = 'content'; + this.dom.shadowTop.className = 'shadow top'; + this.dom.shadowBottom.className = 'shadow bottom'; + this.dom.shadowTopLeft.className = 'shadow top'; + this.dom.shadowBottomLeft.className = 'shadow bottom'; + this.dom.shadowTopRight.className = 'shadow top'; + this.dom.shadowBottomRight.className = 'shadow bottom'; + + this.dom.root.appendChild(this.dom.background); + this.dom.root.appendChild(this.dom.backgroundVertical); + this.dom.root.appendChild(this.dom.backgroundHorizontal); + this.dom.root.appendChild(this.dom.centerContainer); + this.dom.root.appendChild(this.dom.leftContainer); + this.dom.root.appendChild(this.dom.rightContainer); + this.dom.root.appendChild(this.dom.top); + this.dom.root.appendChild(this.dom.bottom); + + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); + + this.dom.centerContainer.appendChild(this.dom.shadowTop); + this.dom.centerContainer.appendChild(this.dom.shadowBottom); + this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); + this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); + this.dom.rightContainer.appendChild(this.dom.shadowTopRight); + this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); + + this.on('rangechange', this.redraw.bind(this)); + this.on('change', this.redraw.bind(this)); + this.on('touch', this._onTouch.bind(this)); + this.on('pinch', this._onPinch.bind(this)); + this.on('dragstart', this._onDragStart.bind(this)); + this.on('drag', this._onDrag.bind(this)); + + // create event listeners for all interesting events, these events will be + // emitted via emitter + this.hammer = Hammer(this.dom.root, { + prevent_default: true + }); + this.listeners = {}; + + var me = this; + var events = [ + 'touch', 'pinch', + 'tap', 'doubletap', 'hold', + 'dragstart', 'drag', 'dragend', + 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (event) { + var listener = function () { + var args = [event].concat(Array.prototype.slice.call(arguments, 0)); + if (me.isActive()) { + 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 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 + */ + Core.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'orientation', 'clickToUse']; + util.selectiveExtend(fields, this.options, options); + + if ('clickToUse' in options) { + if (options.clickToUse) { + this.activator = new Activator(this.dom.root); + } + else { + if (this.activator) { + this.activator.destroy(); + delete this.activator; } + } + } + + // 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.'); + } + + // redraw everything + this.redraw(); + }; + + /** + * Returns true when the Timeline is active. + * @returns {boolean} + */ + Core.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; + + /** + * Destroy the Core, clean up all DOM elements and event listeners. + */ + Core.prototype.destroy = function () { + // unbind datasets + this.clear(); + + // remove all event listeners + this.off(); + + // stop checking for changed size + this._stopAutoResize(); + + // remove from DOM + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); + } + this.dom = null; + + // remove Activator + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + + // cleanup hammer touch events + for (var event in this.listeners) { + if (this.listeners.hasOwnProperty(event)) { + delete this.listeners[event]; + } + } + this.listeners = null; + this.hammer = null; + + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + component.destroy(); + }); + + this.body = null; + }; + + + /** + * 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'); + } + + this.customTime.setCustomTime(time); + }; + + /** + * Retrieve the current custom time. + * @return {Date} customTime + */ + Core.prototype.getCustomTime = function() { + if (!this.customTime) { + throw new Error('Cannot get custom time: Custom time bar is not enabled'); + } + + return this.customTime.getCustomTime(); + }; + + + /** + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items + */ + Core.prototype.getVisibleItems = function() { + return this.itemSet && this.itemSet.getVisibleItems() || []; + }; + + + + /** + * 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); + } + + // clear groups + if (!what || what.groups) { + this.setGroups(null); + } + + // clear options of timeline and of each of the components + if (!what || what.options) { + this.components.forEach(function (component) { + component.setOptions(component.defaultOptions); + }); + + this.setOptions(this.defaultOptions); // this will also do a redraw + } + }; + + /** + * Set Core window such that it fits all items + */ + Core.prototype.fit = function() { + // apply the data range as range + var dataRange = this.getItemRange(); + + // add 5% space on both sides + var start = dataRange.min; + var end = dataRange.max; + if (start != null && end != null) { + var interval = (end.valueOf() - start.valueOf()); + if (interval <= 0) { + // prevent an empty interval + interval = 24 * 60 * 60 * 1000; // 1 day + } + start = new Date(start.valueOf() - interval * 0.05); + end = new Date(end.valueOf() + interval * 0.05); + } + + // skip range set if there is no start and end date + if (start === null && end === null) { + return; + } + + this.range.setRange(start, end); + }; + + + /** + * 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); + } + }; + + /** + * Get the visible window + * @return {{start: Date, end: Date}} Visible range + */ + Core.prototype.getWindow = function() { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; + }; + + /** + * Force a redraw of the Core. Can be useful to manually redraw when + * option autoResize=false + */ + Core.prototype.redraw = function() { + var resized = false, + options = this.options, + props = this.props, + dom = this.dom; + + if (!dom) return; // when destroyed + + // update class names + if (options.orientation == 'top') { + util.addClassName(dom.root, 'top'); + util.removeClassName(dom.root, 'bottom'); + } + else { + util.removeClassName(dom.root, 'top'); + util.addClassName(dom.root, 'bottom'); + } + + // 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, ''); + + // 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; + + // calculate the heights. If any of the side panels is empty, we set the height to + // minus the border width, such that the border will be invisible + props.center.height = dom.center.offsetHeight; + props.left.height = dom.left.offsetHeight; + props.right.height = dom.right.offsetHeight; + props.top.height = dom.top.clientHeight || -props.border.top; + props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; + + // TODO: compensate borders when any of the panels is empty. + + // 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(); + + // 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'; + + // 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(); + } + }; + + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error('Function repaint is deprecated. Use redraw instead.'); + }; + + /** + * Convert a position on screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @private + */ + // 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); + }; + + + /** + * Convert a position on the global screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @private + */ + // TODO: move this function to Range + Core.prototype._toGlobalTime = function(x) { + var conversion = this.range.conversion(this.props.root.width); + return new Date(x / conversion.scale + conversion.offset); + }; + + /** + * Convert a datetime (Date object) into a position on the screen + * @param {Date} time A date + * @return {int} x The position on the screen in pixels which corresponds + * with the given date. + * @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; + }; + + + /** + * 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; + }; + + + /** + * Initialize watching when option autoResize is true + * @private + */ + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); + } + else { + this._stopAutoResize(); + } + }; + + /** + * Watch for changes in the size of the container. On resize, the Panel will + * automatically redraw itself. + * @private + */ + Core.prototype._startAutoResize = function () { + var me = this; + + this._stopAutoResize(); + + this._onResize = function() { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; + } + + if (me.dom.root) { + // check whether the frame is resized + if ((me.dom.root.clientWidth != me.props.lastWidth) || + (me.dom.root.clientHeight != me.props.lastHeight)) { + me.props.lastWidth = me.dom.root.clientWidth; + me.props.lastHeight = me.dom.root.clientHeight; + + me.emit('change'); + } + } + }; + + // 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 + */ + 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; + }; + + /** + * 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 + * @private + */ + Core.prototype._onDragStart = function (event) { + this.touch.initialScrollTop = this.props.scrollTop; + }; + + /** + * 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 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 + } + }; + + /** + * 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; + }; + + /** + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop + * @private + */ + Core.prototype._updateScrollTop = function () { + // recalculate the scrollTopMin + var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero + if (scrollTopMin != this.props.scrollTopMin) { + // in case of bottom orientation, change the scrollTop such that the contents + // do not move relative to the time axis at the bottom + if (this.options.orientation == 'bottom') { + this.props.scrollTop += (scrollTopMin - this.props.scrollTopMin); + } + this.props.scrollTopMin = scrollTopMin; + } + + // limit the scrollTop to the feasible scroll range + if (this.props.scrollTop > 0) this.props.scrollTop = 0; + if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; + + return this.props.scrollTop; + }; + + /** + * Get the current scrollTop + * @returns {number} scrollTop + * @private + */ + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; + }; + + module.exports = Core; + + +/***/ }, +/* 43 */ +/***/ function(module, exports, __webpack_require__) { + + var Hammer = __webpack_require__(41); + + /** + * Fake a hammer.js gesture. Event can be a ScrollEvent or MouseMoveEvent + * @param {Element} element + * @param {Event} event + */ + exports.fakeGesture = function(element, event) { + var eventType = null; + + // for hammer.js 1.0.5 + // var gesture = Hammer.event.collectEventData(this, eventType, event); + + // for hammer.js 1.0.6+ + var touches = Hammer.event.getTouchList(event, eventType); + var gesture = Hammer.event.collectEventData(this, eventType, touches, event); + + // 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; + } + + return gesture; + }; + + +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { + + // English + exports['en'] = { + current: 'current', + time: 'time' + }; + 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']; + + +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { + + // English + exports['en'] = { + edit: 'Edit', + del: 'Delete selected', + back: 'Back', + addNode: 'Add Node', + addEdge: 'Add Edge', + editNode: 'Edit Node', + editEdge: 'Edit Edge', + addDescription: 'Click in an empty space to place a new node.', + edgeDescription: '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'] = { + edit: 'Wijzigen', + del: 'Selectie verwijderen', + back: 'Terug', + addNode: 'Node toevoegen', + addEdge: 'Link toevoegen', + editNode: 'Node wijzigen', + editEdge: 'Link wijzigen', + addDescription: 'Klik op een leeg gebied om een nieuwe node te maken.', + edgeDescription: '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__) { + + /** + * Canvas shapes used by Network + */ + if (typeof CanvasRenderingContext2D !== 'undefined') { + + /** + * Draw a circle shape + */ + CanvasRenderingContext2D.prototype.circle = function(x, y, r) { + this.beginPath(); + this.arc(x, y, r, 0, 2*Math.PI, false); + }; + + /** + * Draw a square shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r size, width and height of the square + */ + CanvasRenderingContext2D.prototype.square = function(x, y, r) { + this.beginPath(); + this.rect(x - r, y - r, r * 2, r * 2); + }; + + /** + * Draw a triangle shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.triangle = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y - (h - ir)); + this.lineTo(x + s2, y + ir); + this.lineTo(x - s2, y + ir); + this.lineTo(x, y - (h - ir)); + this.closePath(); + }; + + /** + * Draw a triangle shape in downward orientation + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius + */ + CanvasRenderingContext2D.prototype.triangleDown = function(x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y + (h - ir)); + this.lineTo(x + s2, y - ir); + this.lineTo(x - s2, y - ir); + this.lineTo(x, y + (h - ir)); + this.closePath(); + }; + + /** + * 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__(59); + var ClusterMixin = __webpack_require__(53); + var SectorsMixin = __webpack_require__(54); + var SelectionMixin = __webpack_require__(55); + var ManipulationMixin = __webpack_require__(56); + var NavigationMixin = __webpack_require__(57); + var HierarchicalLayoutMixin = __webpack_require__(58); + + /** + * 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]; + } + } + }; + + + /** + * 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; + } + } + }; + + + /** + * 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(); + } + }; + + + /** + * Mixin the cluster system and initialize the parameters required. + * + * @private + */ + exports._loadClusterSystem = function () { + this.clusterSession = 0; + this.hubThreshold = 5; + this._loadMixin(ClusterMixin); + }; + + + /** + * 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 }; + + this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields + + this._loadMixin(SectorsMixin); + }; + + + /** + * Mixin the selection system and initialize the parameters required + * + * @private + */ + exports._loadSelectionSystem = function () { + this.selectionObj = {nodes: {}, edges: {}}; + + this._loadMixin(SelectionMixin); + }; + + + /** + * 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; + + 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.frame.appendChild(this.manipulationDiv); + } + + 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.frame.appendChild(this.editModeDiv); + } + + 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.frame.appendChild(this.closeDiv); + } + + // load the manipulation functions + this._loadMixin(ManipulationMixin); + + // create the manipulator toolbar + this._createManipulatorBar(); + } + else { + if (this.manipulationDiv !== undefined) { + // removes all the bindings and overloads + this._createManipulatorBar(); + // remove the manipulation divs + this.containerElement.removeChild(this.manipulationDiv); + this.containerElement.removeChild(this.editModeDiv); + this.containerElement.removeChild(this.closeDiv); + + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + // remove the mixin functions + this._clearMixin(ManipulationMixin); + } + } + }; + + + /** + * Mixin the navigation (User Interface) system and initialize the parameters required + * + * @private + */ + exports._loadNavigationControls = function () { + this._loadMixin(NavigationMixin); + + // the clean function removes the button divs, this is done to remove the bindings. + this._cleanNavigation(); + if (this.constants.navigation.enabled == true) { + this._loadNavigationElements(); + } + }; + + + /** + * Mixin the hierarchical layout system. + * + * @private + */ + exports._loadHierarchySystem = function () { + this._loadMixin(HierarchicalLayoutMixin); + }; + + +/***/ }, +/* 48 */ +/***/ function(module, exports, __webpack_require__) { + + var mousetrap = __webpack_require__(50); + var Emitter = __webpack_require__(49); + var Hammer = __webpack_require__(41); + var util = __webpack_require__(1); + + /** + * Turn an element into an clickToUse element. + * When not active, the element has a transparent overlay. When the overlay is + * clicked, the mode is changed to active. + * When active, the element is displayed with a blue border around it, and + * the interactive contents of the element can be used. When clicked outside + * the element, the elements mode is changed to inactive. + * @param {Element} container + * @constructor + */ + function Activator(container) { + this.active = false; + + this.dom = { + container: container + }; + + this.dom.overlay = document.createElement('div'); + this.dom.overlay.className = 'overlay'; + + this.dom.container.appendChild(this.dom.overlay); + + this.hammer = Hammer(this.dom.overlay, {prevent_default: false}); + this.hammer.on('tap', this._onTapOverlay.bind(this)); + + // block all touch events (except tap) + var me = this; + var events = [ + 'touch', 'pinch', + 'doubletap', 'hold', + 'dragstart', 'drag', 'dragend', + 'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (event) { + me.hammer.on(event, function (event) { + event.stopPropagation(); + }); + }); + + // attach a tap event to the window, in order to deactivate when clicking outside the timeline + this.windowHammer = Hammer(window, {prevent_default: false}); + this.windowHammer.on('tap', function (event) { + // deactivate when clicked outside the container + if (!_hasParent(event.target, container)) { + me.deactivate(); + } + }); + + // mousetrap listener only bounded when active) + this.escListener = this.deactivate.bind(this); + } + + // turn into an event emitter + Emitter(Activator.prototype); + + // The currently active activator + Activator.current = null; + + /** + * Destroy the activator. Cleans up all created DOM and event listeners + */ + Activator.prototype.destroy = function () { + this.deactivate(); + + // remove dom + this.dom.overlay.parentNode.removeChild(this.dom.overlay); + + // cleanup hammer instances + this.hammer = null; + this.windowHammer = null; + // FIXME: cleaning up hammer instances doesn't work (Timeline not removed from memory) + }; + + /** + * Activate the element + * Overlay is hidden, element is decorated with a blue shadow border + */ + Activator.prototype.activate = function () { + // we allow only one active activator at a time + if (Activator.current) { + Activator.current.deactivate(); + } + Activator.current = this; + + this.active = true; + this.dom.overlay.style.display = 'none'; + util.addClassName(this.dom.container, 'vis-active'); + + this.emit('change'); + this.emit('activate'); + + // ugly hack: bind ESC after emitting the events, as the Network rebinds all + // keyboard events on a 'change' event + mousetrap.bind('esc', this.escListener); + }; + + /** + * Deactivate the element + * Overlay is displayed on top of the element + */ + Activator.prototype.deactivate = function () { + this.active = false; + this.dom.overlay.style.display = ''; + util.removeClassName(this.dom.container, 'vis-active'); + mousetrap.unbind('esc', this.escListener); + + this.emit('change'); + this.emit('deactivate'); + }; + + /** + * Handle a tap event: activate the container + * @param event + * @private + */ + Activator.prototype._onTapOverlay = function (event) { + // activate the container + this.activate(); + event.stopPropagation(); + }; + + /** + * Test whether the element has the requested parent element somewhere in + * its chain of parent nodes. + * @param {HTMLElement} element + * @param {HTMLElement} parent + * @returns {boolean} Returns true when the parent is found somewhere in the + * chain of parent nodes. + * @private + */ + function _hasParent(element, parent) { + while (element) { + if (element === parent) { + return true + } + element = element.parentNode; + } + return false; + } + + module.exports = Activator; + + +/***/ }, +/* 49 */ +/***/ function(module, exports, __webpack_require__) { + + + /** + * Expose `Emitter`. + */ + + module.exports = Emitter; + + /** + * Initialize a new `Emitter`. + * + * @api public + */ + + function Emitter(obj) { + if (obj) return mixin(obj); + }; + + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ + + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; + } + + /** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; + }; + + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + 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; + }; + + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + 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; + } + } + return this; + }; + + /** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ + + 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); + } + } + + return this; + }; + + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; + }; + + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ + + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; + }; + + +/***/ }, +/* 50 */ +/***/ function(module, exports, __webpack_require__) { + + /** + * Copyright 2012 Craig Campbell + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Mousetrap is a simple keyboard shortcut library for Javascript with + * no external dependencies + * + * @version 1.1.2 + * @url craig.is/killing/mice + */ + + /** + * 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' }, - 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 + + /** + * 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: '\'' }, - repulsion: { - centralGravity: 0.0, - springLength: 200, - springConstant: 0.05, - nodeDistance: 100, - damping: 0.09 + + /** + * 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', + '_': '-', + '+': '=', + ':': ';', + '\"': '\'', + '<': ',', + '>': '.', + '?': '/', + '|': '\\' }, - hierarchicalRepulsion: { - enabled: false, - centralGravity: 0.0, - springLength: 100, - springConstant: 0.01, - nodeDistance: 150, - damping: 0.09 + + /** + * 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' }, - 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' + + /** + * 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, + + /** + * 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, + + /** + * temporary state where we will ignore the next keyup + * + * @type {boolean|string} + */ + _ignore_next_keyup = false, + + /** + * 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; + } + + /** + * loop through to map numbers on the numeric keypad + */ + for (i = 0; i <= 9; ++i) { + _MAP[i + 96] = i; + } + + /** + * 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) { + + // for keypress events we should return the character as is + if (e.type == 'keypress') { + return String.fromCharCode(e.which); + } + + // for non keypress events the special maps are needed + if (_MAP[e.which]) { + return _MAP[e.which]; + } + + if (_KEYCODE_MAP[e.which]) { + return _KEYCODE_MAP[e.which]; + } + + // if it is not in the special map + return String.fromCharCode(e.which).toLowerCase(); + } + + /** + * 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; + + // 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'); + } + + /** + * 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(','); + } + + /** + * resets all sequence counters except for the ones passed in + * + * @param {Object} do_not_reset + * @returns void + */ + function _resetSequences(do_not_reset) { + do_not_reset = do_not_reset || {}; + + var active_sequences = false, + key; + + for (key in _sequence_levels) { + if (do_not_reset[key]) { + active_sequences = true; + continue; + } + _sequence_levels[key] = 0; } - }, - dragNetwork: true, - dragNodes: true, - zoomable: true, - hover: false, - hideEdgesOnDrag: false, - hideNodesOnDrag: false, - width : '100%', - height : '100%', - selectable: true - }; - this.constants = util.extend({}, this.defaultOptions); - this.hoverObj = {nodes:{},edges:{}}; - this.controlNodesActive = false; + if (!active_sequences) { + _inside_sequence = false; + } + } - // 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(); - }); + /** + * 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 = []; - // keyboard navigation variables - this.xIncrement = 0; - this.yIncrement = 0; - this.zoomIncrement = 0; + // if there are no events related to this keycode + if (!_callbacks[character]) { + return []; + } - // 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(); + // if a modifier key is coming up on its own we should allow it + if (action == 'keyup' && _isModifier(character)) { + modifiers = [character]; + } - // apply options - this._setTranslation(this.frame.clientWidth / 2, this.frame.clientHeight / 2); - this._setScale(1); - this.setOptions(options); + // 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]; - // other vars - this.freezeSimulation = false;// freeze the simulation - this.cachedFunctions = {}; + // 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; + } - // 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 + // if the action we are looking for doesn't match the action we got + // then we should keep going + if (action != callback.action) { + continue; + } - // 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 + // if this is a keypress event that means that we need to only + // look at the character, otherwise check the modifiers as + // well + if (action == 'keypress' || _modifiersMatch(modifiers, callback.modifiers)) { + + // remove is used so if you change your mind and call bind a + // second time with a new function the first one is overwritten + if (remove && callback.combo == combination) { + _callbacks[character].splice(i, 1); + } + + 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 = []; + + if (e.shiftKey) { + modifiers.push('shift'); + } + + if (e.altKey) { + modifiers.push('alt'); + } + + if (e.ctrlKey) { + modifiers.push('ctrl'); + } + + if (e.metaKey) { + modifiers.push('meta'); + } + + return modifiers; + } + + /** + * 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; + } + } + + /** + * 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; + } + + 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); + } + } + + /** + * handles a keydown event + * + * @param {Event} e + * @returns void + */ + function _handleKey(e) { - // datasets or dataviews - this.nodesData = null; // A DataSet or DataView - this.edgesData = null; // A DataSet or DataView + // 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; - // 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(); - } - }; + var character = _characterFromEvent(e); - // properties for the animation - this.moving = true; - this.timer = undefined; // Scheduling function. Is definded in this.start(); + // no character found then stop + if (!character) { + return; + } - // 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); + if (e.type == 'keyup' && _ignore_next_keyup == character) { + _ignore_next_keyup = false; + return; + } - // hierarchical layout - this.initializing = false; - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); + _handleCharacter(character, e); } - 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); - } + + /** + * 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'; } - // if clustering is disabled, the simulation will have started in the setData function - if (this.constants.clustering.enabled) { - this.startWithClustering(); + /** + * 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); } - } - // Extend Network with an Emitter mixin - Emitter(Network.prototype); + /** + * 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) { - /** - * 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' ); + // 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; + } - // 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 (_MAP.hasOwnProperty(key)) { + _REVERSE_MAP[_MAP[key]] = key; + } + } + } + return _REVERSE_MAP; } - return null; - }; - + /** + * 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) { - /** - * Find the center position of the network - * @private - */ - Network.prototype._getRange = function() { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - node = this.nodes[nodeId]; - if (minX > (node.x)) {minX = node.x;} - if (maxX < (node.x)) {maxX = node.x;} - if (minY > (node.y)) {minY = node.y;} - if (maxY < (node.y)) {maxY = node.y;} - } - } - if (minX == 1e9 && maxX == -1e9 && minY == 1e9 && maxY == -1e9) { - minY = 0, maxY = 0, minX = 0, maxX = 0; - } - return {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - }; + // 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'; + } - /** - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - * @returns {{x: number, y: number}} - * @private - */ - Network.prototype._findCenter = function(range) { - return {x: (0.5 * (range.maxX + range.minX)), - y: (0.5 * (range.maxY + range.minY))}; - }; + return action; + } + /** + * 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) { - /** - * center the network - * - * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; - */ - Network.prototype._centerNetwork = function(range) { - var center = this._findCenter(range); + // start off by adding a sequence level record for this combination + // and setting the level to 0 + _sequence_levels[combo] = 0; - center.x *= this.scale; - center.y *= this.scale; - center.x -= 0.5 * this.frame.canvas.clientWidth; - center.y -= 0.5 * this.frame.canvas.clientHeight; + // if there is no action pick the best one for the first key + // in the sequence + if (!action) { + action = _pickBestAction(keys[0], []); + } - this._setTranslation(-center.x,-center.y); // set at 0,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); - /** - * 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; - } + // 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); + } - var range = this._getRange(); - var zoomLevel; + // weird race condition if a sequence ends with the key + // another sequence begins with + setTimeout(_resetSequences, 10); + }, + i; - if (initialZoom == true) { - var numberOfNodes = this.nodeIndices.length; - if (this.constants.smoothCurves == true) { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 49.07548 / (numberOfNodes + 142.05338) + 9.1444e-04; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - } - else { - if (this.constants.clustering.enabled == true && - numberOfNodes >= this.constants.clustering.initialMaxNodes) { - zoomLevel = 77.5271985 / (numberOfNodes + 187.266146) + 4.76710517e-05; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. - } - else { - zoomLevel = 30.5062972 / (numberOfNodes + 19.93597763) + 0.08413486; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + // 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); } - } - - // correct for larger canvasses. - var factor = Math.min(this.frame.canvas.clientWidth / 600, this.frame.canvas.clientHeight / 600); - zoomLevel *= factor; } - else { - var xDistance = (Math.abs(range.minX) + Math.abs(range.maxX)) * 1.1; - var yDistance = (Math.abs(range.minY) + Math.abs(range.maxY)) * 1.1; - var xZoomLevel = this.frame.canvas.clientWidth / xDistance; - var yZoomLevel = this.frame.canvas.clientHeight / yDistance; + /** + * 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) { - zoomLevel = (xZoomLevel <= yZoomLevel) ? xZoomLevel : yZoomLevel; - } + // make sure multiple spaces in a row become a single space + combination = combination.replace(/\s+/g, ' '); - if (zoomLevel > 1.0) { - zoomLevel = 1.0; - } + 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); + } - this._setScale(zoomLevel); - this._centerNetwork(range); - if (disableStart == false) { - this.moving = true; - this.start(); - } - }; + // 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]; - /** - * 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); - } - } - }; + // 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'); + } - /** - * 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; - } + // if this key is a modifier then add it to the list of modifiers + if (_isModifier(key)) { + modifiers.push(key); + } + } - 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.'); - } + // depending on what the key combination is + // we will try to pick the best event for it + action = _pickBestAction(key, modifiers, action); - // set options - this.setOptions(data && data.options); + // make sure to initialize array if this is the first time + // a callback is added for this key + if (!_callbacks[key]) { + _callbacks[key] = []; + } - // 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); + // remove an existing match if there is one + _getMatches(key, modifiers, action, !sequence_name, combination); + + // 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 + }); } - 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(); - } + /** + * 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); + } } - }; - /** - * Set options - * @param {Object} options - */ - Network.prototype.setOptions = function (options) { - if (options) { - var prop; + // start! + _addEvent(document, 'keypress', _handleKey); + _addEvent(document, 'keydown', _handleKey); + _addEvent(document, 'keyup', _handleKey); - var fields = ['nodes','edges','smoothCurves','hierarchicalLayout','clustering','navigation','keyboard','dataManipulation', - 'onAdd','onEdit','onEditEdge','onConnect','onDelete','activatable' - ]; - util.selectiveNotDeepExtend(fields,this.constants, options); - util.selectiveNotDeepExtend(['color'],this.constants.nodes, options.nodes); - util.selectiveNotDeepExtend(['color','length'],this.constants.edges, options.edges); + var mousetrap = { - if (options.physics) { - util.mergeOptions(this.constants.physics, options.physics,'barnesHut'); - util.mergeOptions(this.constants.physics, options.physics,'repulsion'); + /** + * 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; + }, - 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]; + /** + * 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); } - } - } - } - - 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;} - - util.mergeOptions(this.constants, options,'smoothCurves'); - util.mergeOptions(this.constants, options,'hierarchicalLayout'); - util.mergeOptions(this.constants, options,'clustering'); - util.mergeOptions(this.constants, options,'navigation'); - util.mergeOptions(this.constants, options,'keyboard'); - util.mergeOptions(this.constants, options,'dataManipulation'); + return this; + }, + /** + * 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; + }, - if (options.dataManipulation) { - this.editMode = this.constants.dataManipulation.initiallyVisible; - } + /** + * 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; - // 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 (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); - } - } - } +/***/ }, +/* 51 */ +/***/ function(module, exports, __webpack_require__) { - 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); - } - } + 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 - if ('activatable' in options) { - if (options.activatable) { - this.activator = new Activator(this.frame); - this.activator.on('change', this._createKeyBinds.bind(this)); - } - else { - if (this.activator) { - this.activator.destroy(); - delete this.activator; - } - } - } + (function (undefined) { + /************************************ + Constants + ************************************/ - if (options.labels) { - throw new Error('Option "labels" is deprecated. Use options "locale" and "locales" instead.'); - } - } + 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, - // (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(); + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, + // internal storage for locale config files + locales = {}, - // bind keys. If disabled, this will not do anything; - this._createKeyBinds(); - this.setSize(this.constants.width, this.constants.height); - this.moving = true; - this.start(); + // extra moment internal properties (plugins register props here) + momentProperties = [], - }; + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), - /** - * 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); - } + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, - this.frame = document.createElement('div'); - this.frame.className = 'vis network-frame'; - this.frame.style.position = 'relative'; - this.frame.style.overflow = 'hidden'; + // 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)$/, - // 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); - } + // 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 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) ); + // 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}/, - // add the frame to the container element - this.containerElement.appendChild(this.frame); + //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 - }; + // 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)?)?$/, + isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', - /** - * Binding the keys for keyboard navigation. These functions are defined in the NavigationMixin - * @private - */ - Network.prototype._createKeyBinds = function() { - var me = this; - this.mousetrap = mousetrap; + 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}/] + ], - this.mousetrap.reset(); + // 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/] + ], - if (this.constants.keyboard.enabled && this.isActive()) { - 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"); - } + // timezone chunker "+10:00" > ["10", "00"] or "-1530" > ["-15", "30"] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, - if (this.constants.dataManipulation.enabled == true) { - this.mousetrap.bind("escape",this._createManipulatorBar.bind(me)); - this.mousetrap.bind("del",this._deleteSelected.bind(me)); - } - }; + // 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 + }, - /** - * 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) - }; - }; + 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' + }, - /** - * 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(); + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, - this._handleTouch(this.drag.pointer); - }; + // format function strings + formatFunctions = {}, - /** - * handle drag start event - * @private - */ - Network.prototype._onDragStart = function () { - this._handleDragStart(); - }; + // 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 + }, + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), - /** - * 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 + 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(); + } + }, - drag.dragging = true; - drag.selection = []; - drag.translation = this._getTranslation(); - drag.nodeId = null; + deprecations = {}, - if (node != null) { - drag.nodeId = node.id; - // select the clicked node if not yet selected - if (!node.isSelected()) { - this._selectObject(node,false); - } + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; - // 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, + // 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'); + } + } - // store original x, y, xFixed and yFixed, make the node temporarily Fixed - x: object.x, - y: object.y, - xFixed: object.xFixed, - yFixed: object.yFixed + 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 }; + } - object.xFixed = true; - object.yFixed = true; + function printMsg(msg) { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn("Deprecation warning: " + msg); + } + } - drag.selection.push(s); - } + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (firstTime) { + printMsg(msg); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); } - } - }; + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + printMsg(msg); + deprecations[name] = true; + } + } - /** - * handle drag event - * @private - */ - Network.prototype._onDrag = function (event) { - this._handleOnDrag(event) - }; + 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); + }; + } + 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); - /** - * This function is called by _onDrag. - * It is separated out because we can then overload it for the datamanipulation system. - * - * @private - */ - Network.prototype._handleOnDrag = function(event) { - if (this.drag.pinched) { - return; - } - var pointer = this._getPointer(event.gesture.center); + /************************************ + Constructors + ************************************/ - 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; + function Locale() { + } - // update position of all selected nodes - selection.forEach(function (s) { - var node = s.node; + // Moment prototype object + function Moment(config, skipOverflow) { + if (skipOverflow !== false) { + checkOverflow(config); + } + copyConfig(this, config); + this._d = new Date(+config._d); + } - if (!s.xFixed) { - node.x = me._XconvertDOMtoCanvas(me._XconvertCanvasToDOM(s.x) + deltaX); - } + // 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; - if (!s.yFixed) { - node.y = me._YconvertDOMtoCanvas(me._YconvertCanvasToDOM(s.y) + deltaY); - } - }); + // 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 = {}; - // 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._locale = moment.localeData(); - this._setTranslation( - this.drag.translation.x + diffX, - this.drag.translation.y + diffY - ); - this._redraw(); - // this.moving = true; - // this.start(); + this._bubble(); } - } - }; - /** - * handle drag start event - * @private - */ - Network.prototype._onDragEnd = function () { - this.drag.dragging = false; - var selection = this.drag.selection; - if (selection && selection.length) { - selection.forEach(function (s) { - // restore original xFixed and yFixed - s.node.xFixed = s.xFixed; - s.node.yFixed = s.yFixed; - }); - this.moving = true; - this.start(); - } - else { - this._redraw(); - } + /************************************ + Helpers + ************************************/ - }; - /** - * 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); + 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; + } + } + } - /** - * handle doubletap event - * @private - */ - Network.prototype._onDoubleTap = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleDoubleTap(pointer); - }; + return to; + } + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } - /** - * 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); - }; + // 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; - /** - * handle the release of the screen - * - * @private - */ - Network.prototype._onRelease = function (event) { - var pointer = this._getPointer(event.gesture.center); - this._handleOnRelease(pointer); - }; + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } - /** - * Handle pinch event - * @param event - * @private - */ - Network.prototype._onPinch = function (event) { - var pointer = this._getPointer(event.gesture.center); + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; - this.drag.pinched = true; - if (!('scale' in this.pinch)) { - this.pinch.scale = 1; - } + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } - // TODO: enabled moving while pinching? - var scale = this.pinch.scale * event.gesture.scale; - this._zoom(scale, pointer) - }; + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); - /** - * 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; + return res; } - var preScaleDragPointer = null; - if (this.drag !== undefined) { - if (this.drag.dragging == true) { - preScaleDragPointer = this.DOMtoCanvas(this.drag.pointer); - } + 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; } - // + 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; + // 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; + } - this.areaCenter = {"x" : this._XconvertDOMtoCanvas(pointer.x), - "y" : this._YconvertDOMtoCanvas(pointer.y)}; + val = typeof val === 'string' ? +val : val; + dur = moment.duration(val, period); + addOrSubtractDurationFromMoment(this, dur, direction); + return this; + }; + } - this._setScale(scale); - this._setTranslation(tx, ty); - this.updateClustersDefault(); + function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; - if (preScaleDragPointer != null) { - var postScaleDragPointer = this.canvasToDOM(preScaleDragPointer); - this.drag.pointer.x = postScaleDragPointer.x; - this.drag.pointer.y = postScaleDragPointer.y; + 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); + } } - this._redraw(); - - if (scaleOld < scale) { - this.emit("zoom", {direction:"+"}); + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; } - else { - this.emit("zoom", {direction:"-"}); + + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; } - return scale; - } - }; + // 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; + } - /** - * 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; - } + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; - // 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) { + for (prop in inputObject) { + if (inputObject.hasOwnProperty(prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } - // calculate the new scale - var scale = this._getScale(); - var zoom = delta / 10; - if (delta < 0) { - zoom = zoom / (1 - zoom); + return normalizedInput; } - scale *= (1 + zoom); - // calculate the pointer location - var gesture = hammerUtil.fakeGesture(this, event); - var pointer = this._getPointer(gesture.center); + function makeList(field) { + var count, setter; - // apply the new scale - this._zoom(scale, pointer); - } + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } - // Prevent default actions caused by mouse wheel. - event.preventDefault(); - }; + moment[field] = function (format, index) { + var i, getter, + method = moment._locale[field], + results = []; + if (typeof format === 'number') { + index = format; + format = undefined; + } - /** - * 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); + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment._locale, m, format || ''); + }; - // check if the previously selected node is still selected - if (this.popupObj) { - this._checkHidePopup(pointer); - } + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; + } - // 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); - } + 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); + } + } - /** - * 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]; - } + return value; } - // adding hover highlights - var obj = this._getNodeAt(pointer); - if (obj == null) { - obj = this._getEdgeAt(pointer); + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); } - if (obj != null) { - this._hoverObject(obj); + + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; } - // 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]; - } - } + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; } - this.redraw(); - } - }; - /** - * Check if there is an element on the given position in the network - * (a node or edge). If so, and if this element has a title, - * show a popup window with its title. - * - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkShowPopup = function (pointer) { - var obj = { - left: this._XconvertDOMtoCanvas(pointer.x), - top: this._YconvertDOMtoCanvas(pointer.y), - right: this._XconvertDOMtoCanvas(pointer.x), - bottom: this._YconvertDOMtoCanvas(pointer.y) - }; + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } - var id; - var lastPopupNode = this.popupObj; + 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 (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 (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } - 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; + m._pf.overflow = overflow; } - } } - } - 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); - } + 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; - // 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(); + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; } - } - }; - - /** - * Check if the popup must be hided, which is the case when the mouse is no - * longer hovering on the object - * @param {{x:Number, y:Number}} pointer - * @private - */ - Network.prototype._checkHidePopup = function (pointer) { - if (!this.popupObj || !this._getNodeAt(pointer) ) { - this.popupObj = undefined; - if (this.popup) { - this.popup.hide(); + function 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; - /** - * 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.frame.canvas.style.width = '100%'; - this.frame.canvas.style.height = '100%'; + 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; + } - this.frame.canvas.width = this.frame.canvas.clientWidth; - this.frame.canvas.height = this.frame.canvas.clientHeight; + 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]; + } - this.emit('resize', {width:this.frame.canvas.width,height:this.frame.canvas.height}); - }; + // 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(); + } - /** - * Set a data set with nodes for the network - * @param {Array | DataSet | DataView} nodes The data containing the nodes. - * @private - */ - Network.prototype._setNodes = function(nodes) { - var oldNodesData = this.nodesData; + /************************************ + Locale + ************************************/ - if (nodes instanceof DataSet || nodes instanceof DataView) { - this.nodesData = nodes; - } - else if (nodes instanceof Array) { - this.nodesData = new DataSet(); - this.nodesData.add(nodes); - } - else if (!nodes) { - this.nodesData = new DataSet(); - } - else { - throw new TypeError('Array or DataSet expected'); - } - if (oldNodesData) { - // unsubscribe from old dataset - util.forEach(this.nodesListeners, function (callback, event) { - oldNodesData.off(event, callback); - }); - } + extend(Locale.prototype, { - // remove drawn nodes - this.nodes = {}; + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, - if (this.nodesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.nodesListeners, function (callback, event) { - me.nodesData.on(event, callback); - }); + _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + months : function (m) { + return this._months[m.month()]; + }, - // draw all new nodes - var ids = this.nodesData.getIds(); - this._addNodes(ids); - } - this._updateSelection(); - }; + _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, - /** - * Add nodes - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._addNodes = function(ids) { - var id; - for (var i = 0, len = ids.length; i < len; i++) { - id = ids[i]; - var data = this.nodesData.get(id); - var node = new Node(data, this.images, this.groups, this.constants); - this.nodes[id] = node; // note: this may replace an existing node - if ((node.xFixed == false || node.yFixed == false) && (node.x === null || node.y === null)) { - var radius = 10 * 0.1*ids.length + 10; - var angle = 2 * Math.PI * Math.random(); - if (node.xFixed == false) {node.x = radius * Math.cos(angle);} - if (node.yFixed == false) {node.y = radius * Math.sin(angle);} - } - this.moving = true; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateValueRange(this.nodes); - this.updateLabels(); - }; + monthsParse : function (monthName) { + var i, mom, regex; - /** - * Update existing nodes, or create them when not yet existing - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._updateNodes = function(ids) { - var nodes = this.nodes, - nodesData = this.nodesData; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var node = nodes[id]; - var data = nodesData.get(id); - if (node) { - // update node - node.setProperties(data, this.constants); - } - else { - // create node - node = new Node(properties, this.images, this.groups, this.constants); - nodes[id] = node; - } - } - this.moving = true; - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateNodeIndexList(); - this._reconnectEdges(); - this._updateValueRange(nodes); - }; + if (!this._monthsParse) { + this._monthsParse = []; + } - /** - * Remove existing nodes. If nodes do not exist, the method will just ignore it. - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._removeNodes = function(ids) { - var nodes = this.nodes; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - delete nodes[id]; - } - this._updateNodeIndexList(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - this._reconnectEdges(); - this._updateSelection(); - this._updateValueRange(nodes); - }; + 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; + } + } + }, - /** - * Load edges by reading the data table - * @param {Array | DataSet | DataView} edges The data containing the edges. - * @private - * @private - */ - Network.prototype._setEdges = function(edges) { - var oldEdgesData = this.edgesData; + _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, - 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'); - } + _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, - if (oldEdgesData) { - // unsubscribe from old dataset - util.forEach(this.edgesListeners, function (callback, event) { - oldEdgesData.off(event, callback); - }); - } + _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, - // remove drawn edges - this.edges = {}; + weekdaysParse : function (weekdayName) { + var i, mom, regex; - if (this.edgesData) { - // subscribe to new dataset - var me = this; - util.forEach(this.edgesListeners, function (callback, event) { - me.edgesData.on(event, callback); - }); + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } - // draw all new nodes - var ids = this.edgesData.getIds(); - this._addEdges(ids); - } + 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; + } + } + }, - this._reconnectEdges(); - }; + _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; + }, - /** - * Add edges - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._addEdges = function (ids) { - var edges = this.edges, - edgesData = this.edgesData; + 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'); + }, - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, - var oldEdge = edges[id]; - if (oldEdge) { - oldEdge.disconnect(); - } + _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; + }, - var data = edgesData.get(id, {"showInternalIds" : true}); - edges[id] = new Edge(data, this, this.constants); - } + _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' + }, - this.moving = true; - this._updateValueRange(edges); - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - }; + 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); + }, - /** - * 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]; + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, - 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; - } - } + ordinal : function (number) { + return this._ordinal.replace('%d', number); + }, + _ordinal : '%d', - this._createBezierNodes(); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this.moving = true; - this._updateValueRange(edges); - }; + preparse : function (string) { + return string; + }, - /** - * Remove existing edges. Non existing ids will be ignored - * @param {Number[] | String[]} ids - * @private - */ - Network.prototype._removeEdges = function (ids) { - var edges = this.edges; - for (var i = 0, len = ids.length; i < len; i++) { - var id = ids[i]; - var edge = edges[id]; - if (edge) { - if (edge.via != null) { - delete this.sectors['support']['nodes'][edge.via.id]; - } - edge.disconnect(); - delete edges[id]; - } - } + postformat : function (string) { + return string; + }, - this.moving = true; - this._updateValueRange(edges); - if (this.constants.hierarchicalLayout.enabled == true && this.initializing == false) { - this._resetLevels(); - this._setupHierarchicalLayout(); - } - this._updateCalculationNodes(); - }; + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, - /** - * Reconnect all edges - * @private - */ - Network.prototype._reconnectEdges = function() { - var id, - nodes = this.nodes, - edges = this.edges; - for (id in nodes) { - if (nodes.hasOwnProperty(id)) { - nodes[id].edges = []; - } - } + _week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + }, - for (id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.from = null; - edge.to = null; - edge.connect(); - } - } - }; + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); - /** - * Update the values of all object in the given array according to the current - * value range of the objects in the array. - * @param {Object} obj An object containing a set of Edges or Nodes - * The objects must have a method getValue() and - * setValueRange(min, max). - * @private - */ - Network.prototype._updateValueRange = function(obj) { - var id; + /************************************ + Formatting + ************************************/ - // 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); - } + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); } - } - }; - - /** - * 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(); - }; - /** - * 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); + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; - // set scaling and translation - ctx.save(); - ctx.translate(this.translation.x, this.translation.y); - ctx.scale(this.scale, this.scale); + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } - 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) - }; + 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(); + } - this._doInAllSectors("_drawAllSectorNodes",ctx); - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideEdgesOnDrag == false) { - this._doInAllSectors("_drawEdges",ctx); - } + format = expandFormat(format, m.localeData()); - if (this.drag.dragging == false || this.drag.dragging === undefined || this.constants.hideNodesOnDrag == false) { - this._doInAllSectors("_drawNodes",ctx,false); - } + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } - if (this.controlNodesActive == true) { - this._doInAllSectors("_drawControlNodes",ctx); - } + return formatFunctions[format](m); + } - // this._doInSupportSector("_drawNodes",ctx,true); - // this._drawTree(ctx,"#F00F0F"); + function expandFormat(format, locale) { + var i = 5; - // restore original scaling and translation - ctx.restore(); - }; + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } - /** - * 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 - }; - } + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } - if (offsetX !== undefined) { - this.translation.x = offsetX; - } - if (offsetY !== undefined) { - this.translation.y = offsetY; - } + return format; + } - this.emit('viewChanged'); - }; - /** - * Get the translation of the network - * @return {Object} translation An object with parameters x and y, both a number - * @private - */ - Network.prototype._getTranslation = function() { - return { - x: this.translation.x, - y: this.translation.y - }; - }; + /************************************ + Parsing + ************************************/ - /** - * Scale the network - * @param {Number} scale Scaling factor 1.0 is unscaled - * @private - */ - Network.prototype._setScale = function(scale) { - this.scale = scale; - }; - /** - * Get the current scale of the network - * @return {Number} scale Scaling factor 1.0 is unscaled - * @private - */ - Network.prototype._getScale = function() { - return this.scale; - }; + // 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; + } + } - /** - * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertDOMtoCanvas = function(x) { - return (x - this.translation.x) / this.scale; - }; + 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]); - /** - * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to - * the X coordinate in DOM-space (coordinate point in browser relative to the container div) - * @param {number} x - * @returns {number} - * @private - */ - Network.prototype._XconvertCanvasToDOM = function(x) { - return x * this.scale + this.translation.x; - }; + return parts[0] === '+' ? -minutes : minutes; + } - /** - * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to - * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) - * @param {number} y - * @returns {number} - * @private - */ - Network.prototype._YconvertDOMtoCanvas = function(y) { - return (y - this.translation.y) / this.scale; - }; + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; - /** - * 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 ; - }; + 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); + } + } - /** - * - * @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)}; - } + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; - /** - * - * @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)}; - } + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; - /** - * 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; - } + // 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; - // first draw the unselected nodes - var nodes = this.nodes; - var selected = []; + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); - 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); + 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); - // 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); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; } - } - }; - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Network.prototype._drawEdges = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - var edge = edges[id]; - edge.setScale(this.scale); - if (edge.connected) { - edges[id].draw(ctx); - } - } - } - }; + // 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; - /** - * Redraw all edges - * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); - * @param {CanvasRenderingContext2D} ctx - * @private - */ - Network.prototype._drawControlNodes = function(ctx) { - var edges = this.edges; - for (var id in edges) { - if (edges.hasOwnProperty(id)) { - edges[id]._drawControlNodes(ctx); - } - } - }; + if (config._d) { + return; + } + + currentDate = currentDateArray(config); - /** - * Find a stable position for all nodes - * @private - */ - Network.prototype._stabilize = function() { - if (this.constants.freezeForStabilization == true) { - this._freezeDefinedNodes(); - } + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } - // 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}); - }; + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); - /** - * When initializing and stabilizing, we can freeze nodes with a predefined position. This greatly speeds up stabilization - * because only the supportnodes for the smoothCurves have to settle. - * - * @private - */ - Network.prototype._freezeDefinedNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].x != null && nodes[id].y != null) { - nodes[id].fixedData.x = nodes[id].xFixed; - nodes[id].fixedData.y = nodes[id].yFixed; - nodes[id].xFixed = true; - nodes[id].yFixed = true; - } - } - } - }; + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } - /** - * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. - * - * @private - */ - Network.prototype._restoreFrozenNodes = function() { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id)) { - if (nodes[id].fixedData.x != null) { - nodes[id].xFixed = nodes[id].fixedData.x; - nodes[id].yFixed = nodes[id].fixedData.y; - } - } - } - }; + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + // 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]; + } - /** - * Check if any of the nodes is still moving - * @param {number} vmin the minimum velocity considered as 'moving' - * @return {boolean} true if moving, false if non of the nodes is moving - * @private - */ - Network.prototype._isMoving = function(vmin) { - var nodes = this.nodes; - for (var id in nodes) { - if (nodes.hasOwnProperty(id) && nodes[id].isMoving(vmin)) { - return true; + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual zone can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); + } } - } - return false; - }; + function dateFromObject(config) { + var normalizedInput; - /** - * /** - * Perform one discrete step for all nodes - * - * @private - */ - Network.prototype._discreteStepNodes = function(checkMovement) { - var interval = this.physicsDiscreteStepsize; - var nodes = this.nodes; - var nodeId; - var nodesPresent = false; + if (config._d) { + return; + } - 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; - } - } - } + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; - 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; + dateFromConfig(config); } - else { - this.moving = this._isMoving(vminCorrected); - if (this.moving == false) { - this.emit("stabilized",{iterations:null}); - } - this.moving = this.moving || this.configurePhysics; + 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()]; + } } - } - }; - /** - * A single simulation step (or "tick") in the physics simulation - * - * @private - */ - Network.prototype._physicsTick = function() { - if (!this.freezeSimulation) { - if (this.moving == true) { - this._doInAllActiveSectors("_initializeForceCalculation"); - this._doInAllActiveSectors("_discreteStepNodes"); - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._doInSupportSector("_discreteStepNodes", false); - } - this._findCenter(this._getRange()) - } - } - }; + // 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; - /** - * This function runs one step of the animation. It calls an x amount of physics ticks and one render tick. - * It reschedules itself at the beginning of the function - * - * @private - */ - Network.prototype._animationStep = function() { - // reset the timer so a new scheduled animation step can be set - this.timer = undefined; - // handle the keyboad movement - this._handleNavigation(); + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; - // this schedules a new animation step - this.start(); + 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); + } + } + + // 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; + } + + dateFromConfig(config); + checkOverflow(config); + } - // start the physics simulation - var calculationTime = Date.now(); - var maxSteps = 1; - this._physicsTick(); - var timeRequired = Date.now() - calculationTime; - while (timeRequired < 0.9*(this.renderTimestep - this.renderTime) && maxSteps < this.maxPhysicsTicksPerRender) { - this._physicsTick(); - timeRequired = Date.now() - calculationTime; - maxSteps++; - } - // start the rendering process - var renderTime = Date.now(); - this._redraw(); - this.renderTime = Date.now() - renderTime; + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); + } - }; + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } - if (typeof window !== 'undefined') { - window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || - window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; - } + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, - /** - * 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(); + scoreToBeat, + i, + currentScore; - 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; + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; } - } - - 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(); - } - }; + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); - /** - * 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); - } - }; + if (!isValid(tempConfig)) { + continue; + } + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; - /** - * Freeze the _animationStep - */ - Network.prototype.toggleFreeze = function() { - if (this.freezeSimulation == false) { - this.freezeSimulation = true; - } - else { - this.freezeSimulation = false; - this.start(); - } - }; + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; + tempConfig._pf.score = currentScore; - /** - * This function cleans the support nodes if they are not needed and adds them when they are. - * - * @param {boolean} [disableStart] - * @private - */ - Network.prototype._configureSmoothCurves = function(disableStart) { - if (disableStart === undefined) { - disableStart = true; - } - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._createBezierNodes(); - // cleanup unused support nodes - for (var nodeId in this.sectors['support']['nodes']) { - if (this.sectors['support']['nodes'].hasOwnProperty(nodeId)) { - if (this.edges[this.sectors['support']['nodes'][nodeId].parentEdgeId] === undefined) { - delete this.sectors['support']['nodes'][nodeId]; + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } } - } - } - } - else { - // delete the support nodes - this.sectors['support']['nodes'] = {}; - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - this.edges[edgeId].via = null; - } - } - } - - this._updateCalculationNodes(); - if (!disableStart) { - this.moving = true; - this.start(); - } - }; + extend(config, bestMoment || tempConfig); + } + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); - /** - * 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(); + 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; } - } } - } - }; - /** - * 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]; + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } } - } - }; - /** - * Load the XY positions of the nodes into the dataset. - */ - Network.prototype.storePosition = function() { - var dataArray = []; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - var allowedToMoveX = !this.nodes.xFixed; - var allowedToMoveY = !this.nodes.yFixed; - if (this.nodesData._data[nodeId].x != Math.round(node.x) || this.nodesData._data[nodeId].y != Math.round(node.y)) { - dataArray.push({id:nodeId,x:Math.round(node.x),y:Math.round(node.y),allowedToMoveX:allowedToMoveX,allowedToMoveY:allowedToMoveY}); - } + 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); + } } - } - this.nodesData.update(dataArray); - }; + 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); - /** - * Center a node in view. - * - * @param {Number} nodeId - * @param {Number} [zoomLevel] - */ - Network.prototype.focusOnNode = function (nodeId, zoomLevel) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (zoomLevel === undefined) { - zoomLevel = this._getScale(); + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; } - 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(); + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } - var distanceFromCenter = {x:canvasCenter.x - nodePosition.x, - y:canvasCenter.y - nodePosition.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; + } - this._setTranslation(translation.x + requiredScale * distanceFromCenter.x, - translation.y + requiredScale * distanceFromCenter.y); - this.redraw(); - } - else { - console.log("This nodeId cannot be found.") - } - }; + /************************************ + Relative Time + ************************************/ - /** - * Returns true when the Timeline is active. - * @returns {boolean} - */ - Network.prototype.isActive = function () { - return !this.activator || this.activator.active; - }; - module.exports = Network; + // 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); + } + 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')), -/***/ }, -/* 45 */ -/***/ 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 util = __webpack_require__(1); - var Node = __webpack_require__(46); + args[2] = withoutSuffix; + args[3] = +posNegDuration > 0; + args[4] = locale; + return substituteTimeAgo.apply({}, args); + } - /** - * @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']; + /************************************ + Week of Year + ************************************/ - this.network = network; - // 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; + // 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.from = null; // a node - this.to = null; // a node - this.via = null; // a temp node - // 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 = []; + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } - this.connected = false; + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } - this.widthFixed = false; - this.lengthFixed = false; + adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; + } - this.setProperties(properties); + //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; - this.controlNodesEnabled = false; - this.controlNodes = {from:null, to:null, positions:{}}; - this.connectedNode = null; - } + 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; - /** - * 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; - } + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; + } - var fields = ['style','fontSize','fontFace','fontColor','fontFill','width', - 'widthSelectionMultiplier','hoverWidth','arrowScaleFactor','dash' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + /************************************ + Top Level Functions + ************************************/ - if (properties.from !== undefined) {this.fromId = properties.from;} - if (properties.to !== undefined) {this.toId = properties.to;} + function makeMoment(config) { + var input = config._i, + format = config._f; - if (properties.id !== undefined) {this.id = properties.id;} - if (properties.label !== undefined) {this.label = properties.label;} + config._locale = config._locale || moment.localeData(config._l); - if (properties.title !== undefined) {this.title = properties.title;} - if (properties.value !== undefined) {this.value = properties.value;} - if (properties.length !== undefined) {this.physics.springLength = properties.length;} + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } - // scale the arrow - if (properties.arrowScaleFactor !== undefined) {this.options.arrowScaleFactor = properties.arrowScaleFactor;} + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } - if (properties.inheritColor !== undefined) {this.options.inheritColor = properties.inheritColor;} + if (moment.isMoment(input)) { + return new Moment(input, true); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } - 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;} + return new Moment(config); } - } - - // A node is connected when it has a from and to node. - this.connect(); - this.widthFixed = this.widthFixed || (properties.width !== undefined); - this.lengthFixed = this.lengthFixed || (properties.length !== undefined); + moment = function (input, format, locale, strict) { + var c; - this.widthSelected = this.options.width* this.options.widthSelectionMultiplier; + 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(); - // 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; - } - }; + return makeMoment(c); + }; - /** - * Connect an edge to its nodes - */ - Edge.prototype.connect = function () { - this.disconnect(); + moment.suppressDeprecationWarnings = false; - this.from = this.network.nodes[this.fromId] || null; - this.to = this.network.nodes[this.toId] || null; - this.connected = (this.from && this.to); + 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); + } + ); - 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); + // 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; } - } - }; - /** - * 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; - } + moment.min = function () { + var args = [].slice.call(arguments, 0); - this.connected = false; - }; + return pickBy('isBefore', args); + }; - /** - * 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; - }; + moment.max = function () { + var args = [].slice.call(arguments, 0); + return pickBy('isAfter', args); + }; - /** - * Retrieve the value of the edge. Can be undefined - * @return {Number} value - */ - Edge.prototype.getValue = function() { - return this.value; - }; + // creating with utc + moment.utc = function (input, format, locale, strict) { + var c; - /** - * 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; - } - }; + 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(); - /** - * 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"; - }; + return makeMoment(c).utc(); + }; - /** - * 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; + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; - var dist = this._getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso, + diffRes; - return (dist < distMax); - } - else { - return false - } - }; + 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)); - 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 - }; - } + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); - if (this.selected == true) {return colorObj.highlight;} - else if (this.hover == true) {return colorObj.hover;} - else {return colorObj.color;} - } + if (moment.isDuration(input) && input.hasOwnProperty('_locale')) { + ret._locale = input._locale; + } + return ret; + }; - /** - * 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(); + // version number + moment.version = VERSION; - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + // default format + moment.defaultFormat = isoFormat; - // 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); - } - }; + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; - /** - * 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; - } - } - }; + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; - Edge.prototype._getViaCoordinates = function () { - var xVia = null; - var yVia = null; - var factor = this.options.smoothCurves.roundness; - var type = this.options.smoothCurves.type; + // 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 () {}; - 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; + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function (threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; } - } - if (type == "discrete") { - yVia = dy < factor * dx ? this.from.y : yVia; - } - } - } - 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; - } - } - else if (type == 'horizontal') { - if (this.from.x < this.to.x) { - xVia = this.to.x - (1-factor) * dx; - } - else { - xVia = this.to.x + (1-factor) * dx; - } - yVia = this.from.y; - } - else if (type == 'vertical') { - xVia = this.from.x; - if (this.from.y < this.to.y) { - yVia = this.to.y - (1-factor) * dy; - } - else { - yVia = this.to.y + (1-factor) * dy; - } - } - else { // continuous - if (Math.abs(this.from.x - this.to.x) < Math.abs(this.from.y - this.to.y)) { - if (this.from.y > this.to.y) { - if (this.from.x < this.to.x) { - // console.log(1) - xVia = this.from.x + factor * dy; - yVia = this.from.y - factor * dy; - xVia = this.to.x < xVia ? this.to.x : xVia; + if (limit === undefined) { + return relativeTimeThresholds[threshold]; } - 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; + relativeTimeThresholds[threshold] = limit; + return true; + }; + + moment.lang = deprecate( + "moment.lang is deprecated. Use moment.locale instead.", + function (key, value) { + return moment.locale(key, value); } - } - 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; + ); + + // 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; + } } - 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; + + return moment._locale._abbr; + }; + + moment.defineLocale = function (name, values) { + if (values !== null) { + values.abbr = name; + if (!locales[name]) { + locales[name] = new Locale(); + } + locales[name].set(values); + + // backwards compat for now: also set the locale + moment.locale(name); + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; } - } - } - 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.langData = deprecate( + "moment.langData is deprecated. Use moment.localeData instead.", + function (key) { + return moment.localeData(key); } - 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; + ); + + // returns locale data + moment.localeData = function (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; } - } - 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; + + if (!key) { + return moment._locale; } - 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 (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; } - } - } - } + return chooseLocale(key); + }; - return {x:xVia, y:yVia}; - } + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && obj.hasOwnProperty('_isAMomentObject')); + }; - /** - * 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; + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; + + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); } - } - else { - ctx.lineTo(this.to.x, this.to.y); - ctx.stroke(); - return null; - } - }; - /** - * 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(); - }; + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; - /** - * 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; + 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 + ************************************/ + + + extend(moment.fn = Moment.prototype, { + + clone : function () { + return moment(this); + }, + + 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]'); + } + }, + + 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); + }, + + isDSTShifted : function () { + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } + + return false; + }, + + parsingFlags : function () { + return extend({}, this._pf); + }, + + invalidAt: function () { + return this._pf.overflow; + }, + + utc : function (keepLocalTime) { + return this.zone(0, keepLocalTime); + }, + + local : function (keepLocalTime) { + if (this._isUTC) { + this.zone(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.add(this._d.getTimezoneOffset(), 'm'); + } + } + return this; + }, + + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.localeData().postformat(output); + }, + + add : createAdder(1, 'add'), - ctx.fillRect(left, top, width, height); + subtract : createAdder(-1, 'subtract'), - // draw text - ctx.fillStyle = this.options.fontColor || "black"; - ctx.textAlign = "left"; - ctx.textBaseline = "top"; - ctx.fillText(text, left, top); - } - }; + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; - /** - * 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;} + units = normalizeUnits(units); - ctx.lineWidth = this._getLineWidth(); + 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); + }, - 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]; - } + from : function (time, withoutSuffix) { + return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + }, - // set dash settings for chrome or firefox - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash(pattern); - ctx.lineDashOffset = 0; + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, - } else { //Firefox - ctx.mozDash = pattern; - ctx.mozDashOffset = 0; - } + 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)); + }, - // draw the line - via = this._line(ctx); + isLeapYear : function () { + return isLeapYear(this.year()); + }, - // restore the dash settings. - if (typeof ctx.setLineDash !== 'undefined') { //Chrome - ctx.setLineDash([0]); - ctx.lineDashOffset = 0; + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, - } 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(); - } + 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; + } + }, - // 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); - } - }; + month : makeAccessor('Month', 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 - } - }; + 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 */ + } - /** - * 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) - } - }; + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } - /** - * 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(); + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } - if (this.from != this.to) { - // draw line - var via = this._line(ctx); + return this; + }, - 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); - } + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + }, - ctx.arrow(point.x, point.y, angle, length); - ctx.fill(); - ctx.stroke(); + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, - // 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); + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, - // 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(); + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + min: deprecate( + 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other < this ? this : other; + } + ), + max: deprecate( + 'moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other > this ? this : other; + } + ), + // 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; + }, - /** - * 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;} + zoneAbbr : function () { + return this._isUTC ? 'UTC' : ''; + }, - ctx.lineWidth = this._getLineWidth(); + zoneName : function () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + }, - 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); + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, - 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; + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } - 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(); - } + return (this.zone() - input) % 60 === 0; + }, - 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; + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, - 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; - } + 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'); + }, - 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(); + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, - // 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(); + 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'); + }, - // 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(); + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + }, - // 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(); + week : function (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + }, - // draw label - if (this.label) { - point = this._pointOnCircle(x, y, radius, 0.5); - this._label(ctx, this.label, point.x, point.y); - } - } - }; + 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'); + }, + 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); + }, - /** - * 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 = 0.25 * this.physics.springLength; - var node = this.from; - if (node.width > node.height) { - x = node.x + 0.5 * node.width; - y = node.y - radius; - } - else { - x = node.x + radius; - y = node.y - 0.5 * node.height; - } - dx = x - x3; - dy = y - y3; - return Math.abs(Math.sqrt(dx*dx + dy*dy) - radius); - } - }; + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, - 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; + weeksInYear : function () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, - if (u > 1) { - u = 1; - } - else if (u < 0) { - u = 0; - } + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, - var x = x1 + u * px, - y = y1 + u * py, - dx = x - x3, - dy = y - y3; + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, - //# 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 + // 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; + } + }, - return Math.sqrt(dx*dx + dy*dy); - } + 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; + } + } + ), - /** - * This allows the zoom level of the network to influence the rendering - * - * @param scale - */ - Edge.prototype.setScale = function(scale) { - this.networkScaleInv = 1.0/scale; - }; + localeData : function () { + return this._locale; + } + }); + function rawMonthSetter(mom, value) { + var dayOfMonth; - Edge.prototype.select = function() { - this.selected = true; - }; + // 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; + } + } - Edge.prototype.unselect = function() { - this.selected = false; - }; + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } - 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); - } - }; + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + } - /** - * 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); + 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); + } + }; + } + + 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; + + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; + + /************************************ + Duration Prototype + ************************************/ + + + function daysToYears (days) { + // 400 years have 146097 days (taking into account leap year rules) + return days * 400 / 146097; } - 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; + function yearsToDays (years) { + // years * 365 + absRound(years / 4) - + // absRound(years / 100) + absRound(years / 400); + return years * 146097 / 400; } - this.controlNodes.from.draw(ctx); - this.controlNodes.to.draw(ctx); - } - else { - this.controlNodes = {from:null, to:null, positions:{}}; - } - }; + extend(moment.duration.fn = Duration.prototype, { - /** - * Enable control nodes. - * @private - */ - Edge.prototype._enableControlNodes = function() { - this.controlNodesEnabled = true; - }; + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years = 0; - /** - * disable control nodes - * @private - */ - Edge.prototype._disableControlNodes = function() { - this.controlNodesEnabled = false; - }; + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; - /** - * 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)); + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; - 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; - } - }; + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; + hours = absRound(minutes / 60); + data.hours = hours % 24; - /** - * 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(); - } - }; + days += absRound(hours / 24); - /** - * 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; + // Accurately convert days to years, assume start from year 0. + years = absRound(daysToYears(days)); + days -= absRound(yearsToDays(years)); - 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(); - } + // 30 days to a month + // TODO (iskren): Use anchor date (like 1st Jan) to compute this. + months += absRound(days / 30); + days %= 30; - 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; + // 12 months -> 1 year + years += absRound(months / 12); + months %= 12; - 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; - } + data.days = days; + data.months = months; + data.years = years; + }, - return {from:{x:xFrom,y:yFrom},to:{x:xTo,y:yTo}}; - }; + abs : function () { + this._milliseconds = Math.abs(this._milliseconds); + this._days = Math.abs(this._days); + this._months = Math.abs(this._months); - module.exports = Edge; + 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); -/***/ }, -/* 46 */ -/***/ function(module, exports, __webpack_require__) { + return this; + }, - var util = __webpack_require__(1); + weeks : function () { + return absRound(this.days() / 7); + }, - /** - * @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; + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, - this.selected = false; - this.hover = false; + humanize : function (withSuffix) { + var output = relativeTime(this, !withSuffix, this.localeData()); - this.edges = []; // all edges connected to this node - this.dynamicEdges = []; - this.reroutedEdges = {}; + if (withSuffix) { + output = this.localeData().pastFuture(+this, output); + } - this.fontDrawThreshold = 3; + return this.localeData().postformat(output); + }, - // 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; + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; - this.imagelist = imagelist; - this.grouplist = grouplist; + this._bubble(); - // 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}; + return this; + }, + subtract : function (input, val) { + var dur = moment.duration(input, val); - this.setProperties(properties, constants); + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; - // 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; + this._bubble(); - // 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; - } + return this; + }, - /** - * (re)setting the clustering variables and objects - */ - Node.prototype.resetCluster = function() { - // clustering variables - this.formationScale = undefined; // this is used to determine when to open the cluster - this.clusterSize = 1; // this signifies the total amount of nodes in this cluster - this.containedNodes = {}; - this.containedEdges = {}; - this.clusterSessions = []; - }; + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, - /** - * Attach a edge to the node - * @param {Edge} edge - */ - Node.prototype.attachEdge = function(edge) { - if (this.edges.indexOf(edge) == -1) { - this.edges.push(edge); - } - if (this.dynamicEdges.indexOf(edge) == -1) { - this.dynamicEdges.push(edge); - } - this.dynamicEdgesLength = this.dynamicEdges.length; - }; + as : function (units) { + var days, months; + units = normalizeUnits(units); - /** - * Detach a edge from the node - * @param {Edge} edge - */ - Node.prototype.detachEdge = function(edge) { - var index = this.edges.indexOf(edge); - if (index != -1) { - this.edges.splice(index, 1); - this.dynamicEdges.splice(index, 1); - } - this.dynamicEdgesLength = this.dynamicEdges.length; - }; + 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); + } + } + }, + lang : moment.fn.lang, + locale : moment.fn.locale, - /** - * Set or overwrite properties for the node - * @param {Object} properties an object with properties - * @param {Object} constants and object with default, global properties - */ - Node.prototype.setProperties = function(properties, constants) { - if (!properties) { - return; - } + toIsoString : deprecate( + "toIsoString() is deprecated. Please use toISOString() instead " + + "(notice the capitals)", + function () { + return this.toISOString(); + } + ), - var fields = ['borderWidth','borderWidthSelected','shape','image','radius','fontColor', - 'fontSize','fontFace','group','mass' - ]; - util.selectiveDeepExtend(fields, this.options, properties); + 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); - 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;} + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } - // 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;} + 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' : ''); + }, - if (this.id === undefined) { - throw "Node must have an id"; - } + localeData : function () { + return this._locale; + } + }); - // 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]; - } + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; } - } + for (i in unitMillisecondFactors) { + if (unitMillisecondFactors.hasOwnProperty(i)) { + makeDurationGetter(i.toLowerCase()); + } + } - // individual shape properties - if (properties.radius !== undefined) {this.baseRadiusValue = this.options.radius;} - if (properties.color !== undefined) {this.options.color = util.parseColor(properties.color);} + 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'); + }; - if (this.options.image!== undefined && this.options.image!= "") { - if (this.imagelist) { - this.imageObj = this.imagelist.load(this.options.image); - } - else { - throw "No imagelist provided"; - } - } + /************************************ + Default Locale + ************************************/ - this.xFixed = this.xFixed || (properties.x !== undefined && !properties.allowedToMoveX); - this.yFixed = this.yFixed || (properties.y !== undefined && !properties.allowedToMoveY); - this.radiusFixed = this.radiusFixed || (properties.radius !== undefined); - if (this.options.shape == 'image') { - this.options.radiusMin = constants.nodes.widthMin; - this.options.radiusMax = constants.nodes.widthMax; - } + // 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 + ************************************/ - // 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(); - }; + 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; + } + } - /** - * select this node - */ - Node.prototype.select = function() { - this.selected = true; - this._reset(); - }; + // 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; + } - /** - * unselect this node - */ - Node.prototype.unselect = function() { - this.selected = false; - this._reset(); - }; + 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__(64)(module))) + +/***/ }, +/* 52 */ +/***/ 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'; /** - * Reset the calculated size of the node, forces it to recalculate its size + * @main + * @module hammer + * + * @class Hammer + * @static */ - Node.prototype.clearSizeCache = function() { - this._reset(); - }; /** - * Reset the calculated size of the node, forces it to recalculate its size - * @private + * Hammer, use this to create instances + * ```` + * var hammertime = new Hammer(myElement); + * ```` + * + * @method Hammer + * @param {HTMLElement} element + * @param {Object} [options={}] + * @return {Hammer.Instance} */ - Node.prototype._reset = function() { - this.width = undefined; - this.height = undefined; + var Hammer = function Hammer(element, options) { + return new Hammer.Instance(element, options || {}); }; /** - * get the title of this node. - * @return {string} title The title of the node, or undefined when no title - * has been set. + * version, as defined in package.json + * the value will be set at each build + * @property VERSION + * @final + * @type {String} */ - Node.prototype.getTitle = function() { - return typeof this.title === "function" ? this.title() : this.title; - }; + Hammer.VERSION = '1.1.3'; /** - * 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 + * 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} */ - Node.prototype.distanceToBorder = function (ctx, angle) { - var borderWidth = 1; - - if (!this.width) { - this.resize(ctx); - } + 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', - switch (this.options.shape) { - case 'circle': - case 'dot': - return this.options.radius+ borderWidth; + /** + * 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', - 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); + /** + * 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', - // TODO: implement distanceToBorder for database - // TODO: implement distanceToBorder for triangle - // TODO: implement distanceToBorder for triangleDown + /** + * Specifies whether zooming is enabled. Used by IE10> + * @property defaults.behavior.contentZooming + * @type {String} + * @default 'none' + */ + contentZooming: 'none', - 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; - } + /** + * 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', - } - // TODO: implement calculation of distance to border for all shapes + /** + * 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)' + } }; /** - * Set forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction + * hammer document where the base events are added at + * @property DOCUMENT + * @type {HTMLElement} + * @default window.document */ - Node.prototype._setForce = function(fx, fy) { - this.fx = fx; - this.fy = fy; - }; + Hammer.DOCUMENT = document; /** - * Add forces acting on the node - * @param {number} fx Force in horizontal direction - * @param {number} fy Force in vertical direction - * @private + * detect support for pointer events + * @property HAS_POINTEREVENTS + * @type {Boolean} */ - Node.prototype._addForce = function(fx, fy) { - this.fx += fx; - this.fy += fy; - }; + Hammer.HAS_POINTEREVENTS = navigator.pointerEnabled || navigator.msPointerEnabled; /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds + * detect support for touch events + * @property HAS_TOUCHEVENTS + * @type {Boolean} */ - 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 - } - - 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 - } - }; - + Hammer.HAS_TOUCHEVENTS = ('ontouchstart' in window); + /** + * detect mobile browsers + * @property IS_MOBILE + * @type {Boolean} + */ + Hammer.IS_MOBILE = /mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent); /** - * Perform one discrete step for the node - * @param {number} interval Time interval in seconds - * @param {number} maxVelocity The speed limit imposed on the velocity + * detect if we want to support mouseevents at all + * @property NO_MOUSEEVENTS + * @type {Boolean} */ - 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; - } + Hammer.NO_MOUSEEVENTS = (Hammer.HAS_TOUCHEVENTS && Hammer.IS_MOBILE) || Hammer.HAS_POINTEREVENTS; - 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; - } - }; + /** + * interval in which Hammer recalculates current velocity/direction/angle in ms + * @property CALCULATE_INTERVAL + * @type {Number} + * @default 25 + */ + Hammer.CALCULATE_INTERVAL = 25; /** - * Check if this node has a fixed x and y position - * @return {boolean} true if fixed, false if not + * 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} */ - Node.prototype.isFixed = function() { - return (this.xFixed && this.yFixed); - }; + var EVENT_TYPES = {}; /** - * 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 + * direction strings, for safe comparisons + * @property DIRECTION_DOWN|LEFT|UP|RIGHT + * @final + * @type {String} + * @default 'down' 'left' 'up' 'right' */ - 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); - }; + 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'; /** - * check if this node is selecte - * @return {boolean} selected True if node is selected, else false + * pointertype strings, for safe comparisons + * @property POINTER_MOUSE|TOUCH|PEN + * @final + * @type {String} + * @default 'mouse' 'touch' 'pen' */ - Node.prototype.isSelected = function() { - return this.selected; - }; + var POINTER_MOUSE = Hammer.POINTER_MOUSE = 'mouse'; + var POINTER_TOUCH = Hammer.POINTER_TOUCH = 'touch'; + var POINTER_PEN = Hammer.POINTER_PEN = 'pen'; /** - * Retrieve the value of the node. Can be undefined - * @return {Number} value + * eventtypes + * @property EVENT_START|MOVE|END|RELEASE|TOUCH + * @final + * @type {String} + * @default 'start' 'change' 'move' 'end' 'release' 'touch' */ - Node.prototype.getValue = function() { - return this.value; - }; + 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'; /** - * Calculate the distance from the nodes location to the given location (x,y) - * @param {Number} x - * @param {Number} y - * @return {Number} value + * if the window events are set... + * @property READY + * @writeOnce + * @type {Boolean} + * @default false */ - Node.prototype.getDistance = function(x, y) { - var dx = this.x - x, - dy = this.y - y; - return Math.sqrt(dx * dx + dy * dy); - }; + Hammer.READY = false; + /** + * plugins namespace + * @property plugins + * @type {Object} + */ + Hammer.plugins = Hammer.plugins || {}; /** - * Adjust the value range of the node. The node will adjust it's radius - * based on its value. - * @param {Number} min - * @param {Number} max + * gestures namespace + * see `/gestures` for the definitions + * @property gestures + * @type {Object} */ - 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; - }; + Hammer.gestures = Hammer.gestures || {}; /** - * Draw this node in the given canvas - * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); - * @param {CanvasRenderingContext2D} ctx + * setup events to detect gestures on the document + * this function is called when creating an new instance + * @private */ - Node.prototype.draw = function(ctx) { - throw "Draw method not initialized for node"; - }; + function setup() { + if(Hammer.READY) { + return; + } + + // find what eventtypes we add listeners to + Event.determineEventTypes(); + + // Register all gestures inside Hammer.gestures + Utils.each(Hammer.gestures, function(gesture) { + Detection.register(gesture); + }); + + // Add touch events on the document + Event.onTouch(Hammer.DOCUMENT, EVENT_MOVE, Detection.detect); + Event.onTouch(Hammer.DOCUMENT, EVENT_END, Detection.detect); + + // Hammer is ready...! + Hammer.READY = true; + } /** - * 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 + * @module hammer + * + * @class Utils + * @static */ - Node.prototype.resize = function(ctx) { - throw "Resize method not initialized for node"; - }; + 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); + }, + + /** + * 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); + }, + + /** + * forEach over arrays and objects + * @method each + * @param {Object|Array} obj + * @param {Function} iterator + * @param {any} iterator.item + * @param {Number} iterator.index + * @param {Object|Array} iterator.obj the source object + * @param {Object} context value to use as `this` in the iterator + */ + each: function each(obj, iterator, context) { + var i, len; + + // native forEach on arrays + if('forEach' in obj) { + obj.forEach(iterator, context); + // arrays + } else if(obj.length !== undefined) { + for(i = 0, len = obj.length; i < len; i++) { + if(iterator.call(context, obj[i], i, obj) === false) { + return; + } + } + // objects + } else { + for(i in obj) { + if(obj.hasOwnProperty(i) && + iterator.call(context, obj[i], i, obj) === false) { + return; + } + } + } + }, + + /** + * 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; + }, + + /** + * 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; + } + }, - /** - * 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); - }; + /** + * 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); + }, - Node.prototype._resizeImage = function (ctx) { - // TODO: pre calculate the image size + /** + * 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; + }, - 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; + /** + * 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; - 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; - } - } + // 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); + }); - Node.prototype._drawImage = function (ctx) { - this._resizeImage(ctx); + 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 + }; + }, - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * 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 + }; + }, - 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); + /** + * 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; - ctx.globalAlpha = 0.5; - ctx.drawImage(this.imageObj, this.left - lineWidth, this.top - lineWidth, this.width + 2*lineWidth, this.height + 2*lineWidth); - } + return Math.atan2(y, x) * 180 / Math.PI; + }, - // 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; - } + /** + * 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._label(ctx, this.label, this.x, yLabel, undefined, "top"); - }; + if(x >= y) { + return touch1.clientX - touch2.clientX > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return touch1.clientY - touch2.clientY > 0 ? DIRECTION_UP : DIRECTION_DOWN; + }, + /** + * 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; - 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; + return Math.sqrt((x * x) + (y * y)); + }, - 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; + /** + * 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; + }, - Node.prototype._drawBox = function (ctx) { - this._resizeBox(ctx); + /** + * 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; + }, - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 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); - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + 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); + } - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // test the style + if(p in element.style) { + element.style[p] = (toggle == null || toggle) && value || ''; + 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); + /** + * 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; + } - 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); + // set the css properties + Utils.each(props, function(value, prop) { + Utils.setPrefixedCss(element, prop, value, toggle); + }); - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.options.color.background; + var falseFn = toggle && function() { + return false; + }; - ctx.roundRect(this.left, this.top, this.width, this.height, this.options.radius); - ctx.fill(); - ctx.stroke(); + // also the disable onselectstart + if(props.userSelect == 'none') { + element.onselectstart = falseFn; + } + // and disable ondragstart + if(props.userDrag == 'none') { + element.ondragstart = falseFn; + } + }, - this._label(ctx, this.label, this.x, this.y); + /** + * 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(); + }); + } }; - 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 hammer + */ + /** + * @class Event + * @static + */ + var Event = Hammer.event = { + /** + * when touch events have been fired, this is true + * this is used to stop mouse events + * @property prevent_mouseevents + * @private + * @type {Boolean} + */ + preventMouseEvents: false, - // scaling used for clustering - this.width += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeWidthFactor; - this.height += Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeHeightFactor; - this.options.radius+= Math.min(this.clusterSize - 1, this.maxNodeSizeIncrements) * this.clusterSizeRadiusFactor; - this.growthIndicator = this.width - size; - } - }; + /** + * if EVENT_START has been fired + * @property started + * @private + * @type {Boolean} + */ + started: false, - Node.prototype._drawDatabase = function (ctx) { - this._resizeDatabase(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * when the mouse is hold down, this is true + * @property should_detect + * @private + * @type {Boolean} + */ + shouldDetect: false, - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + /** + * 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); + }); + }, - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + /** + * 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); + }); + }, - // 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); + /** + * 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; - ctx.database(this.x - this.width/2 - 2*ctx.lineWidth, this.y - this.height*0.5 - 2*ctx.lineWidth, this.width + 4*ctx.lineWidth, this.height + 4*ctx.lineWidth); - ctx.stroke(); - } - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + var onTouchHandler = function onTouchHandler(ev) { + var srcType = ev.type.toLowerCase(), + isPointer = Hammer.HAS_POINTEREVENTS, + isMouse = Utils.inStr(srcType, 'mouse'), + triggerType; - 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(); + // 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; - this._label(ctx, this.label, this.x, this.y); - }; + // 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; + } + // update the pointer event before entering the detection + if(isPointer && eventType != EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } - 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 in a touch/down state, so allowed detection of gestures + if(self.shouldDetect) { + triggerType = self.doDetect.call(self, ev, eventType, element, handler); + } - this.width = diameter; - this.height = diameter; + // ...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 + } - // 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; - } - }; + if(isPointer && eventType == EVENT_END) { + PointerEvent.updatePointer(eventType, ev); + } + }; - Node.prototype._drawCircle = function (ctx) { - this._resizeCircle(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + this.on(element, EVENT_TYPES[eventType], onTouchHandler); + return onTouchHandler; + }, - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + /** + * 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; - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // 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; - // 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); + // keep track of how many touches have been removed + changedLength = touchList.length - ((ev.changedTouches) ? ev.changedTouches.length : 1); + } - 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); + // 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; + } - 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(); + // detection has been started, we keep track of this, see above + this.started = true; - this._label(ctx, this.label, this.x, this.y); - }; + // generate some event data, some basic information + var evData = this.collectEventData(element, triggerType, touchList, ev); - Node.prototype._resizeEllipse = function (ctx) { - if (!this.width) { - var textSize = this.getTextSize(ctx); + // 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.width = textSize.width * 1.5; - this.height = textSize.height * 2; - if (this.width < this.height) { - this.width = this.height; - } - var defaultSize = this.width; + // trigger a change (TOUCH, RELEASE) event, this means the length of the touches changed + if(triggerChange) { + evData.changedLength = changedLength; + evData.eventType = triggerChange; - // 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; - } - }; + handler.call(Detection, evData); - Node.prototype._drawEllipse = function (ctx) { - this._resizeEllipse(ctx); - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + evData.eventType = triggerType; + delete evData.changedLength; + } - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + // trigger the END event + if(triggerType == EVENT_END) { + handler.call(Detection, evData); - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; + // ...and we are done with the detection + // so reset everything to start each detection totally fresh + this.started = false; + } - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + return triggerType; + }, - 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); + /** + * 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' + ]; + } - ctx.fillStyle = this.selected ? this.options.color.highlight.background : this.hover ? this.options.color.hover.background : this.options.color.background; + EVENT_TYPES[EVENT_START] = types[0]; + EVENT_TYPES[EVENT_MOVE] = types[1]; + EVENT_TYPES[EVENT_END] = types[2]; + return EVENT_TYPES; + }, - ctx.ellipse(this.left, this.top, this.width, this.height); - ctx.fill(); - ctx.stroke(); - this._label(ctx, this.label, this.x, this.y); - }; + /** + * 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(); + } - Node.prototype._drawDot = function (ctx) { - this._drawShape(ctx, 'circle'); - }; + // get the touchlist + if(ev.touches) { + if(eventType == EVENT_MOVE) { + return ev.touches; + } - Node.prototype._drawTriangle = function (ctx) { - this._drawShape(ctx, 'triangle'); - }; + var identifiers = []; + var concat = [].concat(Utils.toArray(ev.touches), Utils.toArray(ev.changedTouches)); + var touchList = []; - Node.prototype._drawTriangleDown = function (ctx) { - this._drawShape(ctx, 'triangleDown'); - }; + Utils.each(concat, function(touch) { + if(Utils.inArray(identifiers, touch.identifier) === false) { + touchList.push(touch); + } + identifiers.push(touch.identifier); + }); - Node.prototype._drawSquare = function (ctx) { - this._drawShape(ctx, 'square'); - }; + return touchList; + } - Node.prototype._drawStar = function (ctx) { - this._drawShape(ctx, 'star'); - }; + // make fake touchList from mouse position + ev.identifier = 1; + return [ev]; + }, - 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; + /** + * 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; + } - // 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; - } - }; + return { + center: Utils.getCenter(touches), + timeStamp: Date.now(), + target: ev.target, + touches: touches, + eventType: eventType, + pointerType: pointerType, + srcEvent: ev, - Node.prototype._drawShape = function (ctx, shape) { - this._resizeShape(ctx); + /** + * 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(); + }, - this.left = this.x - this.width / 2; - this.top = this.y - this.height / 2; + /** + * stop bubbling the event up to its parents + */ + stopPropagation: function() { + this.srcEvent.stopPropagation(); + }, - var clusterLineWidth = 2.5; - var borderWidth = this.options.borderWidth; - var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; - var radiusMultiplier = 2; + /** + * immediately stop gesture detection + * might be useful after a swipe was detected + * @return {*} + */ + stopDetect: function() { + return Detection.stopDetect(); + } + }; + } + }; - // 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; - } - ctx.strokeStyle = this.selected ? this.options.color.highlight.border : this.hover ? this.options.color.hover.border : this.options.color.border; - // draw the outer border - if (this.clusterSize > 1) { - ctx.lineWidth = (this.selected ? selectionLineWidth : borderWidth) + ((this.clusterSize > 1) ? clusterLineWidth : 0.0); - ctx.lineWidth *= this.networkScaleInv; - ctx.lineWidth = Math.min(this.width,ctx.lineWidth); + /** + * @module hammer + * + * @class PointerEvent + * @static + */ + var PointerEvent = Hammer.PointerEvent = { + /** + * holds all pointers, by `identifier` + * @property pointers + * @type {Object} + */ + pointers: {}, - 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); + /** + * 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; + }, - 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(); + /** + * 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; + } + }, - if (this.label) { - this._label(ctx, this.label, this.x, this.y + this.height / 2, undefined, 'top',true); - } - }; + /** + * 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; + } - 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; + var pt = ev.pointerType, + types = {}; - // 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); - } + 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]; + }, + + /** + * reset the stored pointers + * @method reset + */ + reset: function resetList() { + this.pointers = {}; + } }; - 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); - }; + /** + * @module hammer + * + * @class Detection + * @static + */ + var Detection = Hammer.detection = { + // contains all registred Hammer.gestures in the correct order + gestures: [], + // data of the current Hammer.gesture detection session + current: null, - 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"; + // the previous Hammer.gesture session data + // is a full clone of the previous gesture.current object + previous: null, - 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); - } + // when this becomes true, no gestures are fired + stopped: false, - for (var i = 0; i < lineCount; i++) { - ctx.fillText(lines[i], x, yLine); - yLine += fontSize; - } - } - }; + /** + * start Hammer.gesture detection + * @method startDetect + * @param {Hammer.Instance} inst + * @param {Object} eventData + */ + startDetect: function startDetect(inst, eventData) { + // already busy with a Hammer.gesture detection on an element + if(this.current) { + return; + } + this.stopped = false; - Node.prototype.getTextSize = function(ctx) { - if (this.label !== undefined) { - ctx.font = (this.selected ? "bold " : "") + this.options.fontSize + "px " + this.options.fontFace; + // 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 + }; - var lines = this.label.split('\n'), - height = (Number(this.options.fontSize) + 4) * lines.length, - width = 0; + this.detect(eventData); + }, - for (var i = 0, iMax = lines.length; i < iMax; i++) { - width = Math.max(width, ctx.measureText(lines[i]).width); - } + /** + * Hammer.gesture detection + * @method detect + * @param {Object} eventData + * @return {any} + */ + detect: function detect(eventData) { + if(!this.current || this.stopped) { + return; + } - return {"width": width, "height": height}; - } - else { - return {"width": 0, "height": 0}; - } - }; + // extend event data with calculations about scale, distance etc + eventData = this.extendEventData(eventData); - /** - * 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; - } - }; + // hammer instance and instance options + var inst = this.current.inst, + instOptions = inst.options; - /** - * 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); - }; + // call Hammer.gesture handlers + Utils.each(this.gestures, function triggerGesture(gesture) { + // only when the instance options have enabled this gesture + if(!this.stopped && inst.enabled && instOptions[gesture.name]) { + gesture.handler.call(gesture, eventData, inst); + } + }, this); - /** - * This 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; - }; + // store as previous event event + if(this.current) { + this.current.lastEvent = eventData; + } + if(eventData.eventType == EVENT_END) { + this.stopDetect(); + } - /** - * 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; - }; + 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; + }, - /** - * 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; - }; + /** + * 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; + } - /** - * 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); - }; + if(ev.eventType == EVENT_TOUCH || ev.eventType == EVENT_RELEASE) { + cur.futureCalcEvent = ev; + } - module.exports = Node; + 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); + cur.lastCalcEvent = cur.futureCalcEvent || ev; + cur.futureCalcEvent = ev; + } -/***/ }, -/* 47 */ -/***/ function(module, exports, __webpack_require__) { + ev.velocityX = calcData.velocity.x; + ev.velocityY = calcData.velocity.y; + ev.interimAngle = calcData.angle; + ev.interimDirection = calcData.direction; + }, - var util = __webpack_require__(1); + /** + * 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; - /** - * @class Groups - * This class can store groups and properties specific for groups. - */ - function Groups() { - this.clear(); - this.defaultIndex = 0; - } + // 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; - /** - * default constants for group colors - */ - Groups.DEFAULT = [ - {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // blue - {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // yellow - {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // red - {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // green - {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // magenta - {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // purple - {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // orange - {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // darkblue - {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // pink - {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}} // mint - ]; + this.getCalculatedData(ev, lastEv.center, deltaTime, deltaX, deltaY); + Utils.extend(ev, { + startEvent: startEv, - /** - * 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; - } - }; + 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) + }); - /** - * 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; - } + return ev; + }, - return group; - }; + /** + * 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; + } - /** - * 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; - }; + // extend Hammer default options with the Hammer.gesture options + Utils.extend(Hammer.defaults, options, true); - module.exports = Groups; + // set its index + gesture.index = gesture.index || 1000; + // add Hammer.gesture to the list + this.gestures.push(gesture); -/***/ }, -/* 48 */ -/***/ function(module, exports, __webpack_require__) { + // 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; + }); - /** - * @class Images - * This class loads images and keeps them stored. - */ - function Images() { - this.images = {}; + return this.gestures; + } + }; - this.callback = undefined; - } /** - * Set an onload callback function. This will be called each time an image - * is loaded - * @param {function} callback + * @module hammer */ - Images.prototype.setOnloadCallback = function(callback) { - this.callback = callback; - }; /** + * create new hammer instance + * all methods should return the instance itself, so it is chainable. * - * @param {string} url Url of the image - * @return {Image} img The image object + * @class Instance + * @constructor + * @param {HTMLElement} element + * @param {Object} [options={}] options are merged with `Hammer.defaults` + * @return {Hammer.Instance} */ - 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; - } + Hammer.Instance = function(element, options) { + var self = this; - return img; - }; + // setup HammerJS window events and register all gestures + // this also sets up the default options + setup(); - module.exports = Images; + /** + * @property element + * @type {HTMLElement} + */ + this.element = element; + /** + * @property enabled + * @type {Boolean} + * @protected + */ + this.enabled = true; -/***/ }, -/* 49 */ -/***/ function(module, exports, __webpack_require__) { + /** + * 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; + }); - /** - * Popup is a class to create a popup window with some text - * @param {Element} container The container object. - * @param {Number} [x] - * @param {Number} [y] - * @param {String} [text] - * @param {Object} [style] An object containing borderColor, - * backgroundColor, etc. - */ - function Popup(container, x, y, text, style) { - if (container) { - this.container = container; - } - else { - this.container = document.body; - } + this.options = Utils.extend(Utils.extend({}, Hammer.defaults), options || {}); - // 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' - } - } + // add some css to the element to prevent the browser from doing its native behavoir + if(this.options.behavior) { + Utils.toggleBehavior(this.element, this.options.behavior, true); } - } - - this.x = 0; - this.y = 0; - this.padding = 5; - - if (x !== undefined && y !== undefined ) { - this.setPosition(x, y); - } - if (text !== undefined) { - this.setText(text); - } - // create the frame - this.frame = document.createElement("div"); - var styleAttr = this.frame.style; - styleAttr.position = "absolute"; - styleAttr.visibility = "hidden"; - styleAttr.border = "1px solid " + style.color.border; - styleAttr.color = style.fontColor; - styleAttr.fontSize = style.fontSize + "px"; - styleAttr.fontFamily = style.fontFace; - styleAttr.padding = this.padding + "px"; - styleAttr.backgroundColor = style.color.background; - styleAttr.borderRadius = "3px"; - styleAttr.MozBorderRadius = "3px"; - styleAttr.WebkitBorderRadius = "3px"; - styleAttr.boxShadow = "3px 3px 10px rgba(128, 128, 128, 0.5)"; - styleAttr.whiteSpace = "nowrap"; - this.container.appendChild(this.frame); - } + /** + * 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); + } + }); - /** - * @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); + /** + * keep a list of user event handlers which needs to be removed when calling 'dispose' + * @property eventHandlers + * @type {Array} + */ + this.eventHandlers = []; }; - /** - * Set the text for the popup window. This can be HTML code - * @param {string} text - */ - Popup.prototype.setText = function(text) { - this.frame.innerHTML = text; - }; + 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; + }, - /** - * Show the popup window - * @param {boolean} show Optional. Show or hide the window - */ - Popup.prototype.show = function (show) { - if (show === undefined) { - show = true; - } + /** + * unbind events to the instance + * @method off + * @chainable + * @param {String} gestures + * @param {Function} handler + */ + off: function offEvent(gestures, handler) { + var self = this; - if (show) { - var height = this.frame.clientHeight; - var width = this.frame.clientWidth; - var maxHeight = this.frame.parentNode.clientHeight; - var maxWidth = this.frame.parentNode.clientWidth; + 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; + }, - var top = (this.y - height); - if (top + height + this.padding > maxHeight) { - top = maxHeight - height - this.padding; - } - if (top < this.padding) { - top = this.padding; - } + /** + * trigger gesture event + * @method trigger + * @chainable + * @param {String} gesture + * @param {Object} [eventData] + */ + trigger: function triggerEvent(gesture, eventData) { + // optional + if(!eventData) { + eventData = {}; + } - var left = this.x; - if (left + width + this.padding > maxWidth) { - left = maxWidth - width - this.padding; - } - if (left < this.padding) { - left = this.padding; - } + // create DOM event + var event = Hammer.DOCUMENT.createEvent('Event'); + event.initEvent(gesture, true, true); + event.gesture = eventData; - this.frame.style.left = left + "px"; - this.frame.style.top = top + "px"; - this.frame.style.visibility = "visible"; - } - else { - this.hide(); - } - }; + // 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; + } - /** - * Hide the popup window - */ - Popup.prototype.hide = function () { - this.frame.style.visibility = "hidden"; - }; + element.dispatchEvent(event); + return this; + }, - module.exports = Popup; + /** + * 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; -/***/ }, -/* 50 */ -/***/ function(module, exports, __webpack_require__) { + // undo all changes made by stop_browser_behavior + Utils.toggleBehavior(this.element, this.options.behavior, false); - /** - * 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(); - } + // unbind all custom event handlers + for(i = -1; (eh = this.eventHandlers[++i]);) { + Utils.off(this.element, eh.gesture, eh.handler); + } - // token types enumeration - var TOKENTYPE = { - NULL : 0, - DELIMITER : 1, - IDENTIFIER: 2, - UNKNOWN : 3 - }; + this.eventHandlers = []; - // map with all delimiters - var DELIMITERS = { - '{': true, - '}': true, - '[': true, - ']': true, - ';': true, - '=': true, - ',': true, + // unbind the start event listener + Event.off(this.element, EVENT_TYPES[EVENT_START], this.eventStartHandler); - '->': true, - '--': true + return 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 /** - * 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. + * @module gestures */ - function first() { - index = 0; - c = dot.charAt(0); - } - /** - * 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. + * 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 */ - function next() { - index++; - c = dot.charAt(index); - } - /** - * Preview the next character from the dot file. - * @return {String} cNext + * @event drag + * @param {Object} ev */ - function nextPreview() { - return dot.charAt(index + 1); - } - /** - * Test whether given character is alphabetic or numeric - * @param {String} c - * @return {Boolean} isAlphaNumeric + * @event dragstart + * @param {Object} ev */ - var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; - function isAlphaNumeric(c) { - return regexAlphaNumeric.test(c); - } - /** - * Merge all properties of object b into object b - * @param {Object} a - * @param {Object} b - * @return {Object} a + * @event dragend + * @param {Object} ev */ - function merge (a, b) { - if (!a) { - a = {}; - } - - if (b) { - for (var name in b) { - if (b.hasOwnProperty(name)) { - a[name] = b[name]; - } - } - } - 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 + * @event drapleft + * @param {Object} ev + */ + /** + * @event dragright + * @param {Object} ev + */ + /** + * @event dragup + * @param {Object} ev + */ + /** + * @event dragdown + * @param {Object} ev */ - 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 + * @param {String} name */ - function addNode(graph, node) { - var i, len; - var current = null; + (function(name) { + var triggered = 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; - } + function dragGesture(ev, inst) { + var cur = Detection.current; - // 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; - } - } - } + // max touches + if(inst.options.dragMaxTouches > 0 && + ev.touches.length > inst.options.dragMaxTouches) { + return; + } - if (!current) { - // this is a new node - current = { - id: node.id - }; - if (graph.node) { - // clone default attributes - current.attr = merge(current.attr, graph.node); - } - } + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - // add node to this (sub)graph and all its parent graphs - for (i = graphs.length - 1; i >= 0; i--) { - var g = graphs[i]; + 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; + } - if (!g.nodes) { - g.nodes = []; - } - if (g.nodes.indexOf(current) == -1) { - g.nodes.push(current); - } - } + 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; - // merge attributes - if (node.attr) { - current.attr = merge(current.attr, node.attr); - } - } + // recalculate event data using new start point + ev = Detection.extendEventData(ev); + } + } - /** - * 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 - } - } + // lock drag to axis? + if(cur.lastEvent.dragLockToAxis || + ( inst.options.dragLockToAxis && + inst.options.dragLockMinDistance <= ev.distance + )) { + ev.dragLockToAxis = true; + } - /** - * 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 - }; + // 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; + } + } - if (graph.edge) { - edge.attr = merge({}, graph.edge); // clone default attributes - } - edge.attr = merge(edge.attr || {}, attr); // merge attributes + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } - return edge; - } + // trigger events + inst.trigger(name, ev); + inst.trigger(name + ev.direction, ev); - /** - * 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 = ''; + var isVertical = Utils.isVertical(ev.direction); - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); - } + // block the browser events + if((inst.options.dragBlockVertical && isVertical) || + (inst.options.dragBlockHorizontal && !isVertical)) { + ev.preventDefault(); + } + break; - do { - var isComment = false; + case EVENT_RELEASE: + if(triggered && ev.changedLength <= inst.options.dragMaxTouches) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; - // 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(); + case EVENT_END: + triggered = false; + break; } - } - isComment = true; - } - - // skip over whitespaces - while (c == ' ' || c == '\t' || c == '\n' || c == '\r') { // space, tab, enter - next(); } - } - while (isComment); - // check for end of dot file - if (c == '') { - // token is still empty - tokenType = TOKENTYPE.DELIMITER; - return; - } + 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 for delimiters consisting of 2 characters - var c2 = c + nextPreview(); - if (DELIMITERS[c2]) { - tokenType = TOKENTYPE.DELIMITER; - token = c2; - next(); - next(); - return; - } + /** + * 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, - // check for delimiters consisting of 1 character - if (DELIMITERS[c]) { - tokenType = TOKENTYPE.DELIMITER; - token = c; - next(); - return; - } + /** + * set 0 for unlimited, but this can conflict with transform + * @property dragMaxTouches + * @type {Number} + * @default 1 + */ + dragMaxTouches: 1, - // 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(); + /** + * 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, - 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; - } + /** + * same as `dragBlockHorizontal`, but for vertical movement + * @property dragBlockVertical + * @type {Boolean} + * @default false + */ + dragBlockVertical: false, - // check for a string enclosed by double quotes - if (c == '"') { - next(); - while (c != '' && (c != '"' || (c == '"' && nextPreview() == '"'))) { - token += c; - if (c == '"') { // skip the escape character - next(); - } - next(); - } - if (c != '"') { - throw newSyntaxError('End of string " expected'); - } - next(); - tokenType = TOKENTYPE.IDENTIFIER; - return; - } + /** + * 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, - // 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) + '"'); - } + /** + * 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'); /** - * Parse a graph. - * @returns {Object} graph + * @module gestures */ - function parseGraph() { - var graph = {}; + /** + * 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); + } + }; - first(); - getToken(); + /** + * @module gestures + */ + /** + * Touch stays at the same place for x time + * + * @class Hold + * @static + */ + /** + * @event hold + * @param {Object} ev + */ - // optional strict keyword - if (token == 'strict') { - graph.strict = true; - getToken(); - } + /** + * @param {String} name + */ + (function(name) { + var timer; - // graph or digraph keyword - if (token == 'graph' || token == 'digraph') { - graph.type = token; - getToken(); - } + function holdGesture(ev, inst) { + var options = inst.options, + current = Detection.current; - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - graph.id = token; - getToken(); - } + switch(ev.eventType) { + case EVENT_START: + clearTimeout(timer); - // open angle bracket - if (token != '{') { - throw newSyntaxError('Angle bracket { expected'); - } - getToken(); + // set the gesture so we can check in the timeout if it still is + current.name = name; - // statements - parseStatements(graph); + // 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; - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + case EVENT_MOVE: + if(ev.distance > options.holdThreshold) { + clearTimeout(timer); + } + break; - // end of file - if (token !== '') { - throw newSyntaxError('End of file expected'); - } - getToken(); + case EVENT_RELEASE: + clearTimeout(timer); + break; + } + } - // remove temporary default properties - delete graph.node; - delete graph.edge; - delete graph.graph; + Hammer.gestures.Hold = { + name: name, + index: 10, + defaults: { + /** + * @property holdTimeout + * @type {Number} + * @default 500 + */ + holdTimeout: 500, - return graph; - } + /** + * movement allowed while holding + * @property holdThreshold + * @type {Number} + * @default 2 + */ + holdThreshold: 2 + }, + handler: holdGesture + }; + })('hold'); /** - * Parse a list with statements. - * @param {Object} graph + * @module gestures */ - function parseStatements (graph) { - while (token !== '' && token != '}') { - parseStatement(graph); - if (token == ';') { - getToken(); - } - } - } - /** - * 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 + * when a touch is being released from the page + * + * @class Release + * @static */ - function parseStatement(graph) { - // parse subgraph - var subgraph = parseSubgraph(graph); - if (subgraph) { - // edge statements - parseEdge(graph, subgraph); - - return; - } - - // parse an attribute statement - var attr = parseAttributeStatement(graph); - if (attr) { - return; - } - - // parse node - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); - } - var id = token; // id can be a string or a number - getToken(); - - if (token == '=') { - // id statement - getToken(); - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Identifier expected'); + /** + * @event release + * @param {Object} ev + */ + Hammer.gestures.Release = { + name: 'release', + index: Infinity, + handler: function releaseGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + inst.trigger(this.name, ev); + } } - 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 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 */ - function parseSubgraph (graph) { - var subgraph = null; - - // optional subgraph keyword - if (token == 'subgraph') { - subgraph = {}; - subgraph.type = 'subgraph'; - getToken(); - - // optional graph id - if (tokenType == TOKENTYPE.IDENTIFIER) { - subgraph.id = token; - getToken(); - } - } + Hammer.gestures.Swipe = { + name: 'swipe', + index: 40, + defaults: { + /** + * @property swipeMinTouches + * @type {Number} + * @default 1 + */ + swipeMinTouches: 1, - // open angle bracket - if (token == '{') { - getToken(); + /** + * @property swipeMaxTouches + * @type {Number} + * @default 1 + */ + swipeMaxTouches: 1, - if (!subgraph) { - subgraph = {}; - } - subgraph.parent = graph; - subgraph.node = graph.node; - subgraph.edge = graph.edge; - subgraph.graph = graph.graph; + /** + * horizontal swipe velocity + * @property swipeVelocityX + * @type {Number} + * @default 0.6 + */ + swipeVelocityX: 0.6, - // statements - parseStatements(subgraph); + /** + * vertical swipe velocity + * @property swipeVelocityY + * @type {Number} + * @default 0.6 + */ + swipeVelocityY: 0.6 + }, - // close angle bracket - if (token != '}') { - throw newSyntaxError('Angle bracket } expected'); - } - getToken(); + handler: function swipeGesture(ev, inst) { + if(ev.eventType == EVENT_RELEASE) { + var touches = ev.touches.length, + options = inst.options; - // remove temporary default properties - delete subgraph.node; - delete subgraph.edge; - delete subgraph.graph; - delete subgraph.parent; + // max touches + if(touches < options.swipeMinTouches || + touches > options.swipeMaxTouches) { + return; + } - // register at the parent graph - if (!graph.subgraphs) { - graph.subgraphs = []; + // 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); + } + } } - graph.subgraphs.push(subgraph); - } + }; - return subgraph; - } + /** + * @module gestures + */ + /** + * Single tap and a double tap on a place + * + * @class Tap + * @static + */ + /** + * @event tap + * @param {Object} ev + */ + /** + * @event doubletap + * @param {Object} ev + */ /** - * 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. + * @param {String} name */ - function parseAttributeStatement (graph) { - // attribute statements - if (token == 'node') { - getToken(); + (function(name) { + var hasMoved = false; - // node attributes - graph.node = parseAttributeList(); - return 'node'; - } - else if (token == 'edge') { - getToken(); + function tapGesture(ev, inst) { + var options = inst.options, + current = Detection.current, + prev = Detection.previous, + sincePrev, + didDoubleTap; - // edge attributes - graph.edge = parseAttributeList(); - return 'edge'; - } - else if (token == 'graph') { - getToken(); + switch(ev.eventType) { + case EVENT_START: + hasMoved = false; + break; - // graph attributes - graph.graph = parseAttributeList(); - return 'graph'; - } + case EVENT_MOVE: + hasMoved = hasMoved || (ev.distance > options.tapMaxDistance); + break; - return null; - } + 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; - /** - * 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); + // check if double tap + if(prev && prev.name == name && + (sincePrev && sincePrev < options.doubleTapInterval) && + ev.distance < options.doubleTapDistance) { + inst.trigger('doubletap', ev); + didDoubleTap = true; + } - // edge statements - parseEdge(graph, id); - } + // do a single tap + if(!didDoubleTap || options.tapAlways) { + current.name = name; + inst.trigger(current.name, ev); + } + } + break; + } + } - /** - * 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(); + 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, - 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(); - } + /** + * max distance of movement of a tap, this is for the slow tappers + * @property tapMaxDistance + * @type {Number} + * @default 10 + */ + tapMaxDistance: 10, - // parse edge attributes - var attr = parseAttributeList(); + /** + * always trigger the `tap` event, even while double-tapping + * @property tapAlways + * @type {Boolean} + * @default true + */ + tapAlways: true, - // create edge - var edge = createEdge(graph, from, to, type, attr); - addEdge(graph, edge); + /** + * max distance between two taps + * @property doubleTapDistance + * @type {Number} + * @default 20 + */ + doubleTapDistance: 20, - from = to; - } - } + /** + * max time between two taps + * @property doubleTapInterval + * @type {Number} + * @default 300 + */ + doubleTapInterval: 300 + } + }; + })('tap'); /** - * Parse a set with attributes, - * for example [label="1.000", shape=solid] - * @return {Object | null} attr + * @module gestures */ - function parseAttributeList() { - var attr = null; - - while (token == '[') { - getToken(); - attr = {}; - while (token !== '' && token != ']') { - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute name expected'); - } - var name = token; - - getToken(); - if (token != '=') { - throw newSyntaxError('Equal sign = expected'); - } - getToken(); + /** + * when a touch is being touched at the page + * + * @class Touch + * @static + */ + /** + * @event touch + * @param {Object} ev + */ + Hammer.gestures.Touch = { + name: 'touch', + index: -Infinity, + defaults: { + /** + * call preventDefault at touchstart, and makes the element blocking by disabling the scrolling of the page, + * but it improves gestures like transforming and dragging. + * be careful with using this, it can be very annoying for users to be stuck on the page + * @property preventDefault + * @type {Boolean} + * @default false + */ + preventDefault: false, - if (tokenType != TOKENTYPE.IDENTIFIER) { - throw newSyntaxError('Attribute value expected'); - } - var value = token; - setValue(attr, name, value); // name can be a path + /** + * 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; + } - getToken(); - if (token ==',') { - getToken(); - } - } + if(inst.options.preventDefault) { + ev.preventDefault(); + } - if (token != ']') { - throw newSyntaxError('Bracket ] expected'); + if(ev.eventType == EVENT_TOUCH) { + inst.trigger('touch', ev); + } } - getToken(); - } - - return attr; - } + }; /** - * Create a syntax error with extra information on current token and index. - * @param {String} message - * @returns {SyntaxError} err + * @module gestures */ - function newSyntaxError(message) { - return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); - } - /** - * Chop off text after a maximum length - * @param {String} text - * @param {Number} maxLength - * @returns {String} + * 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 */ - function chop (text, maxLength) { - return (text.length <= maxLength) ? text : (text.substr(0, 27) + '...'); - } - /** - * Execute a function fn for each pair of elements in two arrays - * @param {Array | *} array1 - * @param {Array | *} array2 - * @param {function} fn + * @event transform + * @param {Object} ev */ - function forEach2(array1, array2, fn) { - if (array1 instanceof Array) { - array1.forEach(function (elem1) { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(elem1, elem2); - }); - } - else { - fn(elem1, array2); - } - }); - } - else { - if (array2 instanceof Array) { - array2.forEach(function (elem2) { - fn(array1, elem2); - }); - } - else { - fn(array1, array2); - } - } - } - /** - * Convert a string containing a graph in DOT language into a map containing - * with nodes and edges in the format of graph. - * @param {String} data Text containing a graph in DOT-notation - * @return {Object} graphData + * @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 */ - function DOTToGraph (data) { - // parse the DOT file - var dotData = parseDOT(data); - var graphData = { - nodes: [], - edges: [], - options: {} - }; - - // copy the nodes - if (dotData.nodes) { - dotData.nodes.forEach(function (dotNode) { - var graphNode = { - id: dotNode.id, - label: String(dotNode.label || dotNode.id) - }; - merge(graphNode, dotNode.attr); - if (graphNode.image) { - graphNode.shape = 'image'; - } - graphData.nodes.push(graphNode); - }); - } - - // copy the edges - if (dotData.edges) { - /** - * Convert an edge in DOT format to an edge with VisGraph format - * @param {Object} dotEdge - * @returns {Object} graphEdge - */ - function convertEdge(dotEdge) { - var graphEdge = { - from: dotEdge.from, - to: dotEdge.to - }; - merge(graphEdge, dotEdge.attr); - graphEdge.style = (dotEdge.type == '->') ? 'arrow' : 'line'; - return graphEdge; - } - - dotData.edges.forEach(function (dotEdge) { - var from, to; - if (dotEdge.from instanceof Object) { - from = dotEdge.from.nodes; - } - else { - from = { - id: dotEdge.from - } - } - if (dotEdge.to instanceof Object) { - to = dotEdge.to.nodes; - } - else { - to = { - id: dotEdge.to - } - } + /** + * @param {String} name + */ + (function(name) { + var triggered = false; - if (dotEdge.from instanceof Object && dotEdge.from.edges) { - dotEdge.from.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } + function transformGesture(ev, inst) { + switch(ev.eventType) { + case EVENT_START: + triggered = false; + break; - 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); - }); + case EVENT_MOVE: + // at least multitouch + if(ev.touches.length < 2) { + return; + } - if (dotEdge.to instanceof Object && dotEdge.to.edges) { - dotEdge.to.edges.forEach(function (subEdge) { - var graphEdge = convertEdge(subEdge); - graphData.edges.push(graphEdge); - }); - } - }); - } + var scaleThreshold = Math.abs(1 - ev.scale); + var rotationThreshold = Math.abs(ev.rotation); - // copy the options - if (dotData.attr) { - graphData.options = dotData.attr; - } + // 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; + } - return graphData; - } + // we are transforming! + Detection.current.name = name; - // exports - exports.parseDOT = parseDOT; - exports.DOTToGraph = DOTToGraph; + // first time, trigger dragstart event + if(!triggered) { + inst.trigger(name + 'start', ev); + triggered = true; + } + inst.trigger(name, ev); // basic transform event -/***/ }, -/* 51 */ -/***/ function(module, exports, __webpack_require__) { + // trigger rotate event + if(rotationThreshold > inst.options.transformMinRotation) { + inst.trigger('rotate', ev); + } - - function parseGephi(gephiJSON, options) { - var edges = []; - var nodes = []; - this.options = { - edges: { - inheritColor: true - }, - nodes: { - allowedToMove: false, - parseColor: false + // trigger pinch event + if(scaleThreshold > inst.options.transformMinScale) { + inst.trigger('pinch', ev); + inst.trigger('pinch' + (ev.scale < 1 ? 'in' : 'out'), ev); + } + break; + + case EVENT_RELEASE: + if(triggered && ev.changedLength < 2) { + inst.trigger(name + 'end', ev); + triggered = false; + } + break; + } } - }; - if (options !== undefined) { - this.options.nodes['allowedToMove'] = options.allowedToMove | false; - this.options.nodes['parseColor'] = options.parseColor | false; - this.options.edges['inheritColor'] = options.inheritColor | true; - } + 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, - 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); - } + /** + * rotation in degrees + * @property transformMinRotation + * @type {Number} + * @default 1 + */ + transformMinRotation: 1 + }, - 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); - } + handler: transformGesture + }; + })('transform'); - return {nodes:nodes, edges:edges}; + /** + * @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; } - exports.parseGephi = parseGephi; + })(window); /***/ }, -/* 52 */ +/* 53 */ /***/ function(module, exports, __webpack_require__) { - var PhysicsMixin = __webpack_require__(53); - var ClusterMixin = __webpack_require__(57); - var SectorsMixin = __webpack_require__(58); - var SelectionMixin = __webpack_require__(59); - var ManipulationMixin = __webpack_require__(60); - var NavigationMixin = __webpack_require__(61); - var HierarchicalLayoutMixin = __webpack_require__(62); - /** - * Load a mixin into the network object + * Creation of the ClusterMixin var. * - * @param {Object} sourceVariable | this object has to contain functions. - * @private + * This contains all the functions the Network object can use to employ clustering */ - exports._loadMixin = function (sourceVariable) { - for (var mixinFunction in sourceVariable) { - if (sourceVariable.hasOwnProperty(mixinFunction)) { - this[mixinFunction] = sourceVariable[mixinFunction]; - } - } - }; + /** + * This is only called in the constructor of the network object + * + */ + exports.startWithClustering = function() { + // cluster if the data set is big + this.clusterToFit(this.constants.clustering.initialMaxNodes, true); + + // updates the lables after clustering + this.updateLabels(); + + // this is called here because if clusterin is disabled, the start and stabilize are called in + // the setData function. + if (this.stabilize) { + this._stabilize(); + } + this.start(); + }; /** - * removes a mixin from the network object. + * This function clusters until the initialMaxNodes has been reached * - * @param {Object} sourceVariable | this object has to contain functions. - * @private + * @param {Number} maxNumberOfNodes + * @param {Boolean} reposition */ - exports._clearMixin = function (sourceVariable) { - for (var mixinFunction in sourceVariable) { - if (sourceVariable.hasOwnProperty(mixinFunction)) { - this[mixinFunction] = undefined; + exports.clusterToFit = function(maxNumberOfNodes, reposition) { + var numberOfNodes = this.nodeIndices.length; + + 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(); + }; /** - * Mixin the physics system and initialize the parameters required. + * 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._loadPhysicsSystem = function () { - this._loadMixin(PhysicsMixin); - this._loadSelectedForceSolver(); - if (this.constants.configurePhysics == true) { - this._loadPhysicsConfiguration(); + 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; + } + } - }; + else { + this._expandClusterNode(node,false,true); + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this._updateCalculationNodes(); + this.updateLabels(); + } - /** - * Mixin the cluster system and initialize the parameters required. - * - * @private - */ - exports._loadClusterSystem = function () { - this.clusterSession = 0; - this.hubThreshold = 5; - this._loadMixin(ClusterMixin); + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); + } }; /** - * Mixin the sector system and initialize the parameters required - * - * @private + * This calls the updateClustes with default arguments */ - 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 }; + exports.updateClustersDefault = function() { + if (this.constants.clustering.enabled == true) { + this.updateClusters(0,false,false); + } + }; - this.nodeIndices = this.sectors["active"]["default"]["nodeIndices"]; // the node indices list is used to speed up the computation of the repulsion fields - this._loadMixin(SectorsMixin); + /** + * This 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); }; /** - * Mixin the selection system and initialize the parameters required - * - * @private + * This function can be called to decrease the cluster level. This means that the nodes with only one edge connection will + * be unpacked if they are a cluster. This can be repeated as many times as needed. + * This can be called externally (by a key-bind for instance) to look into clusters without zooming. */ - exports._loadSelectionSystem = function () { - this.selectionObj = {nodes: {}, edges: {}}; - - this._loadMixin(SelectionMixin); + exports.decreaseClusterLevel = function() { + this.updateClusters(1,false,true); }; /** - * Mixin the navigationUI (User Interface) system and initialize the parameters required + * 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 * - * @private */ - exports._loadManipulationSystem = function () { - // reset global variables -- these are used by the selection of nodes and edges. - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; + exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; - 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.frame.appendChild(this.manipulationDiv); - } + // 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(); + } - 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.frame.appendChild(this.editModeDiv); + // 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); } - - 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.frame.appendChild(this.closeDiv); + else { + // if a cluster takes up a set percentage of the active window + this._openClustersBySize(); } + } + this._updateNodeIndexList(); - // load the manipulation functions - this._loadMixin(ManipulationMixin); - - // create the manipulator toolbar - this._createManipulatorBar(); + // 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(); } - else { - if (this.manipulationDiv !== undefined) { - // removes all the bindings and overloads - this._createManipulatorBar(); - // remove the manipulation divs - this.containerElement.removeChild(this.manipulationDiv); - this.containerElement.removeChild(this.editModeDiv); - this.containerElement.removeChild(this.closeDiv); - this.manipulationDiv = undefined; - this.editModeDiv = undefined; - this.closeDiv = undefined; - // remove the mixin functions - this._clearMixin(ManipulationMixin); - } + // we now reduce chains. + if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out + this.handleChains(); + this._updateNodeIndexList(); } - }; + this.previousScale = this.scale; - /** - * Mixin the navigation (User Interface) system and initialize the parameters required - * - * @private - */ - exports._loadNavigationControls = function () { - this._loadMixin(NavigationMixin); + // rest of the update the index list, dynamic edges and labels + this._updateDynamicEdges(); + this.updateLabels(); - // the clean function removes the button divs, this is done to remove the bindings. - this._cleanNavigation(); - if (this.constants.navigation.enabled == true) { - this._loadNavigationElements(); + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length < amountOfNodes) { // this means a clustering operation has taken place + this.clusterSession += 1; + // if clusters have been made, we normalize the cluster level + this.normalizeClusterLevels(); } - }; + if (doNotStart == false || doNotStart === undefined) { + // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded + if (this.moving != isMovingBeforeClustering) { + this.start(); + } + } - /** - * Mixin the hierarchical layout system. - * - * @private - */ - exports._loadHierarchySystem = function () { - this._loadMixin(HierarchicalLayoutMixin); + this._updateCalculationNodes(); }; + /** + * 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) -/***/ }, -/* 53 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var RepulsionMixin = __webpack_require__(54); - var HierarchialRepulsionMixin = __webpack_require__(55); - var BarnesHutMixin = __webpack_require__(56); + } + }; /** - * Toggling barnes Hut calculation on and off. + * this functions starts clustering by hubs + * The minimum hub threshold is set globally * * @private */ - exports._toggleBarnesHut = function () { - this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; - this._loadSelectedForceSolver(); - this.moving = true; - this.start(); + exports._aggregateHubs = function(force) { + this._getHubSize(); + this._formClustersByHub(force,false); }; /** - * This loads the node force solver based on the barnes hut or repulsion algorithm + * This function is fired by keypress. It forces hubs to form. * - * @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; + exports.forceAggregateHubs = function(doNotStart) { + var isMovingBeforeClustering = this.moving; + var amountOfNodes = this.nodeIndices.length; - this._loadMixin(BarnesHutMixin); - } - else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._clearMixin(BarnesHutMixin); - this._clearMixin(RepulsionMixin); + this._aggregateHubs(true); - 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; + // update the index list, dynamic edges and labels + this._updateNodeIndexList(); + this._updateDynamicEdges(); + this.updateLabels(); - this._loadMixin(HierarchialRepulsionMixin); + // if a cluster was formed, we increase the clusterSession + if (this.nodeIndices.length != amountOfNodes) { + this.clusterSession += 1; } - else { - 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); + 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(); + } } }; /** - * 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. + * If a cluster takes up more than a set percentage of the screen, open the cluster * * @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); + exports._openClustersBySize = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.inView() == true) { + if ((node.width*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || + (node.height*this.scale > this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { + this.openCluster(node); + } + } } - - // we now start the force calculation - this._calculateForces(); } }; /** - * Calculate the external forces acting on the nodes - * Forces are caused by: edges, repulsing forces between nodes, gravity + * 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._calculateForces = function () { - // Gravity is required to keep separated groups from floating off - // the forces are reset to zero in this loop by using _setForce instead - // of _addForce - - this._calculateGravitationalForces(); - this._calculateNodeForces(); - - if (this.constants.physics.springConstant > 0) { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this._calculateSpringForcesWithSupport(); - } - else { - if (this.constants.physics.hierarchicalRepulsion.enabled == true) { - this._calculateHierarchicalSpringForces(); - } - else { - this._calculateSpringForces(); - } - } + exports._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(); } }; - /** - * 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. + * 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._updateCalculationNodes = function () { - if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { - this.calculationNodes = {}; - this.calculationNodeIndices = []; - - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId] = this.nodes[nodeId]; - } - } - var supportNodes = this.sectors['support']['nodes']; - for (var supportNodeId in supportNodes) { - if (supportNodes.hasOwnProperty(supportNodeId)) { - if (this.edges.hasOwnProperty(supportNodes[supportNodeId].parentEdgeId)) { - this.calculationNodes[supportNodeId] = supportNodes[supportNodeId]; - } - else { - supportNodes[supportNodeId]._setForce(0, 0); - } - } + 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; - for (var idx in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(idx)) { - this.calculationNodeIndices.push(idx); + // 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); + } + } + } } } } - else { - this.calculationNodes = this.nodes; - this.calculationNodeIndices = this.nodeIndices; - } }; - /** - * this function applies the central gravity effect to keep groups from floating off + * ONLY CALLED FROM _expandClusterNode + * + * This function will expel a child_node from a parent_node. This is to de-cluster the node. This function will remove + * the child node from the parent contained_node object and put it back into the global nodes object. + * The same holds for the edge that was connected to the child node. It is moved back into the global edges object. * + * @param {Node} parentNode | the parent node + * @param {String} containedNodeId | child_node id as it is contained in the containedNodes object of the parent node + * @param {Boolean} recursive | This will also check if the child needs to be expanded. + * With force and recursive both true, the entire cluster is unpacked + * @param {Boolean} force | This will disregard the zoom level and will expel this child from the parent + * @param {Boolean} openAll | This will recursively force all nodes in the parent to be released * @private */ - exports._calculateGravitationalForces = function () { - var dx, dy, distance, node, i; - var nodes = this.calculationNodes; - var gravity = this.constants.physics.centralGravity; - var gravityForce = 0; - - for (i = 0; i < this.calculationNodeIndices.length; i++) { - node = nodes[this.calculationNodeIndices[i]]; - node.damping = this.constants.physics.damping; // possibly add function to alter damping properties of clusters. - // gravity does not apply when we are in a pocket sector - if (this._sector() == "default" && gravity != 0) { - dx = -node.x; - dy = -node.y; - distance = Math.sqrt(dx * dx + dy * dy); - - gravityForce = (distance == 0) ? 0 : (gravity / distance); - node.fx = dx * gravityForce; - node.fy = dy * gravityForce; - } - else { - node.fx = 0; - node.fy = 0; - } - } - }; - + exports._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; - /** - * this function calculates the effects of the springs in the case of unsmooth curves. - * - * @private - */ - exports._calculateSpringForces = function () { - var edgeLength, edge, edgeId; - var dx, dy, fx, fy, springForce, distance; - var edges = this.edges; + // release the contained edges from this childNode back into the global edges + this._releaseContainedEdges(parentNode,childNode); - // 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; + // reconnect rerouted edges to the childNode + this._connectEdgeBackToChild(parentNode,childNode); - dx = (edge.from.x - edge.to.x); - dy = (edge.from.y - edge.to.y); - distance = Math.sqrt(dx * dx + dy * dy); + // validate all edges in dynamicEdges + this._validateEdges(parentNode); - if (distance == 0) { - distance = 0.01; - } + // 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; - // the 1/distance is so the fx and fy can be calculated without sine or cosine. - springForce = this.constants.physics.springConstant * (edgeLength - distance) / distance; + // 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()); - fx = dx * springForce; - fy = dy * springForce; + // remove node from the list + delete parentNode.containedNodes[containedNodeId]; - edge.from.fx += fx; - edge.from.fy += fy; - edge.to.fx -= fx; - edge.to.fy -= fy; + // check if there are other childs with this clusterSession in the parent. + var othersPresent = false; + for (var childNodeId in parentNode.containedNodes) { + if (parentNode.containedNodes.hasOwnProperty(childNodeId)) { + if (parentNode.containedNodes[childNodeId].clusterSession == childNode.clusterSession) { + othersPresent = true; + break; } } } - } - }; - - - + // if there are no others, remove the cluster session from the list + if (othersPresent == false) { + parentNode.clusterSessions.pop(); + } - /** - * 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; + this._repositionBezierNodes(childNode); + // this._repositionBezierNodes(parentNode); - // 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; + // remove the clusterSession from the child node + childNode.clusterSession = 0; - edgeLength = edge.physics.springLength; + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); - combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; + // restart the simulation to reorganise all nodes + this.moving = true; + } - // 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); - } - } - } - } + // check if a further expansion step is possible if recursivity is enabled + if (recursive == true) { + this._expandClusterNode(childNode,recursive,force,openAll); } }; /** - * This is the code actually performing the calculation for the function above. It is split out to avoid repetition. + * position the bezier nodes at the center of the edges * - * @param node1 - * @param node2 - * @param edgeLength + * @param node * @private */ - exports._calculateSpringForce = function (node1, node2, edgeLength) { - var dx, dy, fx, fy, springForce, distance; - - dx = (node1.x - node2.x); - dy = (node1.y - node2.y); - distance = Math.sqrt(dx * dx + dy * dy); - - if (distance == 0) { - distance = 0.01; + exports._repositionBezierNodes = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + node.dynamicEdges[i].positionBezierNode(); } - - // 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; }; /** - * Load the HTML for the physics config and bind it + * 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 + * * @private + * @param {Boolean} force */ - 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"); + exports._formClusters = function(force) { + if (force == false) { + this._formClustersByZoom(); + } + else { + this._forceClustersByZoom(); + } + }; - 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"); + /** + * This function handles the clustering by zooming out, this is based on a minimum edge distance + * + * @private + */ + exports._formClustersByZoom = function() { + var dx,dy,length, + minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - 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"; - } + // 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); - switchConfigurations.apply(this); + 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; + } - radioButton1.onchange = switchConfigurations.bind(this); - radioButton2.onchange = switchConfigurations.bind(this); - radioButton3.onchange = switchConfigurations.bind(this); + if (childNode.dynamicEdgesLength == 1) { + this._addToCluster(parentNode,childNode,false); + } + else if (parentNode.dynamicEdgesLength == 1) { + this._addToCluster(childNode,parentNode,false); + } + } + } + } + } } }; /** - * This overwrites the this.constants. + * This function forces the network to cluster all nodes with only one connecting edge to their + * connected node. * - * @param constantsVariableName - * @param value * @private */ - exports._overWriteGraphConstants = function (constantsVariableName, value) { - var nameArray = constantsVariableName.split("_"); - if (nameArray.length == 1) { - this.constants[nameArray[0]] = value; - } - else if (nameArray.length == 2) { - this.constants[nameArray[0]][nameArray[1]] = value; - } - else if (nameArray.length == 3) { - this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; + exports._forceClustersByZoom = function() { + for (var nodeId in this.nodes) { + // another node could have absorbed this child. + if (this.nodes.hasOwnProperty(nodeId)) { + var childNode = this.nodes[nodeId]; + + // the edges can be swallowed by another decrease + if (childNode.dynamicEdgesLength == 1 && childNode.dynamicEdges.length != 0) { + var edge = childNode.dynamicEdges[0]; + var parentNode = (edge.toId == childNode.id) ? this.nodes[edge.fromId] : this.nodes[edge.toId]; + + // group to the largest node + if (childNode.id != parentNode.id) { + if (parentNode.options.mass > childNode.options.mass) { + this._addToCluster(parentNode,childNode,true); + } + else { + this._addToCluster(childNode,parentNode,true); + } + } + } + } } }; /** - * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. + * To keep the nodes of roughly equal size we normalize the cluster levels. + * This function clusters a node to its smallest connected neighbour. + * + * @param node + * @private */ - 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";} + exports._clusterToSmallestNeighbour = function(node) { + var smallestNeighbour = -1; + var smallestNeighbourNode = null; + for (var i = 0; i < node.dynamicEdges.length; i++) { + if (node.dynamicEdges[i] !== undefined) { + var neighbour = null; + if (node.dynamicEdges[i].fromId != node.id) { + neighbour = node.dynamicEdges[i].from; + } + else if (node.dynamicEdges[i].toId != node.id) { + neighbour = node.dynamicEdges[i].to; + } + + + if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { + smallestNeighbour = neighbour.clusterSessions.length; + smallestNeighbourNode = neighbour; + } + } + } + + if (neighbour != null && this.nodes[neighbour.id] !== undefined) { + this._addToCluster(neighbour, node, true); + } + }; - this._configureSmoothCurves(false); - } /** - * this function is used to scramble the nodes + * This function forms clusters from hubs, it loops over all nodes * + * @param {Boolean} force | Disregard zoom level + * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @private */ - function graphRepositionNodes () { - for (var nodeId in this.calculationNodes) { - if (this.calculationNodes.hasOwnProperty(nodeId)) { - this.calculationNodes[nodeId].vx = 0; this.calculationNodes[nodeId].vy = 0; - this.calculationNodes[nodeId].fx = 0; this.calculationNodes[nodeId].fy = 0; + exports._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); } } - if (this.constants.hierarchicalLayout.enabled == true) { - this._setupHierarchicalLayout(); - showValueOfRange.call(this, 'graph_H_nd', 1, "physics_hierarchicalRepulsion_nodeDistance"); - showValueOfRange.call(this, 'graph_H_cg', 1, "physics_centralGravity"); - showValueOfRange.call(this, 'graph_H_sc', 1, "physics_springConstant"); - showValueOfRange.call(this, 'graph_H_sl', 1, "physics_springLength"); - showValueOfRange.call(this, 'graph_H_damp', 1, "physics_damping"); - } - else { - this.repositionNodes(); - } - this.moving = true; - this.start(); - } + }; /** - * this is used to generate an options file from the playing with physics system. + * 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 */ - function graphGenerateOptions () { - var options = "No options are required, default values used."; - var optionsSpecific = []; - var radioButton1 = document.getElementById("graph_physicsMethod1"); - var radioButton2 = document.getElementById("graph_physicsMethod2"); - if (radioButton1.checked == true) { - if (this.constants.physics.barnesHut.gravitationalConstant != this.backupConstants.physics.barnesHut.gravitationalConstant) {optionsSpecific.push("gravitationalConstant: " + this.constants.physics.barnesHut.gravitationalConstant);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.barnesHut.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.barnesHut.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.barnesHut.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.barnesHut.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options = "var options = {"; - options += "physics: {barnesHut: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } - } - options += '}}' - } - if (this.constants.smoothCurves.enabled != this.backupConstants.smoothCurves.enabled) { - if (optionsSpecific.length == 0) {options = "var options = {";} - else {options += ", "} - options += "smoothCurves: " + this.constants.smoothCurves.enabled; - } - if (options != "No options are required, default values used.") { - options += '};' - } + exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { + if (absorptionSizeOffset === undefined) { + absorptionSizeOffset = 0; } - else if (radioButton2.checked == true) { - options = "var options = {"; - options += "physics: {barnesHut: {enabled: false}"; - if (this.constants.physics.repulsion.nodeDistance != this.backupConstants.physics.repulsion.nodeDistance) {optionsSpecific.push("nodeDistance: " + this.constants.physics.repulsion.nodeDistance);} - if (this.constants.physics.centralGravity != this.backupConstants.physics.repulsion.centralGravity) {optionsSpecific.push("centralGravity: " + this.constants.physics.centralGravity);} - if (this.constants.physics.springLength != this.backupConstants.physics.repulsion.springLength) {optionsSpecific.push("springLength: " + this.constants.physics.springLength);} - if (this.constants.physics.springConstant != this.backupConstants.physics.repulsion.springConstant) {optionsSpecific.push("springConstant: " + this.constants.physics.springConstant);} - if (this.constants.physics.damping != this.backupConstants.physics.repulsion.damping) {optionsSpecific.push("damping: " + this.constants.physics.damping);} - if (optionsSpecific.length != 0) { - options += ", repulsion: {"; - for (var i = 0; i < optionsSpecific.length; i++) { - options += optionsSpecific[i]; - if (i < optionsSpecific.length - 1) { - options += ", " - } - } - options += '}}' - } - if (optionsSpecific.length == 0) {options += "}"} - if (this.constants.smoothCurves != this.backupConstants.smoothCurves) { - options += ", smoothCurves: " + this.constants.smoothCurves; + // 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); } - 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 += ", "; + + // 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; + } + } + } } } - 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 += ", " + + // 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); + } } } - options += '}' + } + } + }; + + + + /** + * 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._addToCluster = function(parentNode, childNode, force) { + // join child node in the parent node + parentNode.containedNodes[childNode.id] = childNode; + + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < childNode.dynamicEdges.length; i++) { + var edge = childNode.dynamicEdges[i]; + if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode + this._addToContainedEdges(parentNode,childNode,edge); } else { - options += "enabled:true}"; + this._connectEdgeToCluster(parentNode,childNode,edge); } - options += '};' } + // a contained node has no dynamic edges. + childNode.dynamicEdges = []; + // remove circular edges from clusters + this._containCircularEdgesFromNode(parentNode,childNode); - this.optionsDiv.innerHTML = options; - } - /** - * 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; + // 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); } - 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(); - } + + // 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 { - this.constants.hierarchicalLayout.enabled = false; - this.constants.physics.hierarchicalRepulsion.enabled = false; - this.constants.physics.barnesHut.enabled = true; + parentNode.formationScale = this.scale; // The latest child has been added on this scale } - 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";} + + // recalculate the size of the node on the next time the node is rendered + parentNode.clearSizeCache(); + + // set the pop-out scale for the childnode + parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; + + // nullify the movement velocity of the child, this is to avoid hectic behaviour + childNode.clearVelocity(); + + // the mass has altered, preservation of energy dictates the velocity to be updated + parentNode.updateVelocity(massBefore); + + // restart the simulation to reorganise all nodes this.moving = true; - this.start(); - } + }; /** - * this generates the ranges depending on the iniital values. - * - * @param id - * @param map - * @param constantsVariableName + * 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 */ - 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 { - document.getElementById(valueId).value = parseInt(map) * parseFloat(rangeValue); - this._overWriteGraphConstants(constantsVariableName, parseInt(map) * parseFloat(rangeValue)); - } + exports._updateDynamicEdges = function() { + for (var i = 0; i < this.nodeIndices.length; i++) { + var node = this.nodes[this.nodeIndices[i]]; + node.dynamicEdgesLength = node.dynamicEdges.length; - if (constantsVariableName == "hierarchicalLayout_direction" || - constantsVariableName == "hierarchicalLayout_levelSeparation" || - constantsVariableName == "hierarchicalLayout_nodeSpacing") { - this._setupHierarchicalLayout(); + // 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.moving = true; - this.start(); - } - + }; -/***/ }, -/* 54 */ -/***/ function(module, exports, __webpack_require__) { /** - * Calculate the forces the nodes apply on each other based on a repulsion field. - * This field is linearly approximated. + * 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._calculateNodeForces = function () { - var dx, dy, angle, distance, fx, fy, combinedClusterSize, - repulsingForce, node1, node2, i, j; - - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - - // approximation constants - var a_base = -2 / 3; - var b = 4 / 3; + 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); - // repulsing forces between nodes - var nodeDistance = this.constants.physics.repulsion.nodeDistance; - var minimumDistance = nodeDistance; + // remove the edge from the global edges object + delete this.edges[edge.id]; - // 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; + // 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; + } + } + }; - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + /** + * 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._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 - 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)) - } + edge.originalFromId.push(childNode.id); + edge.from = parentNode; + edge.fromId = parentNode.id; + } - // amplify the repulsion for clusters. - repulsingForce *= (combinedClusterSize == 0) ? 1 : 1 + combinedClusterSize * this.constants.clustering.forceAmplification; - repulsingForce = repulsingForce / distance; + this._addToReroutedEdges(parentNode,childNode,edge); + } + }; - fx = dx * repulsingForce; - fy = dy * repulsingForce; - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; - } + /** + * 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 parentNode + * @param childNode + * @private + */ + exports._containCircularEdgesFromNode = function(parentNode, childNode) { + // manage all the edges connected to the child and parent nodes + for (var i = 0; i < parentNode.dynamicEdges.length; i++) { + var edge = parentNode.dynamicEdges[i]; + // handle circular edges + if (edge.toId == edge.fromId) { + this._addToContainedEdges(parentNode, childNode, edge); } } }; - -/***/ }, -/* 55 */ -/***/ function(module, exports, __webpack_require__) { - + /** - * Calculate the forces the nodes apply on eachother based on a repulsion field. - * This field is linearly approximated. + * This adds an edge from the childNode to the rerouted edges of the parent node * + * @param parentNode | Node object + * @param childNode | Node object + * @param edge | Edge object * @private */ - exports._calculateNodeForces = function () { - var dx, dy, distance, fx, fy, - repulsingForce, node1, node2, i, j; - - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; + 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); - // repulsing forces between nodes - var nodeDistance = this.constants.physics.hierarchicalRepulsion.nodeDistance; + // this edge becomes part of the dynamicEdges of the cluster node + parentNode.dynamicEdges.push(edge); + }; - // we loop from i over all but the last entree in the array - // j loops from i+1 to the last. This way we do not double count any of the indices, nor i == j - for (i = 0; i < nodeIndices.length - 1; i++) { - node1 = nodes[nodeIndices[i]]; - for (j = i + 1; j < nodeIndices.length; j++) { - node2 = nodes[nodeIndices[j]]; - // nodes only affect nodes on their level - if (node1.level == node2.level) { - dx = node2.x - node1.x; - dy = node2.y - node1.y; - distance = Math.sqrt(dx * dx + dy * dy); + /** + * 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); - var steepness = 0.05; - if (distance < nodeDistance) { - repulsingForce = -Math.pow(steepness*distance,2) + Math.pow(steepness*nodeDistance,2); - } - else { - repulsingForce = 0; + // 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; } - // normalize force with - if (distance == 0) { - distance = 0.01; - } - else { - repulsingForce = repulsingForce / distance; - } - fx = dx * repulsingForce; - fy = dy * repulsingForce; - - node1.fx -= fx; - node1.fy -= fy; - node2.fx += fx; - node2.fy += fy; } } + // remove the entry from the rerouted edges + delete parentNode.reroutedEdges[childNode.id]; } }; /** - * this function calculates the effects of the springs in the case of unsmooth curves. + * When loops are clustered, an edge can be both in the rerouted array and the contained array. + * This function is called last to verify that all edges in dynamicEdges are in fact connected to the + * parentNode * + * @param parentNode | Node object * @private */ - exports._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; + 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); + } + } + }; - for (var i = 0; i < nodeIndices.length; i++) { - var node1 = nodes[nodeIndices[i]]; - node1.springFx = 0; - node1.springFy = 0; - } + /** + * 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 + */ + 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; - // 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; + // 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]; - 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; - } - // 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; + // ------------------- UTILITY FUNCTIONS ---------------------------- // - 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 updates the node labels for all nodes (for debugging purposes) + */ + exports.updateLabels = function() { + var nodeId; + // update node labels + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + var node = this.nodes[nodeId]; + if (node.clusterSize > 1) { + node.label = "[".concat(String(node.clusterSize),"]"); } } } - // 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)); - - node.fx += springFx; - node.fy += springFy; - } - - // retain energy balance - var totalFx = 0; - var totalFy = 0; - for (i = 0; i < nodeIndices.length; i++) { - var node = nodes[nodeIndices[i]]; - totalFx += node.fx; - totalFy += node.fy; + // 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); + } + } + } } - 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; - } + // /* Debug Override */ + // for (nodeId in this.nodes) { + // if (this.nodes.hasOwnProperty(nodeId)) { + // node = this.nodes[nodeId]; + // node.label = String(node.level); + // } + // } }; -/***/ }, -/* 56 */ -/***/ function(module, exports, __webpack_require__) { /** - * 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. - * - * @private + * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes + * if the rest of the nodes are already a few cluster levels in. + * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not + * clustered enough to the clusterToSmallestNeighbours function. */ - exports._calculateNodeForces = function() { - if (this.constants.physics.barnesHut.gravitationalConstant != 0) { - var node; - var nodes = this.calculationNodes; - var nodeIndices = this.calculationNodeIndices; - var nodeCount = nodeIndices.length; - - this._formBarnesHutTree(nodes,nodeIndices); + exports.normalizeClusterLevels = function() { + var maxLevel = 0; + var minLevel = 1e9; + var clusterLevel = 0; + var nodeId; - var barnesHutTree = this.barnesHutTree; + // 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;} + } + } - // place the nodes one by one recursively - for (var i = 0; i < nodeCount; i++) { - node = nodes[nodeIndices[i]]; - if (node.options.mass > 0) { - // starting with root is irrelevant, it never passes the BarnesHut condition - this._getForceContribution(barnesHutTree.root.children.NW,node); - this._getForceContribution(barnesHutTree.root.children.NE,node); - this._getForceContribution(barnesHutTree.root.children.SW,node); - this._getForceContribution(barnesHutTree.root.children.SE,node); + if (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 traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. - * If a region contains a single node, we check if it is not itself, then we apply the force. + * This function determines if the cluster we want to decluster is in the active area + * this means around the zoom center * - * @param parentBranch - * @param node + * @param {Node} node + * @returns {boolean} * @private */ - exports._getForceContribution = function(parentBranch,node) { - // we get no force contribution from an empty region - if (parentBranch.childrenCount > 0) { - var dx,dy,distance; + 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 + ) + }; - // 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; - } - } + /** + * 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); } } }; + /** - * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * 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 nodes - * @param nodeIndices * @private */ - exports._formBarnesHutTree = function(nodes,nodeIndices) { - var node; - var nodeCount = nodeIndices.length; + exports._getHubSize = function() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; - var minX = Number.MAX_VALUE, - minY = Number.MAX_VALUE, - maxX =-Number.MAX_VALUE, - maxY =-Number.MAX_VALUE; + for (var i = 0; i < this.nodeIndices.length; i++) { - // 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; } + 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; } - // 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 + average = average / hubCounter; + averageSquared = averageSquared / hubCounter; + var variance = averageSquared - Math.pow(average,2); - 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); + var standardDeviation = Math.sqrt(variance); - // 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); + this.hubThreshold = Math.floor(average + 2*standardDeviation); - // 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); - } + // always have at least one to cluster + if (this.hubThreshold > largestHub) { + this.hubThreshold = largestHub; } - // make global - this.barnesHutTree = barnesHutTree + // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); + // console.log("hubThreshold:",this.hubThreshold); }; /** - * this updates the mass of a branch. this is increased by adding a node. + * 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 parentBranch - * @param node + * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce * @private */ - exports._updateBranchMass = function(parentBranch, node) { - var totalMass = parentBranch.mass + node.options.mass; - var totalMassInv = 1/totalMass; - - parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; - parentBranch.centerOfMass.x *= totalMassInv; - - parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; - parentBranch.centerOfMass.y *= totalMassInv; - - parentBranch.mass = totalMass; - var biggestSize = Math.max(Math.max(node.height,node.radius),node.width); - parentBranch.maxWidth = (parentBranch.maxWidth < biggestSize) ? biggestSize : parentBranch.maxWidth; - + 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; + } + } + } + } }; - /** - * determine in which branch the node will be placed. + * 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 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); - } - - 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"); - } - else { // in SE - this._placeInRegion(parentBranch,node,"SE"); + 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; }; +/***/ }, +/* 54 */ +/***/ 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. + */ + /** - * actually place the node in a region (or branch) + * This function is only called by the setData function of the Network object. + * This loads the global references into the active sector. This initializes the sector. * - * @param 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; - } + 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 splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch - * after the split is complete. + * /** + * 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 parentBranch + * @param {String} sectorId + * @param {String} [sectorType] | "active" or "frozen" * @private */ - exports._splitBranch = function(parentBranch) { - // if the branch is shaded with a node, replace the node in the new subset. - var containedNode = null; - if (parentBranch.childrenCount == 1) { - containedNode = parentBranch.children.data; - parentBranch.mass = 0; parentBranch.centerOfMass.x = 0; parentBranch.centerOfMass.y = 0; + exports._switchToSector = function(sectorId, sectorType) { + if (sectorType === undefined || sectorType == "active") { + this._switchToActiveSector(sectorId); } - 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); + else { + this._switchToFrozenSector(sectorId); } }; /** - * This function subdivides the region into four new segments. - * Specifically, this inserts a single new segment. - * It fills the children section of the parentBranch + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. * - * @param parentBranch - * @param region - * @param parentRange + * @param sectorId * @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; - } - - - 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 - }; + 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 is for debugging purposed, it draws the tree. + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied active sector. * - * @param ctx - * @param color * @private */ - exports._drawTree = function(ctx,color) { - if (this.barnesHutTree !== undefined) { - - ctx.lineWidth = 1; - - this._drawBranch(this.barnesHutTree.root,ctx,color); - } + exports._switchToSupportSector = function() { + this.nodeIndices = this.sectors["support"]["nodeIndices"]; + this.nodes = this.sectors["support"]["nodes"]; + this.edges = this.sectors["support"]["edges"]; }; /** - * This function is for debugging purposes. It draws the branches recursively. + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the supplied frozen sector. * - * @param branch - * @param ctx - * @param color + * @param sectorId * @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(); - - ctx.beginPath(); - ctx.moveTo(branch.range.maxX,branch.range.minY); - ctx.lineTo(branch.range.maxX,branch.range.maxY); - ctx.stroke(); - - ctx.beginPath(); - ctx.moveTo(branch.range.maxX,branch.range.maxY); - ctx.lineTo(branch.range.minX,branch.range.maxY); - ctx.stroke(); - - ctx.beginPath(); - ctx.moveTo(branch.range.minX,branch.range.maxY); - ctx.lineTo(branch.range.minX,branch.range.minY); - ctx.stroke(); - - /* - if (branch.mass > 0) { - ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); - ctx.stroke(); - } - */ + 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"]; }; -/***/ }, -/* 57 */ -/***/ function(module, exports, __webpack_require__) { - /** - * Creation of the ClusterMixin var. + * This function sets the global references to nodes, edges and nodeIndices back to + * those of the currently active sector. * - * This contains all the functions the Network object can use to employ clustering + * @private */ - - /** - * This is only called in the constructor of the network object - * - */ - exports.startWithClustering = function() { - // cluster if the data set is big - this.clusterToFit(this.constants.clustering.initialMaxNodes, true); - - // updates the lables after clustering - this.updateLabels(); - - // this is called here because if clusterin is disabled, the start and stabilize are called in - // the setData function. - if (this.stabilize) { - this._stabilize(); - } - this.start(); + exports._loadLatestSector = function() { + this._switchToSector(this._sector()); }; + /** - * This function clusters until the initialMaxNodes has been reached + * This function returns the currently active sector Id * - * @param {Number} maxNumberOfNodes - * @param {Boolean} reposition + * @returns {String} + * @private */ - exports.clusterToFit = function(maxNumberOfNodes, reposition) { - var numberOfNodes = this.nodeIndices.length; - - 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 - } + exports._sector = function() { + return this.activeSector[this.activeSector.length-1]; + }; - 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 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 { + throw new TypeError('there are not enough sectors in the this.activeSector array.'); } - 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. + * 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 node | Node object: cluster to open. + * @param newId + * @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; + exports._setActiveSector = function(newId) { + this.activeSector.push(newId); + }; - // 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); + /** + * 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(); + }; - // 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 function creates a new active sector with the supplied newId. This newId + * is the expanding node id. + * + * @param {String} newId | Id of the new active sector + * @private + */ + exports._createNewSector = function(newId) { + // create the new sector + this.sectors["active"][newId] = {"nodes":{}, + "edges":{}, + "nodeIndices":[], + "formationScale": this.scale, + "drawingNode": undefined}; + + // 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; }; /** - * This calls the updateClustes with default arguments + * This function removes the currently active sector. This is called when we create a new + * active sector. + * + * @param {String} sectorId | Id of the active sector that will be removed + * @private */ - exports.updateClustersDefault = function() { - if (this.constants.clustering.enabled == true) { - this.updateClusters(0,false,false); - } + exports._deleteActiveSector = function(sectorId) { + delete this.sectors["active"][sectorId]; }; /** - * 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. + * 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.increaseClusterLevel = function() { - this.updateClusters(-1,false,true); + exports._deleteFrozenSector = function(sectorId) { + delete this.sectors["frozen"][sectorId]; }; /** - * 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. + * Freezing an active sector means moving it from the "active" object to the "frozen" object. + * We copy the references, then delete the active entree. + * + * @param sectorId + * @private */ - exports.decreaseClusterLevel = function() { - this.updateClusters(1,false,true); + 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); }; /** - * 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 is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" + * object to the "active" object. * + * @param sectorId + * @private */ - exports.updateClusters = function(zoomDirection,recursive,force,doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; + exports._activateSector = function(sectorId) { + // we move the set references from the frozen to the active stack. + this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; - // 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(); - } + // we have moved the sector data into the active set, we now remove it from the frozen stack + this._deleteFrozenSector(sectorId); + }; - // check if we zoom in or out - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - // forming clusters when forced pulls outliers in. When not forced, the edge length of the - // outer nodes determines if it is being clustered - this._formClusters(force); - } - else if (this.previousScale < this.scale || zoomDirection == 1) { // zoom in - if (force == true) { - // _openClusters checks for each node if the formationScale of the cluster is smaller than - // the current scale and if so, declusters. When forced, all clusters are reduced by one step - this._openClusters(recursive,force); - } - else { - // if a cluster takes up a set percentage of the active window - this._openClustersBySize(); - } - } - this._updateNodeIndexList(); - // if a cluster was NOT formed and the user zoomed out, we try clustering by hubs - if (this.nodeIndices.length == amountOfNodes && (this.previousScale > this.scale || zoomDirection == -1)) { - this._aggregateHubs(force); - this._updateNodeIndexList(); + /** + * This function merges the data from the currently active sector with a frozen sector. This is used + * in the process of reverting back to the previously active sector. + * The data that is placed in the frozen (the previously active) sector is the node that has been removed from it + * upon the creation of a new active sector. + * + * @param sectorId + * @private + */ + exports._mergeThisWithFrozen = function(sectorId) { + // copy all nodes + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; + } } - // we now reduce chains. - if (this.previousScale > this.scale || zoomDirection == -1) { // zoom out - this.handleChains(); - this._updateNodeIndexList(); + // copy all edges (if not fully clustered, else there are no edges) + for (var edgeId in this.edges) { + if (this.edges.hasOwnProperty(edgeId)) { + this.sectors["frozen"][sectorId]["edges"][edgeId] = this.edges[edgeId]; + } } - 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(); + // merge the nodeIndices + for (var i = 0; i < this.nodeIndices.length; i++) { + this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); } + }; - if (doNotStart == false || doNotStart === undefined) { - // if the simulation was settled, we restart the simulation if a cluster has been formed or expanded - if (this.moving != isMovingBeforeClustering) { - this.start(); - } - } - this._updateCalculationNodes(); + /** + * This clusters the sector to one cluster. It was a single cluster before this process started so + * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. + * + * @private + */ + exports._collapseThisToSingleCluster = function() { + this.clusterToFit(1,false); }; + /** - * This function handles the chains. It is called on every updateClusters(). + * We create a new active sector from the node that we want to open. + * + * @param node + * @private */ - exports.handleChains = function() { - // after clustering we check how many chains there are - var chainPercentage = this._getChainFraction(); - if (chainPercentage > this.constants.clustering.chainThreshold) { - this._reduceAmountOfChains(1 - this.constants.clustering.chainThreshold / chainPercentage) + exports._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 functions starts clustering by hubs - * The minimum hub threshold is set globally + * We close the sector that is currently open and revert back to the one before. + * If the active sector is the "default" sector, nothing happens. * * @private */ - exports._aggregateHubs = function(force) { - this._getHubSize(); - this._formClustersByHub(force,false); - }; + 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(); - /** - * This function is fired by keypress. It forces hubs to form. - * - */ - exports.forceAggregateHubs = function(doNotStart) { - var isMovingBeforeClustering = this.moving; - var amountOfNodes = this.nodeIndices.length; + // we collapse the sector back to a single cluster + this._collapseThisToSingleCluster(); - this._aggregateHubs(true); + // we move the remaining nodes, edges and nodeIndices to the previous sector. + // This previous sector is the one we will reactivate + this._mergeThisWithFrozen(previousSector); - // update the index list, dynamic edges and labels - this._updateNodeIndexList(); - this._updateDynamicEdges(); - this.updateLabels(); + // the previously active (frozen) sector now has all the data from the currently active sector. + // we can now delete the active sector. + this._deleteActiveSector(sector); - // if a cluster was formed, we increase the clusterSession - if (this.nodeIndices.length != amountOfNodes) { - this.clusterSession += 1; - } + // we activate the previously active (and currently frozen) sector. + this._activateSector(previousSector); - 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(); + // 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(); } } }; + /** - * If a cluster takes up more than a set percentage of the screen, open the cluster + * 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._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._doInAllActiveSectors = function(runFunction,argument) { + if (argument === undefined) { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + this[runFunction](); + } + } + } + else { + for (var sector in this.sectors["active"]) { + if (this.sectors["active"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToActiveSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); } } } } + // we revert the global references back to our active sector + this._loadLatestSector(); }; /** - * 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. + * 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._openClusters = function(recursive,force) { - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - this._expandClusterNode(node,recursive,force); - this._updateCalculationNodes(); + exports._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(); }; + /** - * 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. + * This runs a function in all frozen sectors. This is used in the _redraw(). * - * @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 {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._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; + 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](); + } } - 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); - } - } + } + else { + for (var sector in this.sectors["frozen"]) { + if (this.sectors["frozen"].hasOwnProperty(sector)) { + // switch the global references to those of this sector + this._switchToFrozenSector(sector); + var args = Array.prototype.splice.call(arguments, 1); + if (args.length > 1) { + this[runFunction](args[0],args[1]); + } + else { + this[runFunction](argument); } } } } + this._loadLatestSector(); }; + /** - * 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 runs a function in all sectors. This is used in the _redraw(). * - * @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 {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._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); + 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); + } + } + }; - // validate all edges in dynamicEdges - this._validateEdges(parentNode); - // undo the changes from the clustering operation on the parent node - parentNode.options.mass -= childNode.options.mass; - parentNode.clusterSize -= childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); - parentNode.dynamicEdgesLength = parentNode.dynamicEdges.length; + /** + * 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._clearNodeIndexList = function() { + var sector = this._sector(); + this.sectors["active"][sector]["nodeIndices"] = []; + this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; + }; - // 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]; + /** + * Draw the encompassing sector node + * + * @param ctx + * @param sectorType + * @private + */ + exports._drawSectorNodes = function(ctx,sectorType) { + var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; + for (var sector in this.sectors[sectorType]) { + if (this.sectors[sectorType].hasOwnProperty(sector)) { + if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { - // 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; + this._switchToSector(sector,sectorType); + + minY = 1e9; maxY = -1e9; minX = 1e9; maxX = -1e9; + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + node.resize(ctx); + if (minX > node.x - 0.5 * node.width) {minX = node.x - 0.5 * node.width;} + if (maxX < node.x + 0.5 * node.width) {maxX = node.x + 0.5 * node.width;} + if (minY > node.y - 0.5 * node.height) {minY = node.y - 0.5 * node.height;} + if (maxY < node.y + 0.5 * node.height) {maxY = node.y + 0.5 * node.height;} + } } + node = this.sectors[sectorType][sector]["drawingNode"]; + node.x = 0.5 * (maxX + minX); + node.y = 0.5 * (maxY + minY); + node.width = 2 * (node.x - minX); + node.height = 2 * (node.y - minY); + node.radius = Math.sqrt(Math.pow(0.5*node.width,2) + Math.pow(0.5*node.height,2)); + node.setScale(this.scale); + node._drawCircle(ctx); } } - // if there are no others, remove the cluster session from the list - if (othersPresent == false) { - parentNode.clusterSessions.pop(); - } + } + }; - this._repositionBezierNodes(childNode); - // this._repositionBezierNodes(parentNode); + exports._drawAllSectorNodes = function(ctx) { + this._drawSectorNodes(ctx,"frozen"); + this._drawSectorNodes(ctx,"active"); + this._loadLatestSector(); + }; - // 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(); +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { - // restart the simulation to reorganise all nodes - this.moving = true; - } + var Node = __webpack_require__(36); - // check if a further expansion step is possible if recursivity is enabled - if (recursive == true) { - this._expandClusterNode(childNode,recursive,force,openAll); + /** + * This function can be called from the _doInAllSectors function + * + * @param object + * @param overlappingNodes + * @private + */ + exports._getNodesOverlappingWith = function(object, overlappingNodes) { + var nodes = this.nodes; + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].isOverlappingWith(object)) { + overlappingNodes.push(nodeId); + } + } } }; + /** + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + exports._getAllNodesOverlappingWith = function (object) { + var overlappingNodes = []; + this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); + return overlappingNodes; + }; + /** - * position the bezier nodes at the center of the edges + * Return a position object in canvasspace from a single point in screenspace * - * @param node + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} * @private */ - exports._repositionBezierNodes = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - node.dynamicEdges[i].positionBezierNode(); - } + 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 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 + * Get the top node at the a specific point (like a click) * + * @param {{x: Number, y: Number}} pointer + * @return {Node | null} node * @private - * @param {Boolean} force */ - exports._formClusters = function(force) { - if (force == false) { - this._formClustersByZoom(); + 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._forceClustersByZoom(); + return null; } }; /** - * This function handles the clustering by zooming out, this is based on a minimum edge distance - * + * 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._formClustersByZoom = function() { - var dx,dy,length, - minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - - // check if any edges are shorter than minLength and start the clustering - // the clustering favours the node with the larger mass - for (var edgeId in this.edges) { - if (this.edges.hasOwnProperty(edgeId)) { - var edge = this.edges[edgeId]; - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); - - - if (length < minLength) { - // first check which node is larger - var parentNode = edge.from; - var childNode = edge.to; - if (edge.to.options.mass > edge.from.options.mass) { - parentNode = edge.to; - childNode = edge.from; - } - - if (childNode.dynamicEdgesLength == 1) { - this._addToCluster(parentNode,childNode,false); - } - else if (parentNode.dynamicEdgesLength == 1) { - this._addToCluster(childNode,parentNode,false); - } - } - } + 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 forces the network to cluster all nodes with only one connecting edge to their - * connected node. - * + * 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._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._getAllEdgesOverlappingWith = function (object) { + var overlappingEdges = []; + this._doInAllActiveSectors("_getEdgesOverlappingWith",object,overlappingEdges); + return overlappingEdges; + }; - // 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]; + /** + * 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._getEdgeAt = function(pointer) { + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); - // 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); - } - } - } - } + if (overlappingEdges.length > 0) { + return this.edges[overlappingEdges[overlappingEdges.length - 1]]; + } + else { + return null; } }; /** - * To keep the nodes of roughly equal size we normalize the cluster levels. - * This function clusters a node to its smallest connected neighbour. + * Add object to the selection array. * - * @param node + * @param obj * @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; - } - - - if (neighbour != null && smallestNeighbour > neighbour.clusterSessions.length) { - smallestNeighbour = neighbour.clusterSessions.length; - smallestNeighbourNode = neighbour; - } - } + exports._addToSelection = function(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; } - - if (neighbour != null && this.nodes[neighbour.id] !== undefined) { - this._addToCluster(neighbour, node, true); + else { + this.selectionObj.edges[obj.id] = obj; } }; - /** - * This function forms clusters from hubs, it loops over all nodes + * Add object to the selection array. * - * @param {Boolean} force | Disregard zoom level - * @param {Boolean} onlyEqual | This only clusters a hub with a specific number of edges + * @param obj * @private */ - exports._formClustersByHub = function(force, onlyEqual) { - // we loop over all nodes in the list - for (var nodeId in this.nodes) { - // we check if it is still available since it can be used by the clustering in this loop - if (this.nodes.hasOwnProperty(nodeId)) { - this._formClusterFromHub(this.nodes[nodeId],force,onlyEqual); - } + exports._addToHover = function(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; + } + else { + this.hoverObj.edges[obj.id] = obj; } }; + /** - * This function forms a cluster from a specific preselected hub node + * Remove a single option from selection. * - * @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] | + * @param {Object} obj * @private */ - exports._formClusterFromHub = function(hubNode, force, onlyEqual, absorptionSizeOffset) { - if (absorptionSizeOffset === undefined) { - absorptionSizeOffset = 0; + exports._removeFromSelection = function(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; } - // we decide if the node is a hub - if ((hubNode.dynamicEdgesLength >= this.hubThreshold && onlyEqual == false) || - (hubNode.dynamicEdgesLength == this.hubThreshold && onlyEqual == true)) { - // initialize variables - var dx,dy,length; - var minLength = this.constants.clustering.clusterEdgeThreshold/this.scale; - var allowCluster = false; - - // we create a list of edges because the dynamicEdges change over the course of this loop - var edgesIdarray = []; - var amountOfInitialEdges = hubNode.dynamicEdges.length; - for (var j = 0; j < amountOfInitialEdges; j++) { - edgesIdarray.push(hubNode.dynamicEdges[j].id); - } - - // if the hub clustering is not forces, we check if one of the edges connected - // to a cluster is small enough based on the constants.clustering.clusterEdgeThreshold - if (force == false) { - allowCluster = false; - for (j = 0; j < amountOfInitialEdges; j++) { - var edge = this.edges[edgesIdarray[j]]; - if (edge !== undefined) { - if (edge.connected) { - if (edge.toId != edge.fromId) { - dx = (edge.to.x - edge.from.x); - dy = (edge.to.y - edge.from.y); - length = Math.sqrt(dx * dx + dy * dy); - - if (length < minLength) { - allowCluster = true; - break; - } - } - } - } - } - } - - // start the clustering if allowed - if ((!force && allowCluster) || force) { - // we loop over all edges INITIALLY connected to this hub - for (j = 0; j < amountOfInitialEdges; j++) { - edge = this.edges[edgesIdarray[j]]; - // the edge can be clustered by this function in a previous loop - if (edge !== undefined) { - var childNode = this.nodes[(edge.fromId == hubNode.id) ? edge.toId : edge.fromId]; - // we do not want hubs to merge with other hubs nor do we want to cluster itself. - if ((childNode.dynamicEdges.length <= (this.hubThreshold + absorptionSizeOffset)) && - (childNode.id != hubNode.id)) { - this._addToCluster(hubNode,childNode,force); - } - } - } - } + else { + delete this.selectionObj.edges[obj.id]; } }; - - /** - * This function adds the child node to the parent node, creating a cluster if it is not already. + * Unselect all. The selectionObj is useful for this. * - * @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 + * @param {Boolean} [doNotTrigger] | ignore trigger * @private */ - exports._addToCluster = function(parentNode, childNode, force) { - // join child node in the parent node - parentNode.containedNodes[childNode.id] = childNode; - - // manage all the edges connected to the child and parent nodes - for (var i = 0; i < childNode.dynamicEdges.length; i++) { - var edge = childNode.dynamicEdges[i]; - if (edge.toId == parentNode.id || edge.fromId == parentNode.id) { // edge connected to parentNode - this._addToContainedEdges(parentNode,childNode,edge); + 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(); } - else { - this._connectEdgeToCluster(parentNode,childNode,edge); + } + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + this.selectionObj.edges[edgeId].unselect(); } } - // a contained node has no dynamic edges. - childNode.dynamicEdges = []; - // remove circular edges from clusters - this._containCircularEdgesFromNode(parentNode,childNode); - - - // remove the childNode from the global nodes object - delete this.nodes[childNode.id]; - - // update the properties of the child and parent - var massBefore = parentNode.options.mass; - childNode.clusterSession = this.clusterSession; - parentNode.options.mass += childNode.options.mass; - parentNode.clusterSize += childNode.clusterSize; - parentNode.options.fontSize = Math.min(this.constants.clustering.maxFontSize, this.constants.nodes.fontSize + this.constants.clustering.fontSizeMultiplier*parentNode.clusterSize); + this.selectionObj = {nodes:{},edges:{}}; - // 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); + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); } + }; - // 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 + /** + * Unselect all clusters. The selectionObj is useful for this. + * + * @param {Boolean} [doNotTrigger] | ignore trigger + * @private + */ + exports._unselectClusters = function(doNotTrigger) { + if (doNotTrigger === undefined) { + doNotTrigger = false; } - // recalculate the size of the node on the next time the node is rendered - parentNode.clearSizeCache(); - - // set the pop-out scale for the childnode - parentNode.containedNodes[childNode.id].formationScale = parentNode.formationScale; - - // nullify the movement velocity of the child, this is to avoid hectic behaviour - childNode.clearVelocity(); - - // the mass has altered, preservation of energy dictates the velocity to be updated - parentNode.updateVelocity(massBefore); + 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]); + } + } + } - // restart the simulation to reorganise all nodes - this.moving = true; + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); + } }; /** - * 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(). + * return the number of selected nodes + * + * @returns {number} * @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; - - // 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; - } - } - } + exports._getSelectedNodeCount = function() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; } - node.dynamicEdgesLength -= correction; } + return count; }; - /** - * This adds an edge from the childNode to the contained edges of the parent node + * return the selected node * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * @returns {number} * @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] = [] + exports._getSelectedNode = function() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } } - // add this edge to the list - parentNode.containedEdges[childNode.id].push(edge); - - // remove the edge from the global edges object - delete this.edges[edge.id]; + return null; + }; - // 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; + /** + * 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]; } } + return null; }; + /** - * 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. + * return the number of selected edges * - * @param {Node} parentNode | Node object - * @param {Node} childNode | Node object - * @param {Edge} edge | Edge object + * @returns {number} * @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._getSelectedEdgeCount = function() { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; } - - this._addToReroutedEdges(parentNode,childNode,edge); } + return count; }; /** - * If a node is connected to itself, a circular edge is drawn. When clustering we want to contain - * these edges inside of the cluster. + * return the number of selected objects. * - * @param parentNode - * @param childNode + * @returns {number} * @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._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 adds an edge from the childNode to the rerouted edges of the parent node + * Check if anything is selected * - * @param parentNode | Node object - * @param childNode | Node object - * @param edge | Edge object + * @returns {boolean} * @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._selectionIsEmpty = function() { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } } - parentNode.reroutedEdges[childNode.id].push(edge); - - // this edge becomes part of the dynamicEdges of the cluster node - parentNode.dynamicEdges.push(edge); - }; - + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } + } + return true; + }; /** - * This function connects an edge that was connected to a cluster node back to the child node. + * check if one of the selected nodes is a cluster. * - * @param parentNode | Node object - * @param childNode | Node object + * @returns {boolean} * @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; - } + 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; } } - // remove the entry from the rerouted edges - delete parentNode.reroutedEdges[childNode.id]; } + return 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 + * select the edges connected to the node that is being selected * - * @param parentNode | Node object + * @param {Node} 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._selectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.select(); + this._addToSelection(edge); } }; - /** - * This function released the contained edges back into the global domain and puts them back into the - * dynamic edges of both parent and child. + * select the edges connected to the node that is being selected * - * @param {Node} parentNode | - * @param {Node} childNode | + * @param {Node} node * @private */ - 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); + exports._hoverConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.hover = true; + this._addToHover(edge); } - // remove the entry from the contained edges - delete parentNode.containedEdges[childNode.id]; - }; - - - // ------------------- UTILITY FUNCTIONS ---------------------------- // - - /** - * This updates the node labels for all nodes (for debugging purposes) + * unselect the edges connected to the node that is being selected + * + * @param {Node} node + * @private */ - exports.updateLabels = function() { - var nodeId; - // update node labels - for (nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - var node = this.nodes[nodeId]; - if (node.clusterSize > 1) { - node.label = "[".concat(String(node.clusterSize),"]"); - } - } - } - - // 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); - } - } - } + exports._unselectConnectedEdges = function(node) { + for (var i = 0; i < node.dynamicEdges.length; i++) { + var edge = node.dynamicEdges[i]; + edge.unselect(); + this._removeFromSelection(edge); } + }; - // /* Debug Override */ - // for (nodeId in this.nodes) { - // if (this.nodes.hasOwnProperty(nodeId)) { - // node = this.nodes[nodeId]; - // node.label = String(node.level); - // } - // } - }; /** - * We want to keep the cluster level distribution rather small. This means we do not want unclustered nodes - * if the rest of the nodes are already a few cluster levels in. - * To fix this we use this function. It determines the min and max cluster level and sends nodes that have not - * clustered enough to the clusterToSmallestNeighbours function. + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection + * + * @param {Node || Edge} object + * @param {Boolean} append + * @param {Boolean} [doNotTrigger] | ignore trigger + * @private */ - exports.normalizeClusterLevels = function() { - var maxLevel = 0; - var minLevel = 1e9; - var clusterLevel = 0; - var nodeId; + exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { + if (doNotTrigger === undefined) { + doNotTrigger = false; + } + if (highlightEdges === undefined) { + highlightEdges = true; + } - // 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 (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { + this._unselectAll(true); + } + + 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); + } - 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; - } + if (doNotTrigger == false) { + this.emit('select', this.getSelection()); } }; - /** - * This function determines if the cluster we want to decluster is in the active area - * this means around the zoom center + * 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} node - * @returns {boolean} + * @param {Node || Edge} object * @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._blurObject = function(object) { + if (object.hover == true) { + object.hover = false; + this.emit("blurNode",{node:object.id}); + } }; - /** - * 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 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.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._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); + } }; /** - * 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%) + * 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 * @private */ - exports._getHubSize = function() { - var average = 0; - var averageSquared = 0; - var hubCounter = 0; - var largestHub = 0; + exports._handleTouch = function(pointer) { + }; - for (var i = 0; i < this.nodeIndices.length; i++) { - var node = this.nodes[this.nodeIndices[i]]; - if (node.dynamicEdgesLength > largestHub) { - largestHub = node.dynamicEdgesLength; - } - average += node.dynamicEdgesLength; - averageSquared += Math.pow(node.dynamicEdgesLength,2); - hubCounter += 1; + /** + * 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); } - average = average / hubCounter; - averageSquared = averageSquared / hubCounter; - - var variance = averageSquared - Math.pow(average,2); - - var standardDeviation = Math.sqrt(variance); - - this.hubThreshold = Math.floor(average + 2*standardDeviation); - - // always have at least one to cluster - if (this.hubThreshold > largestHub) { - this.hubThreshold = largestHub; + else { + var edge = this._getEdgeAt(pointer); + if (edge != null) { + this._selectObject(edge,false); + } + else { + this._unselectAll(); + } } - - // console.log("average",average,"averageSQ",averageSquared,"var",variance,"std",standardDeviation); - // console.log("hubThreshold:",this.hubThreshold); + this.emit("click", this.getSelection()); + this._redraw(); }; /** - * 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. + * handles the selection part of the double tap and opens a cluster if needed * - * @param {Number} fraction | between 0 and 1, the percentage of chains to reduce + * @param {Object} pointer * @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._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()); }; + /** - * 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. + * Handle the onHold selection part * + * @param pointer * @private */ - exports._getChainFraction = function() { - var chains = 0; - var total = 0; - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - if (this.nodes[nodeId].dynamicEdgesLength == 2 && this.nodes[nodeId].dynamicEdges.length >= 2) { - chains += 1; - } - total += 1; + exports._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); } } - return chains/total; + this._redraw(); }; -/***/ }, -/* 58 */ -/***/ function(module, exports, __webpack_require__) { + /** + * handle the onRelease event. These functions are here for the navigation controls module. + * + * @private + */ + exports._handleOnRelease = function(pointer) { + + }; + - 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. + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection */ + exports.getSelection = function() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return {nodes:nodeIds, edges:edgeIds}; + }; /** - * 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 + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. */ - 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.getSelectedNodes = function() { + var idArray = []; + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); + } + } + return idArray }; - /** - * /** - * 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 + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. */ - exports._switchToSector = function(sectorId, sectorType) { - if (sectorType === undefined || sectorType == "active") { - this._switchToActiveSector(sectorId); + exports.getSelectedEdges = function() { + var idArray = []; + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); + } } - else { - this._switchToFrozenSector(sectorId); + return idArray; + }; + + + /** + * select zero or more nodes + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + 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 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.redraw(); }; /** - * This function sets the global references to nodes, edges and nodeIndices back to - * those of the supplied active sector. - * - * @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._switchToSupportSector = function() { - this.nodeIndices = this.sectors["support"]["nodeIndices"]; - this.nodes = this.sectors["support"]["nodes"]; - this.edges = this.sectors["support"]["edges"]; - }; + exports.selectNodes = function(selection, highlightEdges) { + var i, iMax, id; + if (!selection || (selection.length == undefined)) + throw 'Selection must be an array with ids'; - /** - * 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"]; - }; + // first unselect any selected node + this._unselectAll(true); + for (i = 0, iMax = selection.length; i < iMax; i++) { + id = selection[i]; - /** - * 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()); + var node = this.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); + } + this._selectObject(node,true,true,highlightEdges); + } + this.redraw(); }; /** - * This function returns the currently active sector Id - * - * @returns {String} - * @private + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. */ - exports._sector = function() { - return this.activeSector[this.activeSector.length-1]; - }; + 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]; + var edge = this.edges[id]; + if (!edge) { + throw new RangeError('Edge with id "' + id + '" not found'); + } + this._selectObject(edge,true,true,highlightEdges); + } + this.redraw(); + }; /** - * This function returns the previously active sector Id - * - * @returns {String} + * Validate the selection: remove ids of nodes which no longer exist * @private */ - exports._previousSector = function() { - if (this.activeSector.length > 1) { - return this.activeSector[this.activeSector.length-2]; + exports._updateSelection = function () { + for(var nodeId in this.selectionObj.nodes) { + if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (!this.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; + } + } } - else { - throw new TypeError('there are not enough sectors in the this.activeSector array.'); + for(var edgeId in this.selectionObj.edges) { + if(this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; + } + } } }; - /** - * 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); - }; +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(1); + var Node = __webpack_require__(36); + var Edge = __webpack_require__(33); /** - * We remove the currently active sector id from the active sector stack. This happens when - * we reactivate the previously active sector + * clears the toolbar div element of children * * @private */ - exports._forgetLastSector = function() { - this.activeSector.pop(); + exports._clearManipulatorBar = function() { + while (this.manipulationDiv.hasChildNodes()) { + this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); + } }; - /** - * This function creates a new active sector with the supplied newId. This newId - * is the expanding node id. + * 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. * - * @param {String} newId | Id of the new active sector * @private */ - exports._createNewSector = function(newId) { - // create the new sector - this.sectors["active"][newId] = {"nodes":{}, - "edges":{}, - "nodeIndices":[], - "formationScale": this.scale, - "drawingNode": undefined}; - - // 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._restoreOverloadedFunctions = function() { + for (var functionName in this.cachedFunctions) { + if (this.cachedFunctions.hasOwnProperty(functionName)) { + this[functionName] = this.cachedFunctions[functionName]; + } + } }; - /** - * This function removes the currently active sector. This is called when we create a new - * active sector. + * Enable or disable edit-mode. * - * @param {String} sectorId | Id of the active sector that will be removed * @private */ - exports._deleteActiveSector = function(sectorId) { - delete this.sectors["active"][sectorId]; + exports._toggleEditMode = function() { + this.editMode = !this.editMode; + var toolbar = document.getElementById("network-manipulationDiv"); + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + var editModeDiv = document.getElementById("network-manipulation-editMode"); + if (this.editMode == true) { + toolbar.style.display="block"; + closeDiv.style.display="block"; + editModeDiv.style.display="none"; + closeDiv.onclick = this._toggleEditMode.bind(this); + } + else { + toolbar.style.display="none"; + closeDiv.style.display="none"; + editModeDiv.style.display="block"; + closeDiv.onclick = null; + } + this._createManipulatorBar() }; - /** - * This function removes the currently active sector. This is called when we reactivate - * the previously active sector. + * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. * - * @param {String} sectorId | Id of the active sector that will be removed * @private */ - exports._deleteFrozenSector = function(sectorId) { - delete this.sectors["frozen"][sectorId]; - }; + exports._createManipulatorBar = function() { + // remove bound functions + if (this.boundFunction) { + this.off('select', this.boundFunction); + } + var locale = this.constants.locales[this.constants.locale]; - /** - * Freezing an active sector means moving it from the "active" object to the "frozen" object. - * We copy the references, then delete the active entree. - * - * @param sectorId - * @private - */ - exports._freezeSector = function(sectorId) { - // we move the set references from the active to the frozen stack. - this.sectors["frozen"][sectorId] = this.sectors["active"][sectorId]; + if (this.edgeBeingEdited !== undefined) { + this.edgeBeingEdited._disableControlNodes(); + this.edgeBeingEdited = undefined; + this.selectedControlNode = null; + this.controlNodesActive = false; + } - // we have moved the sector data into the frozen set, we now remove it from the active set - this._deleteActiveSector(sectorId); - }; + // 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['addNode'] +"" + + "
" + + "" + + ""+locale['addEdge'] +""; + 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 is the reverse operation of _freezeSector. Activating means moving the sector from the "frozen" - * object to the "active" object. - * - * @param sectorId - * @private - */ - exports._activateSector = function(sectorId) { - // we move the set references from the frozen to the active stack. - this.sectors["active"][sectorId] = this.sectors["frozen"][sectorId]; + // bind the icons + var addNodeButton = document.getElementById("network-manipulate-addNode"); + addNodeButton.onclick = this._createAddNodeToolbar.bind(this); + var addEdgeButton = document.getElementById("network-manipulate-connectNode"); + addEdgeButton.onclick = this._createAddEdgeToolbar.bind(this); + if (this._getSelectedNodeCount() == 1 && this.triggerFunctions.edit) { + var editButton = document.getElementById("network-manipulate-editNode"); + editButton.onclick = this._editNode.bind(this); + } + else if (this._getSelectedEdgeCount() == 1 && this._getSelectedNodeCount() == 0) { + var editButton = document.getElementById("network-manipulate-editEdge"); + editButton.onclick = this._createEditEdgeToolbar.bind(this); + } + if (this._selectionIsEmpty() == false) { + var deleteButton = document.getElementById("network-manipulate-delete"); + deleteButton.onclick = this._deleteSelected.bind(this); + } + var closeDiv = document.getElementById("network-manipulation-closeDiv"); + closeDiv.onclick = this._toggleEditMode.bind(this); - // we have moved the sector data into the active set, we now remove it from the frozen stack - this._deleteFrozenSector(sectorId); + this.boundFunction = this._createManipulatorBar.bind(this); + this.on('select', this.boundFunction); + } + else { + this.editModeDiv.innerHTML = "" + + "" + + "" + locale['edit'] + ""; + var editModeButton = document.getElementById("network-manipulate-editModeButton"); + editModeButton.onclick = this._toggleEditMode.bind(this); + } }; + /** - * 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. + * Create the toolbar for adding Nodes * - * @param sectorId * @private */ - exports._mergeThisWithFrozen = function(sectorId) { - // copy all nodes - for (var nodeId in this.nodes) { - if (this.nodes.hasOwnProperty(nodeId)) { - this.sectors["frozen"][sectorId]["nodes"][nodeId] = this.nodes[nodeId]; - } + exports._createAddNodeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + if (this.boundFunction) { + this.off('select', this.boundFunction); } - // 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]; - } - } + var locale = this.constants.locales[this.constants.locale]; - // merge the nodeIndices - for (var i = 0; i < this.nodeIndices.length; i++) { - this.sectors["frozen"][sectorId]["nodeIndices"].push(this.nodeIndices[i]); - } - }; + // 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); - /** - * This clusters the sector to one cluster. It was a single cluster before this process started so - * we revert to that state. The clusterToFit function with a maximum size of 1 node does this. - * - * @private - */ - exports._collapseThisToSingleCluster = function() { - this.clusterToFit(1,false); + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._addNode.bind(this); + this.on('select', this.boundFunction); }; /** - * We create a new active sector from the node that we want to open. + * create the toolbar to connect nodes * - * @param node * @private */ - exports._addSector = function(node) { - // this is the currently active sector - var sector = this._sector(); + exports._createAddEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this._unselectAll(true); + this.freezeSimulation = true; - // // 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!!"); - // } + var locale = this.constants.locales[this.constants.locale]; - // 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]; + if (this.boundFunction) { + this.off('select', this.boundFunction); + } - var unqiueIdentifier = util.randomUUID(); + this._unselectAll(); + this.forceAppendSelection = false; + this.blockConnectingEdgeSelection = true; - // we fully freeze the currently active sector - this._freezeSector(sector); + this.manipulationDiv.innerHTML = "" + + "" + + "" + locale['back'] + " " + + "
" + + "" + + "" + locale['edgeDescription'] + ""; - // we create a new active sector. This sector has the Id of the node to ensure uniqueness - this._createNewSector(unqiueIdentifier); + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); - // we add the active sector to the sectors array to be able to revert these steps later on - this._setActiveSector(unqiueIdentifier); + // we use the boundFunction so we can reference it when we unbind it from the "select" event. + this.boundFunction = this._handleConnect.bind(this); + this.on('select', this.boundFunction); - // we redirect the global references to the new sector's references. this._sector() now returns unqiueIdentifier - this._switchToSector(this._sector()); + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this._handleTouch = this._handleConnect; + this._handleOnRelease = this._finishConnect; - // finally we add the node we removed from our previous active sector to the new active sector - this.nodes[node.id] = node; + // redraw to show the unselect + this._redraw(); }; - /** - * 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. + * create the toolbar to edit edges * * @private */ - exports._collapseSector = function() { - // the currently active sector - var sector = this._sector(); - - // we cannot collapse the default sector - if (sector != "default") { - if ((this.nodeIndices.length == 1) || - (this.sectors["active"][sector]["drawingNode"].width*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientWidth) || - (this.sectors["active"][sector]["drawingNode"].height*this.scale < this.constants.clustering.screenSizeThreshold * this.frame.canvas.clientHeight)) { - var previousSector = this._previousSector(); - - // we collapse the sector back to a single cluster - this._collapseThisToSingleCluster(); - - // we move the remaining nodes, edges and nodeIndices to the previous sector. - // This previous sector is the one we will reactivate - this._mergeThisWithFrozen(previousSector); - - // the previously active (frozen) sector now has all the data from the currently active sector. - // we can now delete the active sector. - this._deleteActiveSector(sector); - - // we activate the previously active (and currently frozen) sector. - this._activateSector(previousSector); + exports._createEditEdgeToolbar = function() { + // clear the toolbar + this._clearManipulatorBar(); + this.controlNodesActive = true; - // we load the references from the newly active sector into the global references - this._switchToSector(previousSector); + if (this.boundFunction) { + this.off('select', this.boundFunction); + } - // we forget the previously active sector because we reverted to the one before - this._forgetLastSector(); + this.edgeBeingEdited = this._getSelectedEdge(); + this.edgeBeingEdited._enableControlNodes(); - // finally, we update the node index list. - this._updateNodeIndexList(); + var locale = this.constants.locales[this.constants.locale]; - // we refresh the list with calulation nodes and calculation node indices. - this._updateCalculationNodes(); - } - } - }; + this.manipulationDiv.innerHTML = "" + + "" + + "" + locale['back'] + " " + + "
" + + "" + + "" + locale['editEdgeDescription'] + ""; + // bind the icon + var backButton = document.getElementById("network-manipulate-back"); + backButton.onclick = this._createManipulatorBar.bind(this); - /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). - * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction - * @private - */ - exports._doInAllActiveSectors = function(runFunction,argument) { - if (argument === undefined) { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - this[runFunction](); - } - } - } - else { - for (var sector in this.sectors["active"]) { - if (this.sectors["active"].hasOwnProperty(sector)) { - // switch the global references to those of this sector - this._switchToActiveSector(sector); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } - } - } - } - // we revert the global references back to our active sector - this._loadLatestSector(); + // temporarily overload functions + this.cachedFunctions["_handleTouch"] = this._handleTouch; + this.cachedFunctions["_handleOnRelease"] = this._handleOnRelease; + this.cachedFunctions["_handleTap"] = this._handleTap; + this.cachedFunctions["_handleDragStart"] = this._handleDragStart; + this.cachedFunctions["_handleOnDrag"] = this._handleOnDrag; + this._handleTouch = this._selectControlNode; + this._handleTap = function () {}; + this._handleOnDrag = this._controlNodeDrag; + this._handleDragStart = function () {} + this._handleOnRelease = this._releaseControlNode; + + // redraw to show the unselect + this._redraw(); }; + + + /** - * This runs a function in all active sectors. This is used in _redraw() and the _initializeForceCalculation(). + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we dont pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInSupportSector = function(runFunction,argument) { - if (argument === undefined) { - this._switchToSupportSector(); - this[runFunction](); - } - else { - this._switchToSupportSector(); - var args = Array.prototype.splice.call(arguments, 1); - if (args.length > 1) { - this[runFunction](args[0],args[1]); - } - else { - this[runFunction](argument); - } + exports._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; } - // we revert the global references back to our active sector - this._loadLatestSector(); + this._redraw(); }; - /** - * This runs a function in all frozen sectors. This is used in the _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. * - * @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._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](); - } + 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); + } + this._redraw(); + }; + + exports._releaseControlNode = function(pointer) { + var newNode = this._getNodeAt(pointer); + if (newNode != null) { + if (this.edgeBeingEdited.controlNodes.from.selected == true) { + this._editEdge(newNode.id, this.edgeBeingEdited.to.id); + this.edgeBeingEdited.controlNodes.from.unselect(); + } + if (this.edgeBeingEdited.controlNodes.to.selected == true) { + this._editEdge(this.edgeBeingEdited.from.id, newNode.id); + this.edgeBeingEdited.controlNodes.to.unselect(); } } else { - 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.edgeBeingEdited._restoreControlNodes(); } - this._loadLatestSector(); + this.freezeSimulation = false; + this._redraw(); }; - /** - * This runs a function in all sectors. This is used in the _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. * - * @param {String} runFunction | This is the NAME of a function we want to call in all active sectors - * | we don't pass the function itself because then the "this" is the window object - * | instead of the Network object - * @param {*} [argument] | Optional: arguments to pass to the runFunction * @private */ - exports._doInAllSectors = function(runFunction,argument) { - var args = Array.prototype.splice.call(arguments, 1); - if (argument === undefined) { - this._doInAllActiveSectors(runFunction); - this._doInAllFrozenSectors(runFunction); - } - else { - if (args.length > 1) { - this._doInAllActiveSectors(runFunction,args[0],args[1]); - this._doInAllFrozenSectors(runFunction,args[0],args[1]); - } - else { - this._doInAllActiveSectors(runFunction,argument); - this._doInAllFrozenSectors(runFunction,argument); + 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._finishConnect = function(pointer) { + if (this._getSelectedNodeCount() == 1) { - /** - * 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._clearNodeIndexList = function() { - var sector = this._sector(); - this.sectors["active"][sector]["nodeIndices"] = []; - this.nodeIndices = this.sectors["active"][sector]["nodeIndices"]; - }; - + // restore the drag function + this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; + delete this.cachedFunctions["_handleOnDrag"]; - /** - * Draw the encompassing sector node - * - * @param ctx - * @param sectorType - * @private - */ - exports._drawSectorNodes = function(ctx,sectorType) { - var minY = 1e9, maxY = -1e9, minX = 1e9, maxX = -1e9, node; - for (var sector in this.sectors[sectorType]) { - if (this.sectors[sectorType].hasOwnProperty(sector)) { - if (this.sectors[sectorType][sector]["drawingNode"] !== undefined) { + // remember the edge id + var connectFromId = this.edges['connectionEdge'].fromId; - this._switchToSector(sector,sectorType); + // remove the temporary nodes and edge + delete this.edges['connectionEdge']; + delete this.sectors['support']['nodes']['targetNode']; + delete this.sectors['support']['nodes']['targetViaNode']; - 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); + 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(); } }; - exports._drawAllSectorNodes = function(ctx) { - this._drawSectorNodes(ctx,"frozen"); - this._drawSectorNodes(ctx,"active"); - this._loadLatestSector(); + + /** + * Adds a node on the specified location + */ + exports._addNode = function() { + if (this._selectionIsEmpty() && this.editMode == true) { + var positionObject = this._pointerToPositionObject(this.pointerPosition); + var defaultData = {id:util.randomUUID(),x:positionObject.left,y:positionObject.top,label:"new",allowedToMoveX:true,allowedToMoveY:true}; + if (this.triggerFunctions.add) { + if (this.triggerFunctions.add.length == 2) { + var me = this; + this.triggerFunctions.add(defaultData, function(finalizedData) { + me.nodesData.add(finalizedData); + me._createManipulatorBar(); + me.moving = true; + me.start(); + }); + } + else { + throw new Error('The function for add does not support two arguments (data,callback)'); + this._createManipulatorBar(); + this.moving = true; + this.start(); + } + } + else { + this.nodesData.add(defaultData); + this._createManipulatorBar(); + this.moving = true; + this.start(); + } + } }; -/***/ }, -/* 59 */ -/***/ function(module, exports, __webpack_require__) { - - var Node = __webpack_require__(46); - /** - * This function can be called from the _doInAllSectors function + * connect two nodes with a new edge. * - * @param object - * @param overlappingNodes * @private */ - exports._getNodesOverlappingWith = function(object, overlappingNodes) { - var nodes = this.nodes; - for (var nodeId in nodes) { - if (nodes.hasOwnProperty(nodeId)) { - if (nodes[nodeId].isOverlappingWith(object)) { - overlappingNodes.push(nodeId); + exports._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(); + } } }; /** - * retrieve all nodes overlapping with given object - * @param {Object} object An object with parameters left, top, right, bottom - * @return {Number[]} An array with id's of the overlapping nodes - * @private - */ - exports._getAllNodesOverlappingWith = function (object) { - var overlappingNodes = []; - this._doInAllActiveSectors("_getNodesOverlappingWith",object,overlappingNodes); - return overlappingNodes; - }; - - - /** - * Return a position object in canvasspace from a single point in screenspace + * connect two nodes with a new edge. * - * @param pointer - * @returns {{left: number, top: number, right: number, bottom: number}} * @private */ - exports._pointerToPositionObject = function(pointer) { - var x = this._XconvertDOMtoCanvas(pointer.x); - var y = this._YconvertDOMtoCanvas(pointer.y); - - return { - left: x, - top: y, - right: x, - bottom: y - }; + 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(); + } + } }; - /** - * Get the top node at the a specific point (like a click) + * 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 {{x: Number, y: Number}} pointer - * @return {Node | null} node * @private */ - exports._getNodeAt = function (pointer) { - // we first check if this is an navigation controls element - var positionObject = this._pointerToPositionObject(pointer); - var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); - - // if there are overlapping nodes, select the last one, this is the - // one which is drawn on top of the others - if (overlappingNodes.length > 0) { - return this.nodes[overlappingNodes[overlappingNodes.length - 1]]; + 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 { - return null; + throw new Error('No edit function has been bound to this button'); } }; + + /** - * 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 + * delete everything in the selection + * * @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._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"]); + } } }; - /** - * 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; - }; +/***/ }, +/* 57 */ +/***/ function(module, exports, __webpack_require__) { - /** - * 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._getEdgeAt = function(pointer) { - var positionObject = this._pointerToPositionObject(pointer); - var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + var util = __webpack_require__(1); + var Hammer = __webpack_require__(41); - if (overlappingEdges.length > 0) { - return this.edges[overlappingEdges[overlappingEdges.length - 1]]; - } - else { - return null; + exports._cleanNavigation = function() { + // clean up previous navigation items + var wrapper = document.getElementById('network-navigation_wrapper'); + if (wrapper && wrapper.parentNode) { + wrapper.parentNode.removeChild(wrapper); } + document.onmouseup = null; }; - /** - * Add object to the selection array. + * 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 obj * @private */ - exports._addToSelection = function(obj) { - if (obj instanceof Node) { - this.selectionObj.nodes[obj.id] = obj; - } - else { - this.selectionObj.edges[obj.id] = obj; - } - }; + exports._loadNavigationElements = function() { + this._cleanNavigation(); - /** - * Add object to the selection array. - * - * @param obj - * @private - */ - exports._addToHover = function(obj) { - if (obj instanceof Node) { - this.hoverObj.nodes[obj.id] = obj; - } - else { - this.hoverObj.edges[obj.id] = obj; + this.navigationDivs = {}; + var navigationDivs = ['up','down','left','right','zoomIn','zoomOut','zoomExtends']; + var navigationDivActions = ['_moveUp','_moveDown','_moveLeft','_moveRight','_zoomIn','_zoomOut','zoomExtent']; + + this.navigationDivs['wrapper'] = document.createElement('div'); + this.navigationDivs['wrapper'].id = 'network-navigation_wrapper'; + this.frame.appendChild(this.navigationDivs['wrapper']); + + 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)); }; - /** - * Remove a single option from selection. + * this stops all movement induced by the navigation buttons * - * @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._stopMovement = function() { + this._xStopMoving(); + this._yStopMoving(); + this._stopZoom(); }; + /** - * Unselect all. The selectionObj is useful for this. + * 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 {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._moveUp = function(event) { + this.yIncrement = this.constants.keyboard.speed.y; + this.start(); // if there is no node movement, the calculation wont be done + event.preventDefault(); + }; - this.selectionObj = {nodes:{},edges:{}}; - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); - } + /** + * 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 + event.preventDefault(); }; + /** - * Unselect all clusters. The selectionObj is useful for this. - * - * @param {Boolean} [doNotTrigger] | ignore trigger + * move the screen left * @private */ - exports._unselectClusters = function(doNotTrigger) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } + exports._moveLeft = function(event) { + this.xIncrement = this.constants.keyboard.speed.x; + this.start(); // if there is no node movement, the calculation wont be done + event.preventDefault(); + }; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - this.selectionObj.nodes[nodeId].unselect(); - this._removeFromSelection(this.selectionObj.nodes[nodeId]); - } - } - } - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); - } + /** + * move the screen 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 + event.preventDefault(); }; /** - * return the number of selected nodes - * - * @returns {number} + * Zoom in, using the same method as the movement. * @private */ - exports._getSelectedNodeCount = function() { - var count = 0; - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - count += 1; - } - } - return count; + exports._zoomIn = function(event) { + this.zoomIncrement = this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + event.preventDefault(); }; + /** - * return the selected node - * - * @returns {number} + * Zoom out * @private */ - exports._getSelectedNode = function() { - for (var nodeId in this.selectionObj.nodes) { - if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return this.selectionObj.nodes[nodeId]; - } - } - return null; + exports._zoomOut = function(event) { + this.zoomIncrement = -this.constants.keyboard.speed.zoom; + this.start(); // if there is no node movement, the calculation wont be done + event.preventDefault(); }; + /** - * return the selected edge - * - * @returns {number} + * Stop zooming and unhighlight the zoom controls * @private */ - exports._getSelectedEdge = function() { - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - return this.selectionObj.edges[edgeId]; - } - } - return null; + exports._stopZoom = function(event) { + this.zoomIncrement = 0; + event && event.preventDefault(); }; /** - * return the number of selected edges - * - * @returns {number} + * Stop moving in the Y direction and unHighlight the up and down * @private */ - exports._getSelectedEdgeCount = function() { - var count = 0; - for (var edgeId in this.selectionObj.edges) { - if (this.selectionObj.edges.hasOwnProperty(edgeId)) { - count += 1; - } - } - return count; + exports._yStopMoving = function(event) { + this.yIncrement = 0; + event && event.preventDefault(); }; /** - * return the number of selected objects. - * - * @returns {number} + * Stop moving in the X direction and unHighlight left and right. * @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; + exports._xStopMoving = function(event) { + this.xIncrement = 0; + event && event.preventDefault(); + }; + + +/***/ }, +/* 58 */ +/***/ 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 count; }; /** - * Check if anything is selected + * This is the main function to layout the nodes in a hierarchical way. + * It checks if the node details are supplied correctly * - * @returns {boolean} * @private */ - exports._selectionIsEmpty = function() { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - return false; + 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; } - } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - return false; + else { + this.constants.hierarchicalLayout.levelSeparation = Math.abs(this.constants.hierarchicalLayout.levelSeparation); } - } - return true; - }; + 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); - /** - * check if one of the selected nodes is a cluster. - * - * @returns {boolean} - * @private - */ - exports._clusterInSelection = function() { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (this.selectionObj.nodes[nodeId].clusterSize > 1) { - return true; - } + // start the simulation. + this.start(); } } - return false; }; - /** - * 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); - } - }; /** - * select the edges connected to the node that is being selected + * This function places the nodes on the canvas based on the hierarchial distribution. * - * @param {Node} node + * @param {Object} distribution | obtained by the function this._getDistribution() * @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._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)) { - /** - * unselect the edges connected to the node that is being selected - * - * @param {Node} node - * @private - */ - exports._unselectConnectedEdges = function(node) { - for (var i = 0; i < node.dynamicEdges.length; i++) { - var edge = node.dynamicEdges[i]; - edge.unselect(); - this._removeFromSelection(edge); - } - }; + for (nodeId in distribution[level].nodes) { + if (distribution[level].nodes.hasOwnProperty(nodeId)) { + node = distribution[level].nodes[nodeId]; + if (this.constants.hierarchicalLayout.direction == "UD" || this.constants.hierarchicalLayout.direction == "DU") { + if (node.xFixed) { + node.x = distribution[level].minPos; + node.xFixed = false; + + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + else { + if (node.yFixed) { + node.y = distribution[level].minPos; + node.yFixed = false; + distribution[level].minPos += distribution[level].nodeSpacing; + } + } + this._placeBranchNodes(node.edges,node.id,distribution,node.level); + } + } + } + } + // stabilize the system after positioning. This function calls zoomExtent. + this._stabilize(); + }; /** - * This 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 function get the distribution of levels based on hubsize * - * @param {Node || Edge} object - * @param {Boolean} append - * @param {Boolean} [doNotTrigger] | ignore trigger + * @returns {Object} * @private */ - exports._selectObject = function(object, append, doNotTrigger, highlightEdges) { - if (doNotTrigger === undefined) { - doNotTrigger = false; - } - if (highlightEdges === undefined) { - highlightEdges = true; - } + exports._getDistribution = function() { + var distribution = {}; + var nodeId, node, level; - if (this._selectionIsEmpty() == false && append == false && this.forceAppendSelection == false) { - this._unselectAll(true); + // 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; + } } - if (object.selected == false) { - object.select(); - this._addToSelection(object); - if (object instanceof Node && this.blockConnectingEdgeSelection == false && highlightEdges == true) { - this._selectConnectedEdges(object); + // 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; + } } } - else { - object.unselect(); - this._removeFromSelection(object); - } - if (doNotTrigger == false) { - this.emit('select', this.getSelection()); + // 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); + } } + + return distribution; }; /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection + * this function allocates nodes in levels based on the recursive branching from the largest hubs. * - * @param {Node || Edge} object + * @param hubsize * @private */ - exports._blurObject = function(object) { - if (object.hover == true) { - object.hover = false; - this.emit("blurNode",{node:object.id}); - } - }; + exports._determineLevels = function(hubsize) { + var nodeId, node; - /** - * This is called when someone clicks on a node. either select or deselect it. - * If there is an existing selection and we don't want to append to it, clear the existing selection - * - * @param {Node || Edge} object - * @private - */ - exports._hoverObject = function(object) { - if (object.hover == false) { - object.hover = true; - this._addToHover(object); - if (object instanceof Node) { - this.emit("hoverNode",{node:object.id}); + // determine hubs + for (nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + node = this.nodes[nodeId]; + if (node.edges.length == hubsize) { + node.level = 0; + } } } - if (object instanceof Node) { - this._hoverConnectedEdges(object); + + // 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); + } + } } }; /** - * 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 + * Since hierarchical layout does not support: + * - smooth curves (based on the physics), + * - clustering (based on dynamic node counts) + * + * We disable both features so there will be no problems. * - * @param {Object} pointer * @private */ - exports._handleTouch = function(pointer) { + 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(); }; /** - * handles the selection part of the tap; + * 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 {Object} pointer + * @param edges + * @param parentId + * @param distribution + * @param parentLevel * @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); + 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 { - this._unselectAll(); + 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); + } } } - this.emit("click", this.getSelection()); - this._redraw(); }; /** - * handles the selection part of the double tap and opens a cluster if needed + * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. * - * @param {Object} pointer + * @param level + * @param edges + * @param parentId * @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); + 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.emit("doubleClick", this.getSelection()); }; /** - * Handle the onHold selection part + * Unfix nodes * - * @param pointer * @private */ - exports._handleOnHold = function(pointer) { - var node = this._getNodeAt(pointer); - if (node != null) { - this._selectObject(node,true); - } - else { - var edge = this._getEdgeAt(pointer); - if (edge != null) { - this._selectObject(edge,true); + exports._restoreNodes = function() { + for (var nodeId in this.nodes) { + if (this.nodes.hasOwnProperty(nodeId)) { + this.nodes[nodeId].xFixed = false; + this.nodes[nodeId].yFixed = false; } } - this._redraw(); }; - /** - * handle the onRelease event. These functions are here for the navigation controls module. - * - * @private - */ - exports._handleOnRelease = function(pointer) { - - }; - +/***/ }, +/* 59 */ +/***/ function(module, exports, __webpack_require__) { + var util = __webpack_require__(1); + var RepulsionMixin = __webpack_require__(61); + var HierarchialRepulsionMixin = __webpack_require__(62); + var BarnesHutMixin = __webpack_require__(63); /** + * Toggling barnes Hut calculation on and off. * - * retrieve the currently selected objects - * @return {{nodes: Array., edges: Array.}} selection + * @private */ - exports.getSelection = function() { - var nodeIds = this.getSelectedNodes(); - var edgeIds = this.getSelectedEdges(); - return {nodes:nodeIds, edges:edgeIds}; + exports._toggleBarnesHut = function () { + this.constants.physics.barnesHut.enabled = !this.constants.physics.barnesHut.enabled; + this._loadSelectedForceSolver(); + this.moving = true; + this.start(); }; - /** - * - * retrieve the currently selected nodes - * @return {String[]} selection An array with the ids of the - * selected nodes. - */ - exports.getSelectedNodes = function() { - var idArray = []; - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - idArray.push(nodeId); - } - } - return idArray - }; /** + * This loads the node force solver based on the barnes hut or repulsion algorithm * - * 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); - } - } - return idArray; - }; + 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; - /** - * select zero or more nodes - * @param {Number[] | String[]} selection An array with the ids of the - * selected nodes. - */ - exports.setSelection = function(selection) { - var i, iMax, id; + this._loadMixin(BarnesHutMixin); + } + else if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._clearMixin(BarnesHutMixin); + this._clearMixin(RepulsionMixin); - if (!selection || (selection.length == undefined)) - throw 'Selection must be an array with ids'; + 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; - // first unselect any selected node - this._unselectAll(true); + this._loadMixin(HierarchialRepulsionMixin); + } + else { + this._clearMixin(BarnesHutMixin); + this._clearMixin(HierarchialRepulsionMixin); + this.barnesHutTree = undefined; - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + 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; - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); - } - this._selectObject(node,true,true); + this._loadMixin(RepulsionMixin); } + }; - console.log("setSelection is deprecated. Please use selectNodes instead.") + /** + * 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); + } - this.redraw(); + // we now start the force calculation + this._calculateForces(); + } }; /** - * 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] + * Calculate the external forces acting on the nodes + * Forces are caused by: edges, repulsing forces between nodes, gravity + * @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); + 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 - for (i = 0, iMax = selection.length; i < iMax; i++) { - id = selection[i]; + this._calculateGravitationalForces(); + this._calculateNodeForces(); - var node = this.nodes[id]; - if (!node) { - throw new RangeError('Node with id "' + id + '" not found'); + if (this.constants.physics.springConstant > 0) { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this._calculateSpringForcesWithSupport(); + } + else { + if (this.constants.physics.hierarchicalRepulsion.enabled == true) { + this._calculateHierarchicalSpringForces(); + } + else { + this._calculateSpringForces(); + } } - this._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. + * 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.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]; + exports._updateCalculationNodes = function () { + if (this.constants.smoothCurves.enabled == true && this.constants.smoothCurves.dynamic == true) { + this.calculationNodes = {}; + this.calculationNodeIndices = []; - var edge = this.edges[id]; - if (!edge) { - throw new RangeError('Edge with id "' + id + '" not found'); + 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); + } + } } - this._selectObject(edge,true,true,highlightEdges); - } - this.redraw(); - }; - /** - * Validate the selection: remove ids of nodes which no longer exist - * @private - */ - exports._updateSelection = function () { - for(var nodeId in this.selectionObj.nodes) { - if(this.selectionObj.nodes.hasOwnProperty(nodeId)) { - if (!this.nodes.hasOwnProperty(nodeId)) { - delete this.selectionObj.nodes[nodeId]; + for (var idx in this.calculationNodes) { + if (this.calculationNodes.hasOwnProperty(idx)) { + this.calculationNodeIndices.push(idx); } } } - for(var edgeId in this.selectionObj.edges) { - if(this.selectionObj.edges.hasOwnProperty(edgeId)) { - if (!this.edges.hasOwnProperty(edgeId)) { - delete this.selectionObj.edges[edgeId]; - } - } + else { + this.calculationNodes = this.nodes; + this.calculationNodeIndices = this.nodeIndices; } }; -/***/ }, -/* 60 */ -/***/ function(module, exports, __webpack_require__) { - - var util = __webpack_require__(1); - var Node = __webpack_require__(46); - var Edge = __webpack_require__(45); - /** - * clears the toolbar div element of children + * this function applies the central gravity effect to keep groups from floating off * * @private */ - exports._clearManipulatorBar = function() { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } - }; + exports._calculateGravitationalForces = function () { + var dx, dy, distance, node, i; + var nodes = this.calculationNodes; + var gravity = this.constants.physics.centralGravity; + var gravityForce = 0; - /** - * 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._restoreOverloadedFunctions = function() { - for (var functionName in this.cachedFunctions) { - if (this.cachedFunctions.hasOwnProperty(functionName)) { - this[functionName] = this.cachedFunctions[functionName]; + 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; } } }; - /** - * Enable or disable edit-mode. - * - * @private - */ - exports._toggleEditMode = function() { - this.editMode = !this.editMode; - var toolbar = document.getElementById("network-manipulationDiv"); - var closeDiv = document.getElementById("network-manipulation-closeDiv"); - var editModeDiv = document.getElementById("network-manipulation-editMode"); - if (this.editMode == true) { - toolbar.style.display="block"; - closeDiv.style.display="block"; - editModeDiv.style.display="none"; - closeDiv.onclick = this._toggleEditMode.bind(this); - } - else { - toolbar.style.display="none"; - closeDiv.style.display="none"; - editModeDiv.style.display="block"; - closeDiv.onclick = null; - } - this._createManipulatorBar() - }; + + /** - * main function, creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * this function calculates the effects of the springs in the case of unsmooth curves. * * @private */ - 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(); + exports._calculateSpringForces = function () { + var edgeLength, edge, edgeId; + var dx, dy, fx, fy, springForce, distance; + var edges = this.edges; - // resume calculation - this.freezeSimulation = 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)) { + 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; - // reset global variables - this.blockConnectingEdgeSelection = false; - this.forceAppendSelection = false; + dx = (edge.from.x - edge.to.x); + dy = (edge.from.y - edge.to.y); + distance = Math.sqrt(dx * dx + dy * dy); - if (this.editMode == true) { - while (this.manipulationDiv.hasChildNodes()) { - this.manipulationDiv.removeChild(this.manipulationDiv.firstChild); - } + if (distance == 0) { + distance = 0.01; + } - // 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'] +""; - } + // 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; - // 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); + edge.from.fx += fx; + edge.from.fy += fy; + edge.to.fx -= fx; + edge.to.fy -= fy; + } + } } - 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.editModeDiv.innerHTML = "" + - "" + - "" + locale['edit'] + ""; - var editModeButton = document.getElementById("network-manipulate-editModeButton"); - editModeButton.onclick = this._toggleEditMode.bind(this); } }; + /** - * Create the toolbar for adding Nodes + * This function calculates the springforces on the nodes, accounting for the support nodes. * * @private */ - exports._createAddNodeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - if (this.boundFunction) { - this.off('select', this.boundFunction); - } + exports._calculateSpringForcesWithSupport = function () { + var edgeLength, edge, edgeId, combinedClusterSize; + var edges = this.edges; - var locale = this.constants.locales[this.constants.locale]; + // 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; - // create the toolbar contents - this.manipulationDiv.innerHTML = "" + - "" + - "" + locale['back'] + " " + - "
" + - "" + - "" + locale['addDescription'] + ""; + edgeLength = edge.physics.springLength; - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + combinedClusterSize = node1.clusterSize + node3.clusterSize - 2; - // 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 implies that the edges between big clusters are longer + edgeLength += combinedClusterSize * this.constants.clustering.edgeGrowth; + this._calculateSpringForce(node1, node2, 0.5 * edgeLength); + this._calculateSpringForce(node2, node3, 0.5 * edgeLength); + } + } + } + } + } }; /** - * create the toolbar to connect nodes + * 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._createAddEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this._unselectAll(true); - this.freezeSimulation = true; + exports._calculateSpringForce = function (node1, node2, edgeLength) { + var dx, dy, fx, fy, springForce, distance; - var locale = this.constants.locales[this.constants.locale]; + dx = (node1.x - node2.x); + dy = (node1.y - node2.y); + distance = Math.sqrt(dx * dx + dy * dy); - if (this.boundFunction) { - this.off('select', this.boundFunction); + if (distance == 0) { + distance = 0.01; } - 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); + // 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._handleTouch = this._handleConnect; - this._handleOnRelease = this._finishConnect; + fx = dx * springForce; + fy = dy * springForce; - // redraw to show the unselect - this._redraw(); + node1.fx += fx; + node1.fy += fy; + node2.fx -= fx; + node2.fy -= fy; }; + /** - * create the toolbar to edit edges - * + * Load the HTML for the physics config and bind it * @private */ - exports._createEditEdgeToolbar = function() { - // clear the toolbar - this._clearManipulatorBar(); - this.controlNodesActive = true; - - if (this.boundFunction) { - this.off('select', this.boundFunction); - } - - this.edgeBeingEdited = this._getSelectedEdge(); - this.edgeBeingEdited._enableControlNodes(); + exports._loadPhysicsConfiguration = function () { + if (this.physicsConfiguration === undefined) { + this.backupConstants = {}; + util.deepExtend(this.backupConstants,this.constants); - var locale = this.constants.locales[this.constants.locale]; + 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); - this.manipulationDiv.innerHTML = "" + - "" + - "" + locale['back'] + " " + - "
" + - "" + - "" + locale['editEdgeDescription'] + ""; + 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"); - // bind the icon - var backButton = document.getElementById("network-manipulate-back"); - backButton.onclick = this._createManipulatorBar.bind(this); + 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"); - // 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; + 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"); - // redraw to show the unselect - this._redraw(); - }; + var radioButton1 = document.getElementById("graph_physicsMethod1"); + var radioButton2 = document.getElementById("graph_physicsMethod2"); + var radioButton3 = document.getElementById("graph_physicsMethod3"); + radioButton2.checked = true; + if (this.constants.physics.barnesHut.enabled) { + radioButton1.checked = true; + } + if (this.constants.hierarchicalLayout.enabled) { + radioButton3.checked = true; + } + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + var graph_repositionNodes = document.getElementById("graph_repositionNodes"); + var graph_generateOptions = document.getElementById("graph_generateOptions"); + graph_toggleSmooth.onclick = graphToggleSmoothCurves.bind(this); + graph_repositionNodes.onclick = graphRepositionNodes.bind(this); + graph_generateOptions.onclick = graphGenerateOptions.bind(this); + if (this.constants.smoothCurves == true && this.constants.dynamicSmoothCurves == false) { + graph_toggleSmooth.style.background = "#A4FF56"; + } + else { + graph_toggleSmooth.style.background = "#FF8532"; + } + switchConfigurations.apply(this); - /** - * the function bound to the selection event. It checks if you want to connect a cluster and changes the description - * to walk the user through the process. - * - * @private - */ - 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; + radioButton1.onchange = switchConfigurations.bind(this); + radioButton2.onchange = switchConfigurations.bind(this); + radioButton3.onchange = switchConfigurations.bind(this); } - 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._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._overWriteGraphConstants = function (constantsVariableName, value) { + var nameArray = constantsVariableName.split("_"); + if (nameArray.length == 1) { + this.constants[nameArray[0]] = value; } - this._redraw(); - }; - - exports._releaseControlNode = function(pointer) { - var newNode = this._getNodeAt(pointer); - if (newNode != null) { - if (this.edgeBeingEdited.controlNodes.from.selected == true) { - this._editEdge(newNode.id, this.edgeBeingEdited.to.id); - this.edgeBeingEdited.controlNodes.from.unselect(); - } - if (this.edgeBeingEdited.controlNodes.to.selected == true) { - this._editEdge(this.edgeBeingEdited.from.id, newNode.id); - this.edgeBeingEdited.controlNodes.to.unselect(); - } + else if (nameArray.length == 2) { + this.constants[nameArray[0]][nameArray[1]] = value; } - else { - this.edgeBeingEdited._restoreControlNodes(); + else if (nameArray.length == 3) { + this.constants[nameArray[0]][nameArray[1]][nameArray[2]] = value; } - 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. - * - * @private + * this function is bound to the toggle smooth curves button. That is also why it is not in the prototype. */ - 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']; + function graphToggleSmoothCurves () { + this.constants.smoothCurves.enabled = !this.constants.smoothCurves.enabled; + var graph_toggleSmooth = document.getElementById("graph_toggleSmooth"); + if (this.constants.smoothCurves.enabled == true) {graph_toggleSmooth.style.background = "#A4FF56";} + else {graph_toggleSmooth.style.background = "#FF8532";} - this.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._configureSmoothCurves(false); + } - this.moving = true; - this.start(); - } + /** + * 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; } } - }; - - exports._finishConnect = function(pointer) { - if (this._getSelectedNodeCount() == 1) { - - // restore the drag function - this._handleOnDrag = this.cachedFunctions["_handleOnDrag"]; - delete this.cachedFunctions["_handleOnDrag"]; - - // remember the edge id - var connectFromId = this.edges['connectionEdge'].fromId; - - // remove the temporary nodes and edge - delete this.edges['connectionEdge']; - delete this.sectors['support']['nodes']['targetNode']; - delete this.sectors['support']['nodes']['targetViaNode']; - - var node = this._getNodeAt(pointer); - if (node != null) { - if (node.clusterSize > 1) { - alert(this.constants.locales[this.constants.locale]["createEdgeError"]) - } - else { - this._createEdge(connectFromId,node.id); - this._createManipulatorBar(); - } - } - 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(); + } +/***/ }, +/* 60 */ +/***/ 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; /***/ }, /* 61 */ /***/ 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 && wrapper.parentNode) { - wrapper.parentNode.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.frame.appendChild(this.navigationDivs['wrapper']); + // 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(); - }; +/***/ }, +/* 62 */ +/***/ 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 - event.preventDefault(); - }; + 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 - event.preventDefault(); - }; + // 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 - event.preventDefault(); - }; + // 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 - event.preventDefault(); - }; + 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 - event.preventDefault(); + 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(event) { - this.zoomIncrement = -this.constants.keyboard.speed.zoom; - this.start(); // if there is no node movement, the calculation wont be done - event.preventDefault(); - }; + 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(event) { - this.zoomIncrement = 0; - event && event.preventDefault(); - }; + 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(event) { - this.yIncrement = 0; - event && event.preventDefault(); - }; + // 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(event) { - this.xIncrement = 0; - event && event.preventDefault(); - }; + 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; + } -/***/ }, -/* 62 */ -/***/ 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(); + // 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)); - // 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(); + node.fx += springFx; + node.fy += springFy; + } - // place the nodes on the canvas. This also stablilizes the system. - this._placeNodesByHierarchy(distribution); + // 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; - // start the simulation. - this.start(); - } + for (i = 0; i < nodeIndices.length; i++) { + var node = nodes[nodeIndices[i]]; + node.fx -= correctionFx; + node.fy -= correctionFy; } + }; +/***/ }, +/* 63 */ +/***/ 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; } }; -/***/ }, -/* 63 */ -/***/ 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']; - - -/***/ }, -/* 64 */ -/***/ 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; - } - }; +/***/ }, +/* 64 */ +/***/ 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 204dbe3a..9c4b6bad 100644 --- a/dist/vis.map +++ b/dist/vis.map @@ -1 +1 @@ -{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","i","len","arguments","length","other","prop","hasOwnProperty","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","className","classes","split","push","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","removeChild","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","createElement","drawPoint","x","y","group","point","drawPoints","style","setAttributeNS","size","drawBar","width","height","rect","data","_options","_data","_fieldId","fieldId","_type","_subscribers","add","prototype","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","columns","_getColumnNames","row","rows","getNumberOfRows","item","col","cols","getValue","update","updatedIds","addOrUpdate","_updateItem","get","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","_appendRow","result","getIds","getDataSet","map","mappedItems","filteredItem","name","sort","av","bv","remove","removedId","removedIds","_remove","clear","keys","maxField","itemField","minField","distinct","values","fieldType","count","exists","types","raw","converted","JSON","stringify","dataTable","getNumberOfColumns","getColumnId","getColumnLabel","addRow","setValue","_ids","_onEvent","apply","setData","viewOptions","getArguments","defaultFilter","dataSet","added","updated","removed","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","eye","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","colorAxis","colorGrid","colorDot","colorDotBorder","setOptions","Emitter","_setScale","scale","z","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dy","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","fill","stroke","strokeWidth","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","obj","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","hasChildNodes","firstChild","position","overflow","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","charAt","parseFloat","setCameraPosition","pos","horizontal","vertical","setArmRotation","distance","setArmLength","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","getCurrent","next","end","textAlign","textBaseline","fillText","label","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","from","to","prettyStep","text","xText","yText","zText","offset","xOffset","yOffset","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","abs","parseInt","cross","topSideVisible","zAvg","transBottom","dist","sortDepth","aDiff","subtract","bDiff","crossproduct","crossProduct","radius","arc","PI","j","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","diff","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","getMouseX","startMouseY","getMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","round","parameters","emit","delay","mouseX","mouseY","tooltipTimeout","clearTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","setTimeout","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","delta","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","sign","as","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","content","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","clientX","targetTouches","clientY","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","dataView","progress","sub","sum","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","LN10","step1","pow","step2","step5","toPrecision","getStep","coreProp","Core","defaultOptions","autoResize","orientation","maxHeight","minHeight","_create","body","domProps","emitter","bind","snap","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","timeAxis","currentTime","customTime","itemSet","itemsData","groupsData","setItems","_initAutoResize","component","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","getSelection","getItemRange","dataset","minItem","maxStartItem","maxEndItem","linegraph","getLegend","groupId","isGroupVisible","minimumStep","containerHeight","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","handleOverlap","dataAxis","legend","lastStart","rangePerPixelInv","_updateGraph","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","preprocessedGroupData","processedGroupData","groupRanges","minDate","maxDate","_getRelevantData","_convertXcoordinates","_getYRanges","_updateYAxis","_convertYcoordinates","_drawLineGraph","_drawBarGraphs","dataContainer","_applySampling","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","sampledData","barCombinedData","barCombinedDataLeft","barCombinedDataRight","ignore","intersections","_getDataIntersections","_getStackedBarYRange","combinedData","accumulated","xpos","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","axisUsed","coreDistance","barPoints","heightOffset","drawData","_getSafeDrawData","nextKey","amount","resolved","prevKey","svgHeight","_catmullRom","_linear","dFill","_drawPoints","datapoints","xValue","yValue","extractedData","_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","custom","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","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","_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","trigger","__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","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","deprecate","msg","printMsg","suppressDeprecationWarnings","warn","firstTime","padToken","func","leftZeroFill","ordinalizeToken","period","ordinal","Language","Moment","config","checkOverflow","Duration","duration","normalizedInput","normalizeObjectUnits","years","quarters","quarter","months","month","weeks","week","days","day","hour","minute","second","millisecond","_milliseconds","_days","_months","_bubble","cloneMoment","momentProperties","absRound","number","targetLength","forceSign","output","addOrSubtractDurationFromMoment","mom","isAdding","updateOffset","_d","setTime","rawSetter","rawGetter","rawMonthSetter","input","compareArrays","dontConvert","lengthDiff","diffs","toInt","normalizeUnits","units","lowered","unitAliases","camelFunctions","inputObject","normalizedProp","makeList","setter","getter","method","_lang","results","utc","set","argumentForCoercion","coercedNumber","isFinite","daysInMonth","UTC","getUTCDate","weeksInYear","dow","doy","weekOfYear","daysInYear","isLeapYear","_a","_pf","DATE","_overflowDayOfYear","isValid","_isValid","getTime","_strict","normalizeLanguage","makeAs","model","_isUTC","zone","_offset","local","loadLang","abbr","languages","unloadLang","getLangDefinition","k","hasModule","removeFormattingTokens","makeFormatFunction","formattingTokens","formatTokenFunctions","formatMoment","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","getParseRegexForToken","parseTokenOneDigit","parseTokenThreeDigits","parseTokenFourDigits","parseTokenOneToFourDigits","parseTokenSignedNumber","parseTokenSixDigits","parseTokenOneToSixDigits","parseTokenTwoDigits","parseTokenOneToThreeDigits","parseTokenWord","_l","_meridiemParse","parseTokenTimestampMs","parseTokenTimezone","parseTokenT","parseTokenDigits","parseTokenOneOrTwoDigits","parseTokenOrdinal","RegExp","regexpEscape","unescapeFormat","timezoneMinutesFromString","string","possibleTzMatches","tzChunk","parts","parseTimezoneChunker","addTimeToArrayFromToken","datePartArray","monthsParse","_dayOfYear","parseTwoDigitYear","_isPm","isPM","_useUTC","_tzm","weekdaysParse","_w","invalidWeekday","dayOfYearFromWeekInfo","weekYear","weekday","temp","GG","W","E","_week","gg","dayOfYearFromWeeks","dayOfYear","dateFromConfig","currentDate","yearToUse","currentDateArray","makeUTCDate","getUTCMonth","makeDate","setUTCMinutes","getUTCMinutes","dateFromObject","_i","getUTCFullYear","makeDateFromStringAndFormat","_f","ISO_8601","parseISO","parsedInput","tokens","skipped","stringLength","totalParsedInputLength","matched","p4","makeDateFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","NaN","score","l","isoRegex","isoDates","isoTimes","makeDateFromString","createFromInputFallback","makeDateFromInput","aspNetJsonRegex","ms","setUTCFullYear","parseWeekday","language","substituteTimeAgo","withoutSuffix","isFuture","relativeTime","relativeTimeThresholds","dd","dm","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","daysToDayOfWeek","daysToAdd","getUTCDay","makeMoment","invalid","preparse","pickBy","moments","res","dayOfMonth","unit","makeAccessor","keepTime","makeDurationGetter","makeDurationAsGetter","makeGlobal","shouldDeprecate","ender","oldGlobalMoment","globalScope","_isAMomentObject","aspNetTimeSpanJsonRegex","isoDurationRegex","isoFormat","unitMillisecondFactors","Milliseconds","Seconds","Minutes","Hours","Days","Months","Years","D","Q","DDD","dayofyear","isoweekday","isoweek","weekyear","isoweekyear","ordinalizeTokens","paddedTokens","MMM","monthsShort","MMMM","weekdaysMin","ddd","weekdaysShort","dddd","weekdays","isoWeek","YY","YYYY","YYYYY","YYYYYY","gggg","ggggg","isoWeekYear","GGGG","GGGGG","isoWeekday","meridiem","SS","SSS","SSSS","Z","ZZ","zoneAbbr","zz","zoneName","unix","lists","DDDD","_monthsShort","monthName","regex","_monthsParse","_weekdays","_weekdaysShort","_weekdaysMin","weekdayName","_weekdaysParse","_longDateFormat","LT","L","LL","LLL","LLLL","val","isLower","_calendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","_relativeTime","future","past","mm","hh","MM","yy","pastFuture","_ordinal","postformat","_invalidDate","ret","parseIso","isDuration","inp","version","defaultFormat","relativeTimeThreshold","threshold","limit","_abbr","langData","flags","parseZone","isDSTShifted","parsingFlags","invalidAt","inputString","dur","asFloat","that","zoneDiff","startOf","humanize","fromNow","sod","isDST","getDay","endOf","isAfter","isBefore","isSame","getTimezoneOffset","_changeInProgress","hasAlignedHourOffset","isoWeeksInYear","weekInfo","dates","isoWeeks","toJSON","withSuffix","difference","toIsoString","asSeconds","asMonths","require","noGlobal","clusterToFit","maxNumberOfNodes","reposition","maxLevels","forceAggregateHubs","normalizeClusterLevels","increaseClusterLevel","repositionNodes","openCluster","isMovingBeforeClustering","_nodeInActiveArea","_sector","_addSector","decreaseClusterLevel","_expandClusterNode","_updateDynamicEdges","updateClusters","zoomDirection","recursive","doNotStart","amountOfNodes","_collapseSector","_formClusters","_openClusters","_openClustersBySize","_aggregateHubs","handleChains","chainPercentage","_getChainFraction","_reduceAmountOfChains","_getHubSize","_formClustersByHub","openAll","containedNodeId","childNode","_expelChildFromParent","_unselectAll","_releaseContainedEdges","_connectEdgeBackToChild","_validateEdges","othersPresent","childNodeId","_repositionBezierNodes","_formClustersByZoom","_forceClustersByZoom","minLength","_addToCluster","_clusterToSmallestNeighbour","smallestNeighbour","smallestNeighbourNode","neighbour","onlyEqual","_formClusterFromHub","hubNode","absorptionSizeOffset","allowCluster","edgesIdarray","amountOfInitialEdges","_addToContainedEdges","_connectEdgeToCluster","_containCircularEdgesFromNode","massBefore","correction","edgeToId","edgeFromId","_addToReroutedEdges","maxLevel","minLevel","clusterLevel","targetLevel","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","fraction","reduceAmount","chains","total","_switchToSector","sectorId","sectorType","_switchToActiveSector","_switchToFrozenSector","_switchToSupportSector","_loadLatestSector","_previousSector","_setActiveSector","newId","_forgetLastSector","_createNewSector","_deleteActiveSector","_deleteFrozenSector","_freezeSector","_activateSector","_mergeThisWithFrozen","_collapseThisToSingleCluster","sector","unqiueIdentifier","previousSector","runFunction","argument","_doInAllFrozenSectors","_drawSectorNodes","_drawAllSectorNodes","_getNodesOverlappingWith","overlappingNodes","_getAllNodesOverlappingWith","_pointerToPositionObject","positionObject","_getEdgesOverlappingWith","overlappingEdges","_getAllEdgesOverlappingWith","_addToSelection","_addToHover","_removeFromSelection","doNotTrigger","_unselectClusters","_getSelectedNodeCount","_getSelectedNode","_getSelectedEdge","_getSelectedEdgeCount","_getSelectedObjectCount","_selectionIsEmpty","_clusterInSelection","_selectConnectedEdges","_hoverConnectedEdges","_unselectConnectedEdges","append","highlightEdges","nodeIds","getSelectedNodes","edgeIds","getSelectedEdges","idArray","RangeError","selectNodes","selectEdges","_clearManipulatorBar","_restoreOverloadedFunctions","functionName","_toggleEditMode","toolbar","getElementById","boundFunction","edgeBeingEdited","selectedControlNode","addNodeButton","_createAddNodeToolbar","addEdgeButton","_createAddEdgeToolbar","editButton","_editNode","_createEditEdgeToolbar","editModeButton","backButton","_addNode","_handleConnect","_finishConnect","_selectControlNode","_controlNodeDrag","_releaseControlNode","newNode","_editEdge","alert","smooth","connectFromId","_createEdge","defaultData","finalizedData","sourceNodeId","targetNodeId","selectedNodes","selectedEdges","wrapper","navigationDivActions","_stopMovement","hubsize","definedLevel","undefinedLevel","_changeConstants","_determineLevels","distribution","_getDistribution","_placeNodesByHierarchy","minPos","_placeBranchNodes","maxCount","_setLevel","parentId","parentLevel","nodeMoved","_restoreNodes","graphToggleSmoothCurves","graph_toggleSmooth","graphRepositionNodes","showValueOfRange","graphGenerateOptions","optionsSpecific","radioButton1","radioButton2","checked","backupConstants","optionsDiv","switchConfigurations","radioButton","querySelector","tableId","table","constantsVariableName","valueId","rangeValue","_overWriteGraphConstants","RepulsionMixin","HierarchialRepulsionMixin","BarnesHutMixin","_toggleBarnesHut","barnesHutTree","_initializeForceCalculation","_calculateForces","_calculateGravitationalForces","_calculateNodeForces","_calculateSpringForcesWithSupport","_calculateHierarchicalSpringForces","_calculateSpringForces","supportNodes","supportNodeId","gravity","gravityForce","edgeLength","springForce","combinedClusterSize","node1","node2","node3","_calculateSpringForce","physicsConfiguration","hierarchicalLayoutDirections","parentElement","rangeElement","radioButton3","graph_repositionNodes","graph_generateOptions","nameArray","webpackContext","req","webpackContextResolve","resolve","repulsingForce","a_base","minimumDistance","steepness","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","nodeCount","_formBarnesHutTree","_getForceContribution","children","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","MAX_VALUE","sizeDiff","minimumTreeSize","rootSize","halfRootSize","centerX","centerY","_splitBranch","_placeInTree","_updateBranchMass","totalMass","totalMassInv","biggestSize","skipMassUpdate","_placeInRegion","region","containedNode","_insertRegion","childSize","_drawTree","_drawBranch","branch","webpackPolyfill","paths"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DataStep","Range","stack","TimeStep","components","items","Item","ItemBox","ItemPoint","ItemRange","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Edge","Groups","Images","Node","Popup","dotparser","gephiParser","Graph","Error","moment","hammer","isNumber","object","Number","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","isDataTable","google","visualization","DataTable","randomUUID","S4","Math","floor","random","toString","extend","a","i","len","arguments","length","other","prop","hasOwnProperty","selectiveExtend","props","Array","isArray","selectiveDeepExtend","b","TypeError","constructor","Object","undefined","deepExtend","selectiveNotDeepExtend","indexOf","equalArray","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","value","getAbsoluteLeft","elem","getBoundingClientRect","left","window","pageXOffset","getAbsoluteTop","top","pageYOffset","addClassName","className","classes","split","push","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","target","srcElement","nodeType","parentNode","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","GiveDec","Hex","Value","eval","GiveHex","Dec","parseColor","color","isValidRGB","rgb","substr","RGBToHex","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","min","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","hexToRGB","hex","replace","toUpperCase","substring","d","e","f","r","g","red","green","blue","RGBToHSV","minRGB","maxRGB","max","hue","saturation","HSVToRGB","q","t","isOk","test","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","options","enabled","binarySearch","orderedItems","range","field","field2","maxIterations","iteration","found","low","high","newLow","newHigh","guess","isVisible","start","console","log","binarySearchGeneric","sidePreference","newGuess","prevValue","nextValue","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","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","Core","newDataSet","initialLoad","fit","setWindow","setGroups","groups","setSelection","focus","getSelection","itemData","middle","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","_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","handleOverlap","dataAxis","legend","lastStart","rangePerPixelInv","_updateGraph","yAxisLeft","yAxisRight","legendLeft","legendRight","_updateAllGroupData","_updateGroup","groupsContent","ungroupedCounter","preprocessedGroupData","processedGroupData","groupRanges","minDate","maxDate","_getRelevantData","_convertXcoordinates","_getYRanges","_updateYAxis","_convertYcoordinates","_drawLineGraph","_drawBarGraphs","dataContainer","_applySampling","increment","amountOfPoints","xDistance","pointsPerPixel","ceil","sampledData","barCombinedData","barCombinedDataLeft","barCombinedDataRight","ignore","intersections","_getDataIntersections","_getStackedBarYRange","combinedData","accumulated","xpos","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","_toggleAxisVisiblity","drawIcons","axisUsed","coreDistance","drawData","barPoints","heightOffset","_getSafeDrawData","nextKey","amount","resolved","prevKey","svgHeight","_catmullRom","_linear","dFill","_drawPoints","datapoints","xValue","yValue","extractedData","_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","Activator","_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","clickToUse","activator","_createKeyBinds","_loadNavigationControls","_loadManipulationSystem","_configureSmoothCurves","pinch","_onTap","_onDoubleTap","_onRelease","_onMouseMoveTitle","reset","isActive","_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","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","active","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","_initAutoResize","component","_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","back","editNode","addDescription","edgeDescription","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","manipulationDiv","editModeDiv","closeDiv","_cleanNavigation","_loadNavigationElements","overlay","_onTapOverlay","windowHammer","_hasParent","deactivate","escListener","activate","unbind","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","hasListeners","_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","trigger","__WEBPACK_AMD_DEFINE_RESULT__","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","VERSION","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","setup","READY","Event","determineEventTypes","Utils","each","gestures","Detection","register","onTouch","DOCUMENT","EVENT_MOVE","detect","EVENT_END","Instance","defaults","behavior","userSelect","touchAction","touchCallout","contentZooming","userDrag","tapHighlightColor","HAS_POINTEREVENTS","pointerEnabled","msPointerEnabled","HAS_TOUCHEVENTS","IS_MOBILE","NO_MOUSEEVENTS","CALCULATE_INTERVAL","EVENT_TYPES","DIRECTION_DOWN","DIRECTION_LEFT","DIRECTION_UP","DIRECTION_RIGHT","POINTER_MOUSE","POINTER_TOUCH","POINTER_PEN","EVENT_START","EVENT_RELEASE","EVENT_TOUCH","plugins","utils","dest","handler","iterator","context","inStr","find","inArray","hasParent","getCenter","getVelocity","deltaTime","getAngle","touch1","touch2","getDirection","getScale","getRotation","isVertical","setPrefixedCss","toggle","prefixes","toCamelCase","toggleBehavior","falseFn","onselectstart","ondragstart","str","preventMouseEvents","started","shouldDetect","hook","onTouchHandler","ev","triggerType","srcType","isPointer","isMouse","buttons","PointerEvent","matchType","updatePointer","doDetect","touchList","touchListLength","triggerChange","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","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","total","_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","navigationDivs","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 cc0e8a4a..e58d28b4 100644 --- a/dist/vis.min.js +++ b/dist/vis.min.js @@ -5,7 +5,7 @@ * A dynamic, browser-based visualization library. * * @version 3.2.1-SNAPSHOT - * @date 2014-08-21 + * @date 2014-08-22 * * @license * Copyright (C) 2011-2014 Almende B.V, http://almende.com @@ -22,16 +22,16 @@ * License for the specific language governing permissions and limitations under * the License. */ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(s){if(i[s])return i[s].exports;var o=i[s]={exports:{},id:s,loaded:!1};return t[s].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(2),e.DataSet=i(3),e.DataView=i(4),e.Graph3d=i(5),e.graph3d={Camera:i(6),Filter:i(7),Point2d:i(8),Point3d:i(9),Slider:i(10),StepNumber:i(11)},e.Timeline=i(12),e.Graph2d=i(13),e.timeline={DataStep:i(14),Range:i(15),stack:i(16),TimeStep:i(17),components:{items:{Item:i(28),ItemBox:i(29),ItemPoint:i(30),ItemRange:i(31)},Component:i(18),CurrentTime:i(19),CustomTime:i(20),DataAxis:i(21),GraphGroup:i(22),Group:i(23),ItemSet:i(24),Legend:i(25),LineGraph:i(26),TimeAxis:i(27)}},e.Network=i(32),e.network={Edge:i(33),Groups:i(34),Images:i(35),Node:i(36),Popup:i(37),dotparser:i(38),gephiParser:i(39)},e.Graph=function(){throw new Error("Graph is renamed to Network. Please create a graph as new vis.Network(...)")},e.moment=i(40),e.hammer=i(41)},function(module,exports,__webpack_require__){var moment=__webpack_require__(40);exports.isNumber=function(t){return t instanceof Number||"number"==typeof t},exports.isString=function(t){return t instanceof String||"string"==typeof t},exports.isDate=function(t){if(t instanceof Date)return!0;if(exports.isString(t)){var e=ASPDateRegex.exec(t);if(e)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},exports.isDataTable=function(t){return"undefined"!=typeof google&&google.visualization&&google.visualization.DataTable&&t instanceof google.visualization.DataTable},exports.randomUUID=function(){var t=function(){return Math.floor(65536*Math.random()).toString(16)};return t()+t()+"-"+t()+"-"+t()+"-"+t()+"-"+t()+t()+t()},exports.extend=function(t){for(var e=1,i=arguments.length;i>e;e++){var s=arguments[e];for(var o in s)s.hasOwnProperty(o)&&(t[o]=s[o])}return t},exports.selectiveExtend=function(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=2;ii;i++)if(t[i]!=e[i])return!1;return!0},exports.convert=function(t,e){var i;if(void 0===t)return void 0;if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(moment.isMoment(t))return new Date(t.valueOf());if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])):moment(t).toDate();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"Moment":if(exports.isNumber(t))return moment(t);if(t instanceof Date)return moment(t.valueOf());if(moment.isMoment(t))return moment(t);if(exports.isString(t))return i=ASPDateRegex.exec(t),moment(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+exports.getType(t)+" to type Date");case"ISODate":if(exports.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(moment.isMoment(t))return t.toDate().toISOString();if(exports.isString(t))return i=ASPDateRegex.exec(t),i?new Date(Number(i[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ISODate");case"ASPDate":if(exports.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(exports.isString(t)){i=ASPDateRegex.exec(t);var s;return s=i?new Date(Number(i[1])).valueOf():new Date(t).valueOf(),"/Date("+s+")/"}throw new Error("Cannot convert object of type "+exports.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+e+'"')}};var ASPDateRegex=/^\/?Date\((\-?\d+)/i;exports.getType=function(t){var e=typeof t;return"object"==e?null==t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":t instanceof Array?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":e},exports.getAbsoluteLeft=function(t){return t.getBoundingClientRect().left+window.pageXOffset},exports.getAbsoluteTop=function(t){return t.getBoundingClientRect().top+window.pageYOffset},exports.addClassName=function(t,e){var i=t.className.split(" ");-1==i.indexOf(e)&&(i.push(e),t.className=i.join(" "))},exports.removeClassName=function(t,e){var i=t.className.split(" "),s=i.indexOf(e);-1!=s&&(i.splice(s,1),t.className=i.join(" "))},exports.forEach=function(t,e){var i,s;if(t instanceof Array)for(i=0,s=t.length;s>i;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},exports.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},exports.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},exports.addEventListener=function(t,e,i,s){t.addEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,s)):t.attachEvent("on"+e,i)},exports.removeEventListener=function(t,e,i,s){t.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,s)):t.detachEvent("on"+e,i)},exports.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},exports.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},exports.option={},exports.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},exports.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},exports.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},exports.option.asSize=function(t,e){return"function"==typeof t&&(t=t()),exports.isString(t)?t:exports.isNumber(t)?t+"px":e||null},exports.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},exports.GiveDec=function(Hex){var Value;return Value="A"==Hex?10:"B"==Hex?11:"C"==Hex?12:"D"==Hex?13:"E"==Hex?14:"F"==Hex?15:eval(Hex)},exports.GiveHex=function(t){var e;return e=10==t?"A":11==t?"B":12==t?"C":13==t?"D":14==t?"E":15==t?"F":""+t},exports.parseColor=function(t){var e;if(exports.isString(t)){if(exports.isValidRGB(t)){var i=t.substr(4).substr(0,t.length-5).split(",");t=exports.RGBToHex(i[0],i[1],i[2])}if(exports.isValidHex(t)){var s=exports.hexToHSV(t),o={h:s.h,s:.45*s.s,v:Math.min(1,1.05*s.v)},n={h:s.h,s:Math.min(1,1.25*s.v),v:.6*s.v},r=exports.HSVToHex(n.h,n.h,n.v),a=exports.HSVToHex(o.h,o.s,o.v);e={background:t,border:r,highlight:{background:a,border:r},hover:{background:a,border:r}}}else e={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else e={},e.background=t.background||"white",e.border=t.border||e.background,exports.isString(t.highlight)?e.highlight={border:t.highlight,background:t.highlight}:(e.highlight={},e.highlight.background=t.highlight&&t.highlight.background||e.background,e.highlight.border=t.highlight&&t.highlight.border||e.border),exports.isString(t.hover)?e.hover={border:t.hover,background:t.hover}:(e.hover={},e.hover.background=t.hover&&t.hover.background||e.background,e.hover.border=t.hover&&t.hover.border||e.border);return e},exports.hexToRGB=function(t){t=t.replace("#","").toUpperCase();var e=exports.GiveDec(t.substring(0,1)),i=exports.GiveDec(t.substring(1,2)),s=exports.GiveDec(t.substring(2,3)),o=exports.GiveDec(t.substring(3,4)),n=exports.GiveDec(t.substring(4,5)),r=exports.GiveDec(t.substring(5,6)),a=16*e+i,h=16*s+o,i=16*n+r;return{r:a,g:h,b:i}},exports.RGBToHex=function(t,e,i){var s=exports.GiveHex(Math.floor(t/16)),o=exports.GiveHex(t%16),n=exports.GiveHex(Math.floor(e/16)),r=exports.GiveHex(e%16),a=exports.GiveHex(Math.floor(i/16)),h=exports.GiveHex(i%16),d=s+o+n+r+a+h;return"#"+d},exports.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var s=Math.min(t,Math.min(e,i)),o=Math.max(t,Math.max(e,i));if(s==o)return{h:0,s:0,v:s};var n=t==s?e-i:i==s?t-e:i-t,r=t==s?3:i==s?1:5,a=60*(r-n/(o-s))/360,h=(o-s)/o,d=o;return{h:a,s:h,v:d}},exports.HSVToRGB=function(t,e,i){var s,o,n,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:s=i,o=l,n=h;break;case 1:s=d,o=i,n=h;break;case 2:s=h,o=i,n=l;break;case 3:s=h,o=d,n=i;break;case 4:s=l,o=h,n=i;break;case 5:s=i,o=h,n=d}return{r:Math.floor(255*s),g:Math.floor(255*o),b:Math.floor(255*n)}},exports.HSVToHex=function(t,e,i){var s=exports.HSVToRGB(t,e,i);return exports.RGBToHex(s.r,s.g,s.b)},exports.hexToHSV=function(t){var e=exports.hexToRGB(t);return exports.RGBToHSV(e.r,e.g,e.b)},exports.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},exports.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},exports.selectiveBridgeObject=function(t,e){if("object"==typeof e){for(var i=Object.create(e),s=0;sa;)o=void 0===s?n[u][i]:n[u][i][s],n[u].isVisible(e)?h=!0:(o=r&&console.log("BinarySearch too many iterations. Aborting.")}return u},exports.binarySearchGeneric=function(t,e,i,s){var o,n,r,a,h=1e4,d=0,l=t,c=!1,p=0,u=l.length,f=p,g=u,m=Math.floor(.5*(u+p));if(0==u)m=-1;else if(1==u)r=l[m][i],m=r==e?0:-1;else{for(u-=1;0==c&&h>d;)n=l[Math.max(0,m-1)][i],r=l[m][i],a=l[Math.min(l.length-1,m+1)][i],r==e||e>n&&r>e||e>r&&a>e?(c=!0,r!=e&&("before"==s?e>n&&r>e&&(m=Math.max(0,m-1)):e>r&&a>e&&(m=Math.min(l.length-1,m+1)))):(e>r?f=Math.floor(.5*(u+p)):g=Math.floor(.5*(u+p)),o=Math.floor(.5*(u+p)),p==f&&u==g?(m=-1,c=!0):(u=g,p=f,m=Math.floor(.5*(u+p)))),d++;d>=h&&console.log("BinarySearch too many iterations. Aborting.")}return m}},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,g=l.length;g>f;f++){var m=l[f];u[m]=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,g=[];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))&&g.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=n._getItem(l,u),(!f||f(d))&&g.push(d));if(i&&i.order&&void 0==t&&this._sort(g,i.order),i&&i.fields){var m=i.fields;if(void 0!=t)d=this._filterFields(d,m);else for(c=0,p=g.length;p>c;c++)g[c]=this._filterFields(g[c],m)}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(g[c]);return s}return g},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 g=(t-p)/(f-p),m=240*g,v=this._hsv2rgb(m,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?(m.textAlign="center",m.textBaseline="top",o.y+=b):Math.sin(2*_)<0?(m.textAlign="right",m.textBaseline="middle"):(m.textAlign="left",m.textBaseline="middle"),m.fillStyle=this.colorAxis,m.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next()}for(m.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?(m.textAlign="center",m.textBaseline="top",o.y+=b):Math.sin(2*_)>0?(m.textAlign="right",m.textBaseline="middle"):(m.textAlign="left",m.textBaseline="middle"),m.fillStyle=this.colorAxis,m.fillText(" "+i.getCurrent()+" ",o.x,o.y),i.next();for(m.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())),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(t.x,t.y),m.lineTo(t.x-b,t.y),m.stroke(),m.textAlign="right",m.textBaseline="middle",m.fillStyle=this.colorAxis,m.fillText(i.getCurrent()+" ",t.x-5,t.y),i.next();m.lineWidth=1,t=this._convert3Dto2D(new h(n,r,this.zMin)),e=this._convert3Dto2D(new h(n,r,this.zMax)),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(t.x,t.y),m.lineTo(e.x,e.y),m.stroke(),m.lineWidth=1,p=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(p.x,p.y),m.lineTo(f.x,f.y),m.stroke(),p=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),f=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(p.x,p.y),m.lineTo(f.x,f.y),m.stroke(),m.lineWidth=1,t=this._convert3Dto2D(new h(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMin,this.yMax,this.zMin)),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(t.x,t.y),m.lineTo(e.x,e.y),m.stroke(),t=this._convert3Dto2D(new h(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new h(this.xMax,this.yMax,this.zMin)),m.strokeStyle=this.colorAxis,m.beginPath(),m.moveTo(t.x,t.y),m.lineTo(e.x,e.y),m.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?(m.textAlign="center",m.textBaseline="top"):Math.sin(2*_)<0?(m.textAlign="right",m.textBaseline="middle"):(m.textAlign="left",m.textBaseline="middle"),m.fillStyle=this.colorAxis,m.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?(m.textAlign="center",m.textBaseline="top"):Math.sin(2*_)>0?(m.textAlign="right",m.textBaseline="middle"):(m.textAlign="left",m.textBaseline="middle"),m.fillStyle=this.colorAxis,m.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)),m.textAlign="right",m.textBaseline="middle",m.fillStyle=this.colorAxis,m.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,g=this.frame.canvas,m=g.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,m.lineWidth=l,m.fillStyle=a,m.strokeStyle=d,m.beginPath(),m.moveTo(t.screen.x,t.screen.y),m.lineTo(e.screen.x,e.screen.y),m.lineTo(o.screen.x,o.screen.y),m.lineTo(i.screen.x,i.screen.y),m.closePath(),m.fill(),m.stroke()}}else for(n=0;np&&(p=0);var u,f,g;this.style===s.STYLE.DOTCOLOR?(u=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(u,1,1),g=this._hsv2rgb(u,1,.8)):this.style===s.STYLE.DOTSIZE?(f=this.colorDot,g=this.colorDotBorder):(u=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(u,1,1),g=this._hsv2rgb(u,1,.8)),i.lineWidth=1,i.strokeStyle=g,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],g=[u[2].screen,u[3].screen,u[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,g))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(43),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(43),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(44),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(42);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(42);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 g=this.visibleItems[u];g.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},g=0,m=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,g+=t.height}),g=Math.max(g,m),this.stackDirty=!1,a.style.height=i(g),this.props.top=a.offsetTop,this.props.left=a.offsetLeft,this.props.width=a.offsetWidth,this.props.height=g,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,handleOverlap:"overlap",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){var d=this.body.util.toGlobalTime(-this.body.domProps.root.width),l=this.body.util.toGlobalTime(2*this.body.domProps.root.width),c={};for(this._getRelevantData(a,c,d,l),e=0;e0)for(var r=0;rs){a.push(l);break}a.push(l)}}else for(var d=0;di&&l.x0)for(var s=0;sl;l+=n)d.push(o[l]);e[t[s]]=d}},s.prototype._getYRanges=function(t,e,i){var s,o,n,r=[],a=[];if(t.length>0){for(var h=0;hs[c].y?s[c].y:d,l=l0){r.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x});var p={};this._getDataIntersections(p,r),i.__barchartLeft=this._getStackedBarYRange(p,r),i.__barchartLeft.yAxisOrientation="left",t.push("__barchartLeft")}if(a.length>0){a.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x});var p={};this._getDataIntersections(p,a),i.__barchartRight=this._getStackedBarYRange(p,a),i.__barchartRight.yAxisOrientation="right",t.push("__barchartRight")}}},s.prototype._getStackedBarYRange=function(t,e){for(var i,s=e[0].y,o=e[0].y,n=0;ne[n].y?e[n].y:s,o=ot[r].accumulated?t[r].accumulated:s,o=o0){for(var c=0;ci?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,-1!=t.indexOf("__barchartLeft")&&t.splice(t.indexOf("__barchartLeft"),1),-1!=t.indexOf("__barchartRight")&&t.splice(t.indexOf("__barchartRight"),1),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._drawBarGraphs=function(t,e){var i,s,o,r,a,h=[],d={},l=0;for(r=0;r0&&(i=Math.min(i,Math.abs(h[r-1].x-s)));var u=this._getSafeDrawData(i,o,c)}else{var f=r+(d[s].amount-d[s].resolved),g=r-(d[s].resolved+1);f0&&(i=Math.min(i,Math.abs(h[g].x-s)));var u=this._getSafeDrawData(i,o,c);d[s].resolved+=1,"stack"==o.options.barChart.handleOverlap?(p=d[s].accumulated,d[s].accumulated+=o.zeroPosition-h[r].y):"sideBySide"==o.options.barChart.handleOverlap&&(u.width=u.width/d[s].amount,u.offset+=d[s].resolved*u.width-.5*u.width*(d[s].amount+1),"left"==o.options.barChart.align?offset-=.5*u.width:"right"==o.options.barChart.align&&(offset+=.5*u.width))}n.drawBar(h[r].x+u.offset,h[r].y-p,u.width,o.zeroPosition-h[r].y,o.className+" bar",this.svgElements,this.svg),1==o.options.drawPoints.enabled&&n.drawPoint(h[r].x+u.offset,h[r].y-p,o,this.svgElements,this.svg)}},s.prototype._getDataIntersections=function(t,e){for(var i,s=0;s0&&(i=Math.min(i,Math.abs(e[s-1].x-e[s].x))),0==i&&(void 0===t[e[s].x]&&(t[e[s].x]={amount:0,resolved:0,accumulated:0}),t[e[s].x].amount+=1)},s.prototype._getSafeDrawData=function(t,e,i){var s,o;return t0?(s=i>t?i:t,o=0,"left"==e.options.barChart.align?o-=.5*t:"right"==e.options.barChart.align&&(o+=.5*t)):(s=e.options.barChart.width,o=0,"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;rl;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,g,m,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)),m=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*m*v+b,f=3*x*(x+v),f>0&&(f=1/f),g=3*m*(m+v),g>0&&(g=1/g),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)*g,y:(y*o.y+u*n.y-b*r.y)*g},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),g=f.length*(this.props.majorCharWidth||10)+10;(void 0==h||h>g)&&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(49),a=i(1),h=i(44),d=i(3),l=i(4),c=i(38),p=i(39),u=i(34),f=i(35),g=i(36),m=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 g&&r.id!=a||r instanceof m||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 g(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 g(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 m(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 m(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 g;if(1==this.options.smoothCurves.enabled&&null!=s){var m=.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));g={x:m,y:v}}else g=this._pointOnLine(.5);this._label(t,this.label,g.x,g.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&&(g=this._pointOnCircle(y,b,w,.5),this._label(t,this.label,g.x,g.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,g,m=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,g,p,u,o,n),m=m>d?d:m),f=p,g=u;return m}return this._getDistanceToLine(t,e,i,s,o,n)}var p,u,v,y,b=.25*this.physics.springLength,_=this.from;return _.width>_.height?(p=_.x+.5*_.width,u=_.y-b):(p=_.x+b,u=_.y-.5*_.height),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;)g(t),";"==L&&p()}function g(t){var e=m(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 m(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=m(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),g=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,g,p,g),this.bezierCurveTo(p-h,g,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){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 g(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 g(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,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",g=a.POINTER_PEN="pen",m=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[m]=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(g,s)&&(o=g),{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[g]=i===(e.MSPOINTER_TYPE_PEN||g),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,m,function(t){i.enabled&&t.eventType==m?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[m],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 m: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 m: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 m: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,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 g(t){var e,i={};for(e in t)t.hasOwnProperty(e)&&ke.hasOwnProperty(e)&&(i[e]=t[e]);return i}function m(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(59)("./"+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 Ze;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 Ze;case"SS":if(s)return qe;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?qe: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(q(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 Z(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 q(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"),Z(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=g(e),t._d=new Date(+e._d)):i?b(i)?$(t):Z(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:m(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=m(o/1e3),a.seconds=t%60,e=m(t/60),a.minutes=e%60,i=m(e/60),a.hours=i%24,n+=m(i/24),a.days=n%30,r+=m(n/30),a.months=r%12,s=m(r/12),a.years=s},weeks:function(){return m(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)&&(ge(be,ni[be]),fe(be.toLowerCase()));ge("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)),me(!0))}).call(this)}).call(e,function(){return this}(),i(63)(t))},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,e,i){function s(t){return i(o(t))}function o(t){return n[t]||function(){throw new Error("Cannot find module '"+t+"'.")}()}var n={};s.keys=function(){return Object.keys(n)},s.resolve=o,t.exports=s},function(t,e){e._calculateNodeForces=function(){var t,e,i,s,o,n,r,a,h,d,l,c=this.calculationNodes,p=this.calculationNodeIndices,u=-2/3,f=4/3,g=this.constants.physics.repulsion.nodeDistance,m=g;for(d=0;di&&(r=.5*m>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,g=.5*(o+r),m=.5*(n+a),v={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:g-f,maxX:g+f,minY:m-f,maxY:m+f},size:u,calcSize:1/u,children:{data:null},maxWidth:0,level:0,childrenCount:4}};for(this._splitBranch(v.root),h=0;s>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(v.root,i);this.barnesHutTree=v},e._updateBranchMass=function(t,e){var i=t.mass+e.options.mass,s=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=s,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=s,t.mass=i;var o=Math.max(Math.max(e.height,e.radius),e.width);t.maxWidth=t.maxWidthe.x?t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NW"):this._placeInRegion(t,e,"SW"):t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NE"):this._placeInRegion(t,e,"SE")},e._placeInRegion=function(t,e,i){switch(t.children[i].childrenCount){case 0:t.children[i].children.data=e,t.children[i].childrenCount=1,this._updateBranchMass(t.children[i],e);break;case 1:t.children[i].children.data.x==e.x&&t.children[i].children.data.y==e.y?(e.x+=Math.random(),e.y+=Math.random()):(this._splitBranch(t.children[i]),this._placeInTree(t.children[i],e));break;case 4:this._placeInTree(t.children[i],e)}},e._splitBranch=function(t){var e=null;1==t.childrenCount&&(e=t.children.data,t.mass=0,t.centerOfMass.x=0,t.centerOfMass.y=0),t.childrenCount=4,t.children.data=null,this._insertRegion(t,"NW"),this._insertRegion(t,"NE"),this._insertRegion(t,"SW"),this._insertRegion(t,"SE"),null!=e&&this._placeInTree(t,e)},e._insertRegion=function(t,e){var i,s,o,n,r=.5*t.size;switch(e){case"NW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY,n=t.range.minY+r;break;case"NE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY,n=t.range.minY+r;break;case"SW":i=t.range.minX,s=t.range.minX+r,o=t.range.minY+r,n=t.range.maxY;break;case"SE":i=t.range.minX+r,s=t.range.maxX,o=t.range.minY+r,n=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:s,minY:o,maxY:n},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}},e._drawTree=function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))},e._drawBranch=function(t,e,i){void 0===i&&(i="#FF0000"),4==t.childrenCount&&(this._drawBranch(t.children.NW,e),this._drawBranch(t.children.NE,e),this._drawBranch(t.children.SE,e),this._drawBranch(t.children.SW,e)),e.strokeStyle=i,e.beginPath(),e.moveTo(t.range.minX,t.range.minY),e.lineTo(t.range.maxX,t.range.minY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.minY),e.lineTo(t.range.maxX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.maxY),e.lineTo(t.range.minX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.minX,t.range.maxY),e.lineTo(t.range.minX,t.range.minY),e.stroke()}},function(t){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}}])}); +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(s){if(i[s])return i[s].exports;var o=i[s]={exports:{},id:s,loaded:!1};return t[s].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(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(49),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){if(!(this instanceof s))throw new SyntaxError("Constructor must be called with the new operator");var n=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:n._toScreen.bind(n),toGlobalScreen:n._toGlobalScreen.bind(n),toTime:n._toTime.bind(n),toGlobalTime:n._toGlobalTime.bind(n)}},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(49),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=new h,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,e){this.itemSet&&this.itemSet.setSelection(t),t&&e&&e.focus&&this.focus(t)},s.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},s.prototype.focus=function(t){if(this.itemsData){var e=this.itemsData.getDataSet().get(t,{type:{start:"Date",end:"Date"}});Array.isArray(e)||(e=[e]);var i=null,s=null;e.forEach(function(t){var e=t.start.valueOf(),o="end"in t?t.end.valueOf():t.start.valueOf();(null===i||i>e)&&(i=e),(null===s||o>s)&&(s=o)});var o=(i+s)/2,n=Math.max(this.range.end-this.range.start,1.1*(s-i));this.range.setRange(o-n/2,o+n/2)}},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,s){var n=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:n._toScreen.bind(n),toGlobalScreen:n._toGlobalScreen.bind(n),toTime:n._toTime.bind(n),toGlobalTime:n._toGlobalTime.bind(n)}},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),s&&this.setGroups(s),e?this.setItems(e):this.redraw()}var o=(i(49),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=new h,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="0",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,handleOverlap:"overlap",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){var d=this.body.util.toGlobalTime(-this.body.domProps.root.width),l=this.body.util.toGlobalTime(2*this.body.domProps.root.width),c={};for(this._getRelevantData(a,c,d,l),e=0;e0)for(r=0;rs){d.push(h);break}d.push(h)}}else for(a=0;ai&&h.x0)for(var s=0;s0){var n=1,r=o.length,a=this.body.util.toGlobalScreen(o[o.length-1].x)-this.body.util.toGlobalScreen(o[0].x),h=r/a;n=Math.min(Math.ceil(.2*r),Math.max(1,Math.round(h)));for(var d=[],l=0;r>l;l+=n)d.push(o[l]);e[t[s]]=d}}},s.prototype._getYRanges=function(t,e,i){var s,o,n,r,a,h=[],d=[];if(t.length>0){for(n=0;n0)if(o=this.groups[t[n]],"line"==o.options.style||"stack"!=o.options.barChart.handleOverlap){var l=s[0].y,c=s[0].y;for(r=0;rs[r].y?s[r].y:l,c=c0&&(h.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x}),p={},this._getDataIntersections(p,h),i.__barchartLeft=this._getStackedBarYRange(p,h),i.__barchartLeft.yAxisOrientation="left",t.push("__barchartLeft")),d.length>0&&(d.sort(function(t,e){return t.x==e.x?t.groupId-e.groupId:t.x-e.x}),p={},this._getDataIntersections(p,d),i.__barchartRight=this._getStackedBarYRange(p,d),i.__barchartRight.yAxisOrientation="right",t.push("__barchartRight"))}},s.prototype._getStackedBarYRange=function(t,e){for(var i,s=e[0].y,o=e[0].y,n=0;ne[n].y?e[n].y:s,o=ot[r].accumulated?t[r].accumulated:s,o=o0){for(var c=0;ci?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,-1!=t.indexOf("__barchartLeft")&&t.splice(t.indexOf("__barchartLeft"),1),-1!=t.indexOf("__barchartRight")&&t.splice(t.indexOf("__barchartRight"),1),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._drawBarGraphs=function(t,e){var i,s,o,r,a,h,d=[],l={},c=0;for(a=0;a0&&(i=Math.min(i,Math.abs(d[a-1].x-s))),o=this._getSafeDrawData(i,r,p);else{var f=a+(l[s].amount-l[s].resolved),m=a-(l[s].resolved+1);f0&&(i=Math.min(i,Math.abs(d[m].x-s))),o=this._getSafeDrawData(i,r,p),l[s].resolved+=1,"stack"==r.options.barChart.handleOverlap?(u=l[s].accumulated,l[s].accumulated+=r.zeroPosition-d[a].y):"sideBySide"==r.options.barChart.handleOverlap&&(o.width=o.width/l[s].amount,o.offset+=l[s].resolved*o.width-.5*o.width*(l[s].amount+1),"left"==r.options.barChart.align?o.offset-=.5*o.width:"right"==r.options.barChart.align&&(o.offset+=.5*o.width))}n.drawBar(d[a].x+o.offset,d[a].y-u,o.width,r.zeroPosition-d[a].y,r.className+" bar",this.svgElements,this.svg),1==r.options.drawPoints.enabled&&n.drawPoint(d[a].x+o.offset,d[a].y-u,r,this.svgElements,this.svg)}},s.prototype._getDataIntersections=function(t,e){for(var i,s=0;s0&&(i=Math.min(i,Math.abs(e[s-1].x-e[s].x))),0==i&&(void 0===t[e[s].x]&&(t[e[s].x]={amount:0,resolved:0,accumulated:0}),t[e[s].x].amount+=1)},s.prototype._getSafeDrawData=function(t,e,i){var s,o;return t0?(s=i>t?i:t,o=0,"left"==e.options.barChart.align?o-=.5*t:"right"==e.options.barChart.align&&(o+=.5*t)):(s=e.options.barChart.width,o=0,"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;rl;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:_,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(49),n=i(41),r=i(50),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(48),_=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","clickToUse"];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("clickToUse"in t&&(t.clickToUse?(this.activator=new b(this.frame),this.activator.on("change",this._createKeyBinds.bind(this))):this.activator&&(this.activator.destroy(),delete this.activator)),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="vis 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(),this.constants.keyboard.enabled&&this.isActive()&&(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,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=.25*this.physics.springLength,_=this.from;return _.width>_.height?(p=_.x+.5*_.width,u=_.y-b):(p=_.x+b,u=_.y-.5*_.height),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;" "==E.charAt(e)||" "==E.charAt(e);)e--;if("\n"==E.charAt(e)||""==E.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(D[i])return k=C.DELIMITER,L=i,o(),void o();if(D[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},D={"{":!0,"}":!0,"[":!0,"]":!0,";":!0,"=":!0,",":!0,"->":!0,"--":!0},E="",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){"top"==e.orientation?(r.addClassName(s.root,"top"),r.removeClassName(s.root,"bottom")):(r.removeClassName(s.root,"top"),r.addClassName(s.root,"bottom")),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(59),o=i(53),n=i(54),r=i(55),a=i(56),h=i(57),d=i(58);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.frame.appendChild(this.manipulationDiv)),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.frame.appendChild(this.editModeDiv)),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.frame.appendChild(this.closeDiv)),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,e,i){function s(t){this.active=!1,this.dom={container:t},this.dom.overlay=document.createElement("div"),this.dom.overlay.className="overlay",this.dom.container.appendChild(this.dom.overlay),this.hammer=a(this.dom.overlay,{prevent_default:!1}),this.hammer.on("tap",this._onTapOverlay.bind(this));var e=this,i=["touch","pinch","doubletap","hold","dragstart","drag","dragend","mousewheel","DOMMouseScroll"];i.forEach(function(t){e.hammer.on(t,function(t){t.stopPropagation()})}),this.windowHammer=a(window,{prevent_default:!1}),this.windowHammer.on("tap",function(i){o(i.target,t)||e.deactivate() +}),this.escListener=this.deactivate.bind(this)}function o(t,e){for(;t;){if(t===e)return!0;t=t.parentNode}return!1}var n=i(50),r=i(49),a=i(41),h=i(1);r(s.prototype),s.current=null,s.prototype.destroy=function(){this.deactivate(),this.dom.overlay.parentNode.removeChild(this.dom.overlay),this.hammer=null,this.windowHammer=null},s.prototype.activate=function(){s.current&&s.current.deactivate(),s.current=this,this.active=!0,this.dom.overlay.style.display="none",h.addClassName(this.dom.container,"vis-active"),this.emit("change"),this.emit("activate"),n.bind("esc",this.escListener)},s.prototype.deactivate=function(){this.active=!1,this.dom.overlay.style.display="",h.removeClassName(this.dom.container,"vis-active"),n.unbind("esc",this.escListener),this.emit("change"),this.emit("deactivate")},s.prototype._onTapOverlay=function(t){this.activate(),t.stopPropagation()},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){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 D)t[e]?i=!0:D[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){D[t]=0,o||(o=f(e[0],[]));var r,a=function(){T=o,++D[t],p()},d=function(t){h(s,t),"keyup"!==o&&(E=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={},D={},E=!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,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 E(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=E(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&&D(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=Ee(s.as("s")),n=Ee(s.as("m")),r=Ee(s.as("h")),a=Ee(s.as("d")),h=Ee(s.as("M")),d=Ee(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 E(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=E(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=Ee((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=E(t),this[t]()},set:function(t,e){return t=E(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=E(t),this[t.toLowerCase()+"s"]()},as:function(t){var e,i;if(t=E(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&&(De.moment=Se),we}.call(e,i,e,o),!(s!==n&&(o.exports=s)),xe(!0))}).call(this)}).call(e,function(){return this}(),i(64)(t))},function(t,e,i){var s;!function(o,n){"use strict";function r(){a.READY||(w.determineEventTypes(),x.each(a.gestures,function(t){M.register(t)}),w.onTouch(a.DOCUMENT,v,M.detect),w.onTouch(a.DOCUMENT,y,M.detect),a.READY=!0)}var a=function C(t,e){return new C.Instance(t,e||{})};a.VERSION="1.1.3",a.defaults={behavior:{userSelect:"none",touchAction:"pan-y",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},a.DOCUMENT=document,a.HAS_POINTEREVENTS=navigator.pointerEnabled||navigator.msPointerEnabled,a.HAS_TOUCHEVENTS="ontouchstart"in o,a.IS_MOBILE=/mobile|tablet|ip(ad|hone|od)|android|silk/i.test(navigator.userAgent),a.NO_MOUSEEVENTS=a.HAS_TOUCHEVENTS&&a.IS_MOBILE||a.HAS_POINTEREVENTS,a.CALCULATE_INTERVAL=25;var h={},d=a.DIRECTION_DOWN="down",l=a.DIRECTION_LEFT="left",c=a.DIRECTION_UP="up",p=a.DIRECTION_RIGHT="right",u=a.POINTER_MOUSE="mouse",f=a.POINTER_TOUCH="touch",m=a.POINTER_PEN="pen",g=a.EVENT_START="start",v=a.EVENT_MOVE="move",y=a.EVENT_END="end",b=a.EVENT_RELEASE="release",_=a.EVENT_TOUCH="touch";a.READY=!1,a.plugins=a.plugins||{},a.gestures=a.gestures||{};var x=a.utils={extend:function(t,e,i){for(var s in e)!e.hasOwnProperty(s)||t[s]!==n&&i||(t[s]=e[s]);return t},on:function(t,e,i){t.addEventListener(e,i,!1)},off:function(t,e,i){t.removeEventListener(e,i,!1)},each:function(t,e,i){var s,o;if("forEach"in t)t.forEach(e,i);else if(t.length!==n){for(s=0,o=t.length;o>s;s++)if(e.call(i,t[s],s,t)===!1)return}else for(s in t)if(t.hasOwnProperty(s)&&e.call(i,t[s],s,t)===!1)return},inStr:function(t,e){return t.indexOf(e)>-1},inArray:function(t,e){if(t.indexOf){var i=t.indexOf(e);return-1===i?!1:i}for(var s=0,o=t.length;o>s;s++)if(t[s]===e)return s;return!1},toArray:function(t){return Array.prototype.slice.call(t,0)},hasParent:function(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1},getCenter:function(t){var e=[],i=[],s=[],o=[],n=Math.min,r=Math.max;return 1===t.length?{pageX:t[0].pageX,pageY:t[0].pageY,clientX:t[0].clientX,clientY:t[0].clientY}:(x.each(t,function(t){e.push(t.pageX),i.push(t.pageY),s.push(t.clientX),o.push(t.clientY)}),{pageX:(n.apply(Math,e)+r.apply(Math,e))/2,pageY:(n.apply(Math,i)+r.apply(Math,i))/2,clientX:(n.apply(Math,s)+r.apply(Math,s))/2,clientY:(n.apply(Math,o)+r.apply(Math,o))/2})},getVelocity:function(t,e,i){return{x:Math.abs(e/t)||0,y:Math.abs(i/t)||0}},getAngle:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return 180*Math.atan2(s,i)/Math.PI},getDirection:function(t,e){var i=Math.abs(t.clientX-e.clientX),s=Math.abs(t.clientY-e.clientY);return i>=s?t.clientX-e.clientX>0?l:p:t.clientY-e.clientY>0?c:d},getDistance:function(t,e){var i=e.clientX-t.clientX,s=e.clientY-t.clientY;return Math.sqrt(i*i+s*s)},getScale:function(t,e){return t.length>=2&&e.length>=2?this.getDistance(e[0],e[1])/this.getDistance(t[0],t[1]):1},getRotation:function(t,e){return t.length>=2&&e.length>=2?this.getAngle(e[1],e[0])-this.getAngle(t[1],t[0]):0},isVertical:function(t){return t==c||t==d},setPrefixedCss:function(t,e,i,s){var o=["","Webkit","Moz","O","ms"];e=x.toCamelCase(e);for(var n=0;n0&&this.started&&(r=v),this.started=!0;var d=this.collectEventData(i,r,o,t);return e!=y&&s.call(M,d),a&&(d.changedLength=h,d.eventType=a,s.call(M,d),d.eventType=r,delete d.changedLength),r==y&&(s.call(M,d),this.started=!1),r},determineEventTypes:function(){var t;return t=a.HAS_POINTEREVENTS?o.PointerEvent?["pointerdown","pointermove","pointerup pointercancel lostpointercapture"]:["MSPointerDown","MSPointerMove","MSPointerUp MSPointerCancel MSLostPointerCapture"]:a.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],h[g]=t[0],h[v]=t[1],h[y]=t[2],h},getTouchList:function(t,e){if(a.HAS_POINTEREVENTS)return S.getTouchList();if(t.touches){if(e==v)return t.touches;var i=[],s=[].concat(x.toArray(t.touches),x.toArray(t.changedTouches)),o=[];return x.each(s,function(t){x.inArray(i,t.identifier)===!1&&o.push(t),i.push(t.identifier)}),o}return t.identifier=1,[t]},collectEventData:function(t,e,i,s){var o=f;return x.inStr(s.type,"mouse")||S.matchType(u,s)?o=u:S.matchType(m,s)&&(o=m),{center:x.getCenter(i),timeStamp:Date.now(),target:s.target,touches:i,eventType:e,pointerType:o,srcEvent:s,preventDefault:function(){var t=this.srcEvent;t.preventManipulation&&t.preventManipulation(),t.preventDefault&&t.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return M.stopDetect()}}}},S=a.PointerEvent={pointers:{},getTouchList:function(){var t=[];return x.each(this.pointers,function(e){t.push(e)}),t},updatePointer:function(t,e){t==y||t!=y&&1!==e.buttons?delete this.pointers[e.pointerId]:(e.identifier=e.pointerId,this.pointers[e.pointerId]=e)},matchType:function(t,e){if(!e.pointerType)return!1;var i=e.pointerType,s={};return s[u]=i===(e.MSPOINTER_TYPE_MOUSE||u),s[f]=i===(e.MSPOINTER_TYPE_TOUCH||f),s[m]=i===(e.MSPOINTER_TYPE_PEN||m),s[t]},reset:function(){this.pointers={}}},M=a.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(t,e){this.current||(this.stopped=!1,this.current={inst:t,startEvent:x.extend({},e),lastEvent:!1,lastCalcEvent:!1,futureCalcEvent:!1,lastCalcData:{},name:""},this.detect(e))},detect:function(t){if(this.current&&!this.stopped){t=this.extendEventData(t);var e=this.current.inst,i=e.options;return x.each(this.gestures,function(s){!this.stopped&&e.enabled&&i[s.name]&&s.handler.call(s,t,e)},this),this.current&&(this.current.lastEvent=t),t.eventType==y&&this.stopDetect(),t}},stopDetect:function(){this.previous=x.extend({},this.current),this.current=null,this.stopped=!0},getCalculatedData:function(t,e,i,s,o){var n=this.current,r=!1,h=n.lastCalcEvent,d=n.lastCalcData;h&&t.timeStamp-h.timeStamp>a.CALCULATE_INTERVAL&&(e=h.center,i=t.timeStamp-h.timeStamp,s=t.center.clientX-h.center.clientX,o=t.center.clientY-h.center.clientY,r=!0),(t.eventType==_||t.eventType==b)&&(n.futureCalcEvent=t),(!n.lastCalcEvent||r)&&(d.velocity=x.getVelocity(i,s,o),d.angle=x.getAngle(e,t.center),d.direction=x.getDirection(e,t.center),n.lastCalcEvent=n.futureCalcEvent||t,n.futureCalcEvent=t),t.velocityX=d.velocity.x,t.velocityY=d.velocity.y,t.interimAngle=d.angle,t.interimDirection=d.direction},extendEventData:function(t){var e=this.current,i=e.startEvent,s=e.lastEvent||i;(t.eventType==_||t.eventType==b)&&(i.touches=[],x.each(t.touches,function(t){i.touches.push({clientX:t.clientX,clientY:t.clientY})}));var o=t.timeStamp-i.timeStamp,n=t.center.clientX-i.center.clientX,r=t.center.clientY-i.center.clientY;return this.getCalculatedData(t,s.center,o,n,r),x.extend(t,{startEvent:i,deltaTime:o,deltaX:n,deltaY:r,distance:x.getDistance(i.center,t.center),angle:x.getAngle(i.center,t.center),direction:x.getDirection(i.center,t.center),scale:x.getScale(i.touches,t.touches),rotation:x.getRotation(i.touches,t.touches)}),t},register:function(t){var e=t.defaults||{};return e[t.name]===n&&(e[t.name]=!0),x.extend(a.defaults,e,!0),t.index=t.index||1e3,this.gestures.push(t),this.gestures.sort(function(t,e){return t.indexe.index?1:0}),this.gestures}};a.Instance=function(t,e){var i=this;r(),this.element=t,this.enabled=!0,x.each(e,function(t,i){delete e[i],e[x.toCamelCase(i)]=t}),this.options=x.extend(x.extend({},a.defaults),e||{}),this.options.behavior&&x.toggleBehavior(this.element,this.options.behavior,!0),this.eventStartHandler=w.onTouch(t,g,function(t){i.enabled&&t.eventType==g?M.startDetect(i,t):t.eventType==_&&M.detect(t)}),this.eventHandlers=[]},a.Instance.prototype={on:function(t,e){var i=this;return w.on(i.element,t,e,function(t){i.eventHandlers.push({gesture:t,handler:e})}),i},off:function(t,e){var i=this;return w.off(i.element,t,e,function(t){var s=x.inArray({gesture:t,handler:e});s!==!1&&i.eventHandlers.splice(s,1)}),i},trigger:function(t,e){e||(e={});var i=a.DOCUMENT.createEvent("Event");i.initEvent(t,!0,!0),i.gesture=e;var s=this.element;return x.hasParent(e.target,s)&&(s=e.target),s.dispatchEvent(i),this},enable:function(t){return this.enabled=t,this},dispose:function(){var t,e;for(x.toggleBehavior(this.element,this.options.behavior,!1),t=-1;e=this.eventHandlers[++t];)x.off(this.element,e.gesture,e.handler);return this.eventHandlers=[],w.off(this.element,h[g],this.eventStartHandler),null}},function(t){function e(e,s){var o=M.current;if(!(s.options.dragMaxTouches>0&&e.touches.length>s.options.dragMaxTouches))switch(e.eventType){case g:i=!1;break;case v:if(e.distance0)){var r=Math.abs(s.options.dragMinDistance/e.distance);n.pageX+=e.deltaX*r,n.pageY+=e.deltaY*r,n.clientX+=e.deltaX*r,n.clientY+=e.deltaY*r,e=M.extendEventData(e)}(o.lastEvent.dragLockToAxis||s.options.dragLockToAxis&&s.options.dragLockMinDistance<=e.distance)&&(e.dragLockToAxis=!0);var a=o.lastEvent.direction;e.dragLockToAxis&&a!==e.direction&&(e.direction=x.isVertical(a)?e.deltaY<0?c:d:e.deltaX<0?l:p),i||(s.trigger(t+"start",e),i=!0),s.trigger(t,e),s.trigger(t+e.direction,e);var h=x.isVertical(e.direction);(s.options.dragBlockVertical&&h||s.options.dragBlockHorizontal&&!h)&&e.preventDefault();break;case b:i&&e.changedLength<=s.options.dragMaxTouches&&(s.trigger(t+"end",e),i=!1);break;case y:i=!1}}var i=!1;a.gestures.Drag={name:t,index:50,handler:e,defaults:{dragMinDistance:10,dragDistanceCorrection:!0,dragMaxTouches:1,dragBlockHorizontal:!1,dragBlockVertical:!1,dragLockToAxis:!1,dragLockMinDistance:25}}}("drag"),a.gestures.Gesture={name:"gesture",index:1337,handler:function(t,e){e.trigger(this.name,t)}},function(t){function e(e,s){var o=s.options,n=M.current;switch(e.eventType){case g:clearTimeout(i),n.name=t,i=setTimeout(function(){n&&n.name==t&&s.trigger(t,e)},o.holdTimeout);break;case v:e.distance>o.holdThreshold&&clearTimeout(i);break;case b:clearTimeout(i)}}var i;a.gestures.Hold={name:t,index:10,defaults:{holdTimeout:500,holdThreshold:2},handler:e}}("hold"),a.gestures.Release={name:"release",index:1/0,handler:function(t,e){t.eventType==b&&e.trigger(this.name,t)}},a.gestures.Swipe={name:"swipe",index:40,defaults:{swipeMinTouches:1,swipeMaxTouches:1,swipeVelocityX:.6,swipeVelocityY:.6},handler:function(t,e){if(t.eventType==b){var i=t.touches.length,s=e.options;if(is.swipeMaxTouches)return;(t.velocityX>s.swipeVelocityX||t.velocityY>s.swipeVelocityY)&&(e.trigger(this.name,t),e.trigger(this.name+t.direction,t))}}},function(t){function e(e,s){var o,n,r=s.options,a=M.current,h=M.previous;switch(e.eventType){case g:i=!1;break;case v:i=i||e.distance>r.tapMaxDistance;break;case y:!x.inStr(e.srcEvent.type,"cancel")&&e.deltaTimes.options.transformMinRotation&&s.trigger("rotate",e),o>s.options.transformMinScale&&(s.trigger("pinch",e),s.trigger("pinch"+(e.scale<1?"in":"out"),e));break;case b:i&&e.changedLength<2&&(s.trigger(t+"end",e),i=!1)}}var i=!1;a.gestures.Transform={name:t,index:45,defaults:{transformMinScale:.01,transformMinRotation:1},handler:e}}("transform"),s=function(){return a}.call(e,i,e,t),!(s!==n&&(t.exports=s))}(window)},function(t,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.addNode+"
"+t.addEdge+"",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.edgeDescription+"";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),i(41));e._cleanNavigation=function(){var t=document.getElementById("network-navigation_wrapper");t&&t.parentNode&&t.parentNode.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.frame.appendChild(this.navigationDivs.wrapper);for(var i=this,o=0;o0){"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 diff --git a/docs/timeline.html b/docs/timeline.html index 30d8d22b..aa0b89f3 100644 --- a/docs/timeline.html +++ b/docs/timeline.html @@ -739,7 +739,14 @@ timeline.clear({options: true}); // clear options only fit() none - Adjust the visible window such that it fits all items. + Adjust the visible window such that it fits all items. See also function focus(id). + + + + + focus(id | ids) + none + Adjust the visible window such that the selected item (or multiple items) are centered on screen. See also function fit(). @@ -822,9 +829,12 @@ timeline.clear({options: true}); // clear options only - setSelection([ids]) + setSelection([ids [, options]]) none - Select one or multiple items by their id. The currently selected items will be unselected. To unselect all selected items, call `setSelection([])`. + Select one or multiple items by their id. The currently selected items will be unselected. To unselect all selected items, call `setSelection([])`. Available options: +
    +
  • focus: boolean. If true, focus will be set to the selected item(s)
  • +
diff --git a/lib/timeline/Timeline.js b/lib/timeline/Timeline.js index 1d33031b..426320c0 100644 --- a/lib/timeline/Timeline.js +++ b/lib/timeline/Timeline.js @@ -171,9 +171,18 @@ Timeline.prototype.setGroups = function(groups) { * @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. + * @param {Object} [options] Available options: + * `focus: boolean` If true, focus will be set + * to the selected item(s) */ -Timeline.prototype.setSelection = function(ids) { +Timeline.prototype.setSelection = function(ids, options) { this.itemSet && this.itemSet.setSelection(ids); + + if (ids && options) { + if (options.focus) { + this.focus(ids); + } + } }; /** @@ -184,6 +193,49 @@ Timeline.prototype.getSelection = function() { return this.itemSet && this.itemSet.getSelection() || []; }; +/** + * Adjust the visible window such that the selected item (or multiple items) + * are centered on screen. + * @param {String | String[]} id An item id or array with item ids + */ +Timeline.prototype.focus = function(id) { + if (!this.itemsData) return; + + // get the specified item(s) + var itemsData = this.itemsData.getDataSet().get(id, { + type: { + start: 'Date', + end: 'Date' + } + }); + + // turn into an array in case of a single item + if (!Array.isArray(itemsData)) { + itemsData = [itemsData]; + } + + // calculate minimum start and maximum end of specified items + var start = null; + var end = null; + itemsData.forEach(function (itemData) { + var s = itemData.start.valueOf(); + var e = 'end' in itemData ? itemData.end.valueOf() :itemData.start.valueOf(); + + if (start === null || s < start) { + start = s; + } + + if (end === null || e > end) { + end = e; + } + }); + + // calculate the new middle and interval for the window + var middle = (start + end) / 2; + var interval = Math.max((this.range.end - this.range.start), (end - start) * 1.1); + + this.range.setRange(middle - interval / 2, middle + interval / 2); +}; /** * Get the data range of the item set. diff --git a/test/timeline.html b/test/timeline.html index b4f3d9d2..7f35e8d4 100644 --- a/test/timeline.html +++ b/test/timeline.html @@ -3,7 +3,7 @@ - + @@ -93,11 +93,11 @@ //height: 200, showCurrentTime: true, showCustomTime: true, + //clickToUse: true, //min: moment('2013-01-01'), //max: moment('2013-12-31'), //zoomMin: 1000 * 60 * 60 * 24, // 1 day - zoomMax: 1000 * 60 * 60 * 24 * 30 * 6, // 6 months - clickToUse: true + zoomMax: 1000 * 60 * 60 * 24 * 30 * 6 // 6 months }; console.timeEnd('create dataset'); diff --git a/test/timeline_groups.html b/test/timeline_groups.html index aae53b62..edd98eb0 100644 --- a/test/timeline_groups.html +++ b/test/timeline_groups.html @@ -16,7 +16,7 @@ - +